Index: lams_common/build.xml =================================================================== diff -u -r71d1ff69d56ec38b525fab3a282fa29c1d163e5a -re136309c831c4509819e7651ce2f565747bccb57 --- lams_common/build.xml (.../build.xml) (revision 71d1ff69d56ec38b525fab3a282fa29c1d163e5a) +++ lams_common/build.xml (.../build.xml) (revision e136309c831c4509819e7651ce2f565747bccb57) @@ -391,6 +391,22 @@ + + + + + + + + + + + + + + + + Index: lams_common/conf/hibernate/mappings/org/lamsfoundation/lams/config/ConfigurationItem.hbm.xml =================================================================== diff -u --- lams_common/conf/hibernate/mappings/org/lamsfoundation/lams/config/ConfigurationItem.hbm.xml (revision 0) +++ lams_common/conf/hibernate/mappings/org/lamsfoundation/lams/config/ConfigurationItem.hbm.xml (revision e136309c831c4509819e7651ce2f565747bccb57) @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + Index: lams_common/src/java/org/lamsfoundation/lams/commonContext.xml =================================================================== diff -u -r38a6c414e30497d03559a85b5c33155e4a2fc22e -re136309c831c4509819e7651ce2f565747bccb57 --- lams_common/src/java/org/lamsfoundation/lams/commonContext.xml (.../commonContext.xml) (revision 38a6c414e30497d03559a85b5c33155e4a2fc22e) +++ lams_common/src/java/org/lamsfoundation/lams/commonContext.xml (.../commonContext.xml) (revision e136309c831c4509819e7651ce2f565747bccb57) @@ -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))