Index: lams_common/build.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_common/build.xml,v
diff -u -r1.53 -r1.54
--- lams_common/build.xml 16 Oct 2006 07:26:35 -0000 1.53
+++ lams_common/build.xml 17 Oct 2006 07:08:10 -0000 1.54
@@ -391,6 +391,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: lams_common/conf/hibernate/mappings/org/lamsfoundation/lams/config/ConfigurationItem.hbm.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_common/conf/hibernate/mappings/org/lamsfoundation/lams/config/Attic/ConfigurationItem.hbm.xml,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ lams_common/conf/hibernate/mappings/org/lamsfoundation/lams/config/ConfigurationItem.hbm.xml 17 Oct 2006 07:08:09 -0000 1.1
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: lams_common/src/java/org/lamsfoundation/lams/commonContext.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_common/src/java/org/lamsfoundation/lams/commonContext.xml,v
diff -u -r1.46 -r1.47
--- lams_common/src/java/org/lamsfoundation/lams/commonContext.xml 4 Oct 2006 07:56:51 -0000 1.46
+++ lams_common/src/java/org/lamsfoundation/lams/commonContext.xml 17 Oct 2006 07:08:09 -0000 1.47
@@ -75,6 +75,9 @@
org/lamsfoundation/lams/notebook/model/NotebookEntry.hbm.xml
+
+ org/lamsfoundation/lams/config/ConfigurationItem.hbm.xml
+
org/lamsfoundation/lams/integration/ExtServerOrgMap.hbm.xml
org/lamsfoundation/lams/integration/ExtCourseClassMap.hbm.xml
@@ -231,6 +234,11 @@
+
+
+
+
+
@@ -275,6 +283,11 @@
+
+
+
+
+
0) {
+ Iterator it = mapitems.iterator();
+ while(it.hasNext()) {
+ ConfigurationItem item = (ConfigurationItem) it.next();
+ itemsmap.put(item.getKey(), item.getValue());
+ }
+
+ }
+
+ } catch (Exception e) {
+ log.error("Exception has occurred: ",e);
+ }
+
+ items = itemsmap;
+
+ }
+
public static String get(String key)
{
if ((items != null)&&(items.get(key)!=null))