Package org.fao.oaipmh.responses

Examples of org.fao.oaipmh.responses.Header.addSet()


        h.setIdentifier(uuid);
        h.setDateStamp(new ISODate(changeDate));

        for (MetadataCategory metadataCategory : metadata.getCategories()) {
            h.addSet(metadataCategory.getName());
        }

        //--- build and return record

        Record r = new Record();
View Full Code Here


    //--- find and add categories (here called sets)

    for (MetadataCategory category : metadata.getCategories())
    {
      h.addSet(category.getName());
    }

    return h;
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.