Changeset 25974
- Timestamp:
- 2012-07-19T14:17:50+12:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/trunk/greenstone3/src/java/org/greenstone/gsdl3/collection/Collection.java
r25751 r25974 73 73 74 74 protected HashMap<String, ArrayList<Element>> _documentSets = new HashMap<String, ArrayList<Element>>(); 75 76 75 protected ArrayList<HashMap<String, ArrayList<String>>> _securityExceptions = new ArrayList<HashMap<String, ArrayList<String>>>(); 77 76 … … 94 93 super(); 95 94 this.description = this.doc.createElement(GSXML.COLLECTION_ELEM); 96 97 95 } 98 96 … … 109 107 public boolean configure() 110 108 { 111 112 109 if (this.site_home == null || this.cluster_name == null) 113 110 { … … 140 137 db_type = "gdbm"; //Default database type 141 138 } 139 140 _globalFormat = (Element) GSXML.getChildByTagName(coll_config_xml, GSXML.FORMAT_ELEM); 142 141 143 142 // process the metadata and display items … … 296 295 } 297 296 return true; 298 299 297 } 300 298
Note:
See TracChangeset
for help on using the changeset viewer.