Package buri.ddmsence.ddms.metacard

Examples of buri.ddmsence.ddms.metacard.MetacardInfo


        components.add(new Publisher(entity, null, buildSecurityAttributes("publisher")));

        // Skip all optional fields in the metacard (other producers, description, processingInfo,
        // revisionRecall, recordsManagementInfo, and noticeList.

        return (new MetacardInfo(components, buildSecurityAttributes("subject")));
      }
    });
    CONSTRUCTOR_BUILDERS.put(Identifier.class, new IConstructorBuilder() {
      public IDDMSComponent build() throws IOException, InvalidDDMSException {
        String qualifier = readString("the qualifier [testQualifier]");
View Full Code Here


      DDMSVersion version = getDDMSVersion();

      // Metacard Set
      Element component = getChild(MetacardInfo.getName(version));
      if (component != null) {
        _metacardInfo = new MetacardInfo(component);
      }
      // Resource Set
      Elements components = element.getChildElements(Identifier.getName(version), namespace);
      for (int i = 0; i < components.size(); i++)
        _identifiers.add(new Identifier(components.get(i)));
View Full Code Here

TOP

Related Classes of buri.ddmsence.ddms.metacard.MetacardInfo

Copyright © 2018 www.massapicom. 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.