44454647484950
* nitro_service class constructor specifying ip. * @param ip IPAddress of the NetScaler SDX on which configuration is to be run. */ public nitro_service(String ip) throws nitro_exception { this(ip, new Json(), "http"); }
54555657585960
* @param ip IPaddress of the NetScaler SDX on which configuration is to be run. * @param protocol Protocol. */ public nitro_service(String ip, String protocol) throws nitro_exception { this(ip, new Json(), protocol); }
81828384858687
this.ipaddress = ip; this.version = "v1"; this.format = format; if(this.format == null) this.format = (ipayload_formatter) new Json(); }