57585960616263
* nitro_service class constructor specifying ip. * @param ip Ipadress of the netscaler on which configuration is to be run. */ public nitro_service(String ip) throws nitro_exception { this(ip, new Json(),"http"); }
67686970717273
* @param ip Ipadress of the netscaler 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); }
96979899100101102
this.ipaddress = ip; this.version = "v1"; this.protocol = protocol; this.format = format; if(this.format == null) this.format = (ipayload_formatter) new Json(); }
60616263646566
70717273747576
99100101102103104105