Ignore:
Timestamp:
2004-05-11T14:34:30+12:00 (20 years ago)
Author:
kjdon
Message:

capitalised a few remaining field names that were lower case

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/gs3build/metadata/METSNamespace.java

    r6103 r7306  
    132132
    133133    if (this.location != null) {
    134       action.addValue("fileLoc", this.location.getLocation().toString());
    135       action.addValue("fileType", "URL");
     134      action.addValue("FileLoc", this.location.getLocation().toString());
     135      action.addValue("FileType", "URL");
    136136    }
    137137    else {
     
    176176      String name = resultSet.getString("NamespaceType");
    177177      String id = resultSet.getString("NamespaceRef");
    178       String location = resultSet.getString("fileLoc");
    179       String type = resultSet.getString("fileType");
     178      String location = resultSet.getString("FileLoc");
     179      String type = resultSet.getString("FileType");
    180180      if (location != null && type != null) {
    181181    metsLocation = new METSLocation(type, location);
     
    198198      if (valuesSet != null && valuesSet.first()) {
    199199    do {
    200       String label = valuesSet.getString("label");
    201       String value = valuesSet.getString("value");
     200      String label = valuesSet.getString("Label");
     201      String value = valuesSet.getString("Value");
    202202
    203203      namespace.addMetadata(label, value);
Note: See TracChangeset for help on using the changeset viewer.