![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.CustomizationIPSettingsIpV6AddressSpec 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for CustomizationIPSettingsIpV6AddressSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CustomizationIPSettingsIpV6AddressSpec">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="ip" type="{urn:vim25}CustomizationIpV6Generator" maxOccurs="unbounded"/>
* <element name="gateway" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomizationIPSettingsIpV6AddressSpec", propOrder = {
"ip",
"gateway"
})
public class CustomizationIPSettingsIpV6AddressSpec
extends DynamicData
{
@XmlElement(required = true)
protected List ip;
protected List gateway;
/**
* Gets the value of the ip 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 ip property.
*
*
* For example, to add a new item, do as follows:
*
* getIp().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link CustomizationIpV6Generator }
*
*
*/
public List getIp() {
if (ip == null) {
ip = new ArrayList();
}
return this.ip;
}
/**
* Gets the value of the gateway 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 gateway property.
*
*
* For example, to add a new item, do as follows:
*
* getGateway().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getGateway() {
if (gateway == null) {
gateway = new ArrayList();
}
return this.gateway;
}
}