Package com.citrix.netscaler.nitro.resource.config.ha

Examples of com.citrix.netscaler.nitro.resource.config.ha.hasync


  * @return status of the operation performed.
  * </pre>
  */
  public base_response forcehasync(Boolean force, String save) throws Exception
  {
    hasync resource = new hasync();
    resource.set_force(force) ;
    resource.set_save(save);
    options option = new options();
    option.set_action("force");
    base_response result = resource.perform_operation(this,option);
    return result;
  }
View Full Code Here


  * @return status of the operation performed.
  * </pre>
  */
  public base_response forcehasync(Boolean force, String save) throws Exception
  {
    hasync resource = new hasync();
    resource.set_force(force) ;
    resource.set_save(save);
    options option = new options();
    option.set_action("force");
    base_response result = resource.perform_operation(this,option);
    return result;
  }
View Full Code Here

TOP

Related Classes of com.citrix.netscaler.nitro.resource.config.ha.hasync

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.