All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.citrix.netscaler.nitro.resource.config.basic.service_args Maven / Gradle / Ivy

Go to download

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.basic;

/**
	* Provides additional arguments required for fetching the service resource.
	*/

public class service_args 
{
	private Boolean all;
	private Boolean Internal;

	/**
	* 
	* Display both user-configured and dynamically learned services.
	* 
*/ public void set_all(boolean all) throws Exception { this.all = new Boolean(all); } /** *
	* Display both user-configured and dynamically learned services.
	* 
*/ public void set_all(Boolean all) throws Exception{ this.all = all; } /** *
	* Display both user-configured and dynamically learned services.
	* 
*/ public Boolean get_all() throws Exception { return this.all; } /** *
	* Display only dynamically learned services.
	* 
*/ public void set_Internal(boolean Internal) throws Exception { this.Internal = new Boolean(Internal); } /** *
	* Display only dynamically learned services.
	* 
*/ public void set_Internal(Boolean Internal) throws Exception{ this.Internal = Internal; } /** *
	* Display only dynamically learned services.
	* 
*/ public Boolean get_Internal() throws Exception { return this.Internal; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy