Package edu.indiana.dde.metadata.catalog.domain

Examples of edu.indiana.dde.metadata.catalog.domain.ObjectResponseType


      QueryResponseSetType response = queryById(uid, inputMsg);

      List<ObjectResponseType> objectResponseList = response
          .getObjectResponseList();
      if (objectResponseList.size() > 0) {
        ObjectResponseType collection = objectResponseList.get(0);
        LEADresourceDocument leadDoc = LEADresourceDocument.Factory
            .newInstance();
        LEADResourceType leadResource = collection.getLEADresource();
        leadDoc.setLEADresource(leadResource);
        return leadDoc;
      } else {
        throw new MyLeadException("Collection not found for id :"
            + collectionID);
View Full Code Here

TOP

Related Classes of edu.indiana.dde.metadata.catalog.domain.ObjectResponseType

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.