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

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


      boolean assignNewResourceID) throws MyLeadException {
    logger.entering(new Object[] { uid, leadResourceType, parentResourceID,
        assignNewResourceID });
    try {

      CreateCollectionsRequestDocument inputMsg = CreateCollectionsRequestDocument.Factory
          .newInstance();
      CreateCollectionsRequestType params = inputMsg
          .addNewCreateCollectionsRequest();

      AgentPortType stub = this.createStub(uid);
      CollectionType collectionType = params.addNewCollectionInfo();
View Full Code Here


            // Create a "Workflow Templates" collection for this project
            MinimalLEADMetadata collMetadata = new MinimalLEADMetadata(userID, WORKFLOW_TEMPLATES_COLLECTION,
                    "Workflow templates for project " + projectId);
            collMetadata.setResourceId("Unknown");
           
          CreateCollectionsRequestDocument createColl = CreateCollectionsRequestDocument.Factory.newInstance();
            CreateCollectionsRequestType collParams = createColl.addNewCreateCollectionsRequest();
            
            LEADresourceDocument workflowCollResourceDoc = LEADresourceDocument.Factory.parse(collMetadata.toString());
            LEADResourceType workflowCollResourceType = workflowCollResourceDoc.getLEADresource();
            
            CollectionType collectionType = collParams.addNewCollectionInfo();
View Full Code Here

TOP

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

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.