Package com.citrix.netscaler.nitro.resource.base

Examples of com.citrix.netscaler.nitro.resource.base.loginchallengeresponse


  * @throws nitro_exception nitro exception is thrown.
  * </pre>
  */
  public base_response loginchallengeresponse(String response) throws Exception
  {
    loginchallengeresponse logincr = new loginchallengeresponse(response);
    base_response result = logincr.perform_operation(this);
    if (result.errorcode == 0)
      this.sessionid = result.sessionid;
    return result;
  }
View Full Code Here


  * @throws nitro_exception nitro exception is thrown.
  * </pre>
  */
  public base_response loginchallengeresponse(String response) throws Exception
  {
    loginchallengeresponse logincr = new loginchallengeresponse(response);
    base_response result = logincr.perform_operation(this);
    if (result.errorcode == 0)
      this.sessionid = result.sessionid;
    return result;
  }
View Full Code Here

TOP

Related Classes of com.citrix.netscaler.nitro.resource.base.loginchallengeresponse

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.