![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.IpPoolIpPoolConfigInfo Maven / Gradle / Ivy
package com.vmware.vim25;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for IpPoolIpPoolConfigInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="IpPoolIpPoolConfigInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="subnetAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="netmask" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="gateway" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="range" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="dns" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="dhcpServerAvailable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="ipPoolEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "IpPoolIpPoolConfigInfo", propOrder = {
"subnetAddress",
"netmask",
"gateway",
"range",
"dns",
"dhcpServerAvailable",
"ipPoolEnabled"
})
public class IpPoolIpPoolConfigInfo
extends DynamicData
{
protected String subnetAddress;
protected String netmask;
protected String gateway;
protected String range;
protected List dns;
protected Boolean dhcpServerAvailable;
protected Boolean ipPoolEnabled;
/**
* Gets the value of the subnetAddress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSubnetAddress() {
return subnetAddress;
}
/**
* Sets the value of the subnetAddress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSubnetAddress(String value) {
this.subnetAddress = value;
}
/**
* Gets the value of the netmask property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNetmask() {
return netmask;
}
/**
* Sets the value of the netmask property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNetmask(String value) {
this.netmask = value;
}
/**
* Gets the value of the gateway property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGateway() {
return gateway;
}
/**
* Sets the value of the gateway property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGateway(String value) {
this.gateway = value;
}
/**
* Gets the value of the range property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRange() {
return range;
}
/**
* Sets the value of the range property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRange(String value) {
this.range = value;
}
/**
* Gets the value of the dns property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the dns property.
*
*
* For example, to add a new item, do as follows:
*
* getDns().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getDns() {
if (dns == null) {
dns = new ArrayList();
}
return this.dns;
}
/**
* Gets the value of the dhcpServerAvailable property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDhcpServerAvailable() {
return dhcpServerAvailable;
}
/**
* Sets the value of the dhcpServerAvailable property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDhcpServerAvailable(Boolean value) {
this.dhcpServerAvailable = value;
}
/**
* Gets the value of the ipPoolEnabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIpPoolEnabled() {
return ipPoolEnabled;
}
/**
* Sets the value of the ipPoolEnabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIpPoolEnabled(Boolean value) {
this.ipPoolEnabled = value;
}
}