![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.KmipServerInfo Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for KmipServerInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="KmipServerInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="address" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="port" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="proxyAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="proxyPort" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="reconnect" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="protocol" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="nbio" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="timeout" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="userName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "KmipServerInfo", propOrder = {
"name",
"address",
"port",
"proxyAddress",
"proxyPort",
"reconnect",
"protocol",
"nbio",
"timeout",
"userName"
})
public class KmipServerInfo
extends DynamicData
{
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected String address;
protected int port;
protected String proxyAddress;
protected Integer proxyPort;
protected Integer reconnect;
protected String protocol;
protected Integer nbio;
protected Integer timeout;
protected String userName;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the address property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddress() {
return address;
}
/**
* Sets the value of the address property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddress(String value) {
this.address = value;
}
/**
* Gets the value of the port property.
*
*/
public int getPort() {
return port;
}
/**
* Sets the value of the port property.
*
*/
public void setPort(int value) {
this.port = value;
}
/**
* Gets the value of the proxyAddress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProxyAddress() {
return proxyAddress;
}
/**
* Sets the value of the proxyAddress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProxyAddress(String value) {
this.proxyAddress = value;
}
/**
* Gets the value of the proxyPort property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getProxyPort() {
return proxyPort;
}
/**
* Sets the value of the proxyPort property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setProxyPort(Integer value) {
this.proxyPort = value;
}
/**
* Gets the value of the reconnect property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getReconnect() {
return reconnect;
}
/**
* Sets the value of the reconnect property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setReconnect(Integer value) {
this.reconnect = value;
}
/**
* Gets the value of the protocol property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProtocol() {
return protocol;
}
/**
* Sets the value of the protocol property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProtocol(String value) {
this.protocol = value;
}
/**
* Gets the value of the nbio property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getNbio() {
return nbio;
}
/**
* Sets the value of the nbio property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setNbio(Integer value) {
this.nbio = value;
}
/**
* Gets the value of the timeout property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getTimeout() {
return timeout;
}
/**
* Sets the value of the timeout property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setTimeout(Integer value) {
this.timeout = value;
}
/**
* Gets the value of the userName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserName() {
return userName;
}
/**
* Sets the value of the userName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserName(String value) {
this.userName = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy