com.citrix.netscaler.nitro.resource.config.ssl.sslvserver_args Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nitro Show documentation
Show all versions of nitro Show documentation
The Citrix® NetScaler® NITRO client for Java allows you to configure and monitor the NetScaler appliance programmatically in Java based applications. Source code taken from Build 121 of NetScaler release 10.1
The newest version!
/*
* Copyright (c) 2008-2015 Citrix Systems, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.citrix.netscaler.nitro.resource.config.ssl;
/**
* Provides additional arguments required for fetching the sslvserver resource.
*/
public class sslvserver_args
{
private Boolean cipherdetails;
/**
*
* Display details of the individual ciphers bound to the SSL virtual server.
*
*/
public void set_cipherdetails(boolean cipherdetails) throws Exception {
this.cipherdetails = new Boolean(cipherdetails);
}
/**
*
* Display details of the individual ciphers bound to the SSL virtual server.
*
*/
public void set_cipherdetails(Boolean cipherdetails) throws Exception{
this.cipherdetails = cipherdetails;
}
/**
*
* Display details of the individual ciphers bound to the SSL virtual server.
*
*/
public Boolean get_cipherdetails() throws Exception {
return this.cipherdetails;
}
}