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

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


   */
  public boolean doesUserHaveMyLeadAccount(String uid) throws MyLeadException {
    logger.entering(new Object[] { uid });
    try {
      AgentPortType stub = this.createStub(uid);
      AccountExistenceRequestDocument reqDoc = AccountExistenceRequestDocument.Factory
          .newInstance();
      VoidRequestType req = reqDoc.addNewAccountExistenceRequest();
      BooleanResponseDocument responce = stub.doesAccountExist(reqDoc);
      if (null == responce || null == responce.getBooleanResponse()) {
        throw new MyLeadException("Invalid responce returned");
      }

View Full Code Here

TOP

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

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.