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

Examples of com.citrix.netscaler.nitro.resource.base.login.perform_operation()


  * </pre>
  */
  public base_response login() throws Exception
  {
    login login = new login(this.user_name, this.password, this.timeout);
    base_response result = login.perform_operation(this);
    if (result.errorcode == 0 || result.errorcode == 1034)
      this.sessionid = result.sessionid;

    return result;
  }
View Full Code Here


  * </pre>
  */
  public base_response login() throws Exception
  {
    login login = new login(this.user_name, this.password, this.timeout);
    base_response result = login.perform_operation(this);
    if (result.errorcode == 0 || result.errorcode == 1034)
      this.sessionid = result.sessionid;

    return result;
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.