Package com.foxconn.gds.security.external.portalclient

Examples of com.foxconn.gds.security.external.portalclient.SSOAccountServiceStub$UpdateSSOWebPawResponse$Factory


  }
 
  public String checkTicketStatus(String ticket, String accountId) throws RemoteException {
    String result = "-1";
    String endpoint = SystemParam.getInstance().getProperty("external.portal.endpoint");
    SSOAccountServiceStub client = new SSOAccountServiceStub(endpoint);
    SSOAccountServiceStub.FindportalSecurity request = new SSOAccountServiceStub.FindportalSecurity();
    request.setIn0(SystemParam.getInstance().getProperty("external.portal.sid"));
    request.setIn1(SystemParam.getInstance().getProperty("external.portal.pwd"));
    request.setIn2(SystemParam.getInstance().getProperty("external.portal.code"));
    request.setIn3(ticket);
    request.setIn4(SystemParam.getInstance().getProperty("external.portal.name"));
    request.setIn5(accountId);
   
    SSOAccountServiceStub.FindportalSecurityResponse response = client.findportalSecurity(request);
    result = response.getOut();
    return result;

  }
View Full Code Here

TOP

Related Classes of com.foxconn.gds.security.external.portalclient.SSOAccountServiceStub$UpdateSSOWebPawResponse$Factory

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.