Package edu.indiana.dde.mylead.agent.xmlbeans

Examples of edu.indiana.dde.mylead.agent.xmlbeans.TopLevelObjectType


      CreateProjectsRequestDocument inputMsg = CreateProjectsRequestDocument.Factory
          .newInstance();
      CreateTopLevelObjectsRequestType params = inputMsg
          .addNewCreateProjectsRequest();
      AgentPortType stub = this.createStub(uid);
      TopLevelObjectType topLevelObjectType = params.addNewObjectInfo();
      topLevelObjectType.setAssignNewResourceID(assignNewResourceID);
      LEADresourceDocument leadResourceDoc = LEADresourceDocument.Factory
          .parse(leadResource);
      LEADResourceType leadResourceType = leadResourceDoc
          .getLEADresource();
      topLevelObjectType.setLEADresource(leadResourceType);
      OperationResponseDocument outputMsg = stub.createProjects(inputMsg);
      OperationResponseType outputType = outputMsg.getOperationResponse();
      StatusEnumType.Enum statusType = outputType.getStatus();
      String[] resourceIDs = outputType.getResourceIDArray();
      if (!statusType.equals(StatusEnumType.SUCCESS)) {
View Full Code Here

TOP

Related Classes of edu.indiana.dde.mylead.agent.xmlbeans.TopLevelObjectType

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.