Ignore:
Timestamp:
2009-01-12T11:18:22+13:00 (15 years ago)
Author:
kjdon
Message:

updated the rtl-gli branch with files from trunk. Result of a merge 14807:18318

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gli/branches/rtl-gli/src/org/greenstone/gatherer/collection/BasicCollectionConfiguration.java

    r14049 r18358  
    5656    private String name = "";
    5757    private String is_public = "";
     58    private String collectgroup = "false";
    5859   
    5960    private String site = null; // used for gs3 colls
     
    9596            else if(command_type_str.equals(StaticStrings.COLLECTIONMETADATA_MAINTAINER_STR)) {
    9697                maintainer = tokenizer.nextToken();
     98            }
     99            else if(command_type_str.equals(StaticStrings.COLLECTIONMETADATA_COLLECTGROUP_STR)) {
     100                collectgroup = tokenizer.nextToken();
    97101            }
    98102            else if(command_type_str.equalsIgnoreCase(StaticStrings.COLLECTIONMETADATA_STR)) {
     
    228232    return is_public;
    229233    }
     234
     235    public String getCollectGroup() {
     236    return collectgroup;
     237    }
    230238   
    231239    /** Retrieve the short name for this collection which, given this current file is in <col_name>/etc/collect.cfg, is the name of this file's parent file's parent.
Note: See TracChangeset for help on using the changeset viewer.