com.vmware.vim25.VmConfigSpec 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for VmConfigSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VmConfigSpec">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="product" type="{urn:vim25}VAppProductSpec" maxOccurs="unbounded" minOccurs="0"/>
* <element name="property" type="{urn:vim25}VAppPropertySpec" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ipAssignment" type="{urn:vim25}VAppIPAssignmentInfo" minOccurs="0"/>
* <element name="eula" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ovfSection" type="{urn:vim25}VAppOvfSectionSpec" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ovfEnvironmentTransport" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="installBootRequired" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="installBootStopDelay" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VmConfigSpec", propOrder = {
"product",
"property",
"ipAssignment",
"eula",
"ovfSection",
"ovfEnvironmentTransport",
"installBootRequired",
"installBootStopDelay"
})
@XmlSeeAlso({
VAppConfigSpec.class
})
public class VmConfigSpec
extends DynamicData
{
protected List product;
protected List property;
protected VAppIPAssignmentInfo ipAssignment;
protected List eula;
protected List ovfSection;
protected List ovfEnvironmentTransport;
protected Boolean installBootRequired;
protected Integer installBootStopDelay;
/**
* Gets the value of the product 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 product property.
*
*
* For example, to add a new item, do as follows:
*
* getProduct().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VAppProductSpec }
*
*
*/
public List getProduct() {
if (product == null) {
product = new ArrayList();
}
return this.product;
}
/**
* Gets the value of the property 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 property property.
*
*
* For example, to add a new item, do as follows:
*
* getProperty().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VAppPropertySpec }
*
*
*/
public List getProperty() {
if (property == null) {
property = new ArrayList();
}
return this.property;
}
/**
* Gets the value of the ipAssignment property.
*
* @return
* possible object is
* {@link VAppIPAssignmentInfo }
*
*/
public VAppIPAssignmentInfo getIpAssignment() {
return ipAssignment;
}
/**
* Sets the value of the ipAssignment property.
*
* @param value
* allowed object is
* {@link VAppIPAssignmentInfo }
*
*/
public void setIpAssignment(VAppIPAssignmentInfo value) {
this.ipAssignment = value;
}
/**
* Gets the value of the eula 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 eula property.
*
*
* For example, to add a new item, do as follows:
*
* getEula().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getEula() {
if (eula == null) {
eula = new ArrayList();
}
return this.eula;
}
/**
* Gets the value of the ovfSection 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 ovfSection property.
*
*
* For example, to add a new item, do as follows:
*
* getOvfSection().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VAppOvfSectionSpec }
*
*
*/
public List getOvfSection() {
if (ovfSection == null) {
ovfSection = new ArrayList();
}
return this.ovfSection;
}
/**
* Gets the value of the ovfEnvironmentTransport 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 ovfEnvironmentTransport property.
*
*
* For example, to add a new item, do as follows:
*
* getOvfEnvironmentTransport().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getOvfEnvironmentTransport() {
if (ovfEnvironmentTransport == null) {
ovfEnvironmentTransport = new ArrayList();
}
return this.ovfEnvironmentTransport;
}
/**
* Gets the value of the installBootRequired property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isInstallBootRequired() {
return installBootRequired;
}
/**
* Sets the value of the installBootRequired property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setInstallBootRequired(Boolean value) {
this.installBootRequired = value;
}
/**
* Gets the value of the installBootStopDelay property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getInstallBootStopDelay() {
return installBootStopDelay;
}
/**
* Sets the value of the installBootStopDelay property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setInstallBootStopDelay(Integer value) {
this.installBootStopDelay = value;
}
}