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

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


   * @throws MyLeadException
   */
  public String createProject(String uid, String leadResource,
      boolean assignNewResourceID) throws MyLeadException {
    try {
      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
View Full Code Here

TOP

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

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.