![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.VAppIPAssignmentInfo 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 VAppIPAssignmentInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VAppIPAssignmentInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="supportedAllocationScheme" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ipAllocationPolicy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="supportedIpProtocol" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ipProtocol" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VAppIPAssignmentInfo", propOrder = {
"supportedAllocationScheme",
"ipAllocationPolicy",
"supportedIpProtocol",
"ipProtocol"
})
public class VAppIPAssignmentInfo
extends DynamicData
{
protected List supportedAllocationScheme;
protected String ipAllocationPolicy;
protected List supportedIpProtocol;
protected String ipProtocol;
/**
* Gets the value of the supportedAllocationScheme 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 supportedAllocationScheme property.
*
*
* For example, to add a new item, do as follows:
*
* getSupportedAllocationScheme().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getSupportedAllocationScheme() {
if (supportedAllocationScheme == null) {
supportedAllocationScheme = new ArrayList();
}
return this.supportedAllocationScheme;
}
/**
* Gets the value of the ipAllocationPolicy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIpAllocationPolicy() {
return ipAllocationPolicy;
}
/**
* Sets the value of the ipAllocationPolicy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIpAllocationPolicy(String value) {
this.ipAllocationPolicy = value;
}
/**
* Gets the value of the supportedIpProtocol 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 supportedIpProtocol property.
*
*
* For example, to add a new item, do as follows:
*
* getSupportedIpProtocol().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getSupportedIpProtocol() {
if (supportedIpProtocol == null) {
supportedIpProtocol = new ArrayList();
}
return this.supportedIpProtocol;
}
/**
* Gets the value of the ipProtocol property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIpProtocol() {
return ipProtocol;
}
/**
* Sets the value of the ipProtocol property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIpProtocol(String value) {
this.ipProtocol = value;
}
}