com.vmware.vim25.OvfManagerCommonParams 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for OvfManagerCommonParams complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OvfManagerCommonParams">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="locale" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="deploymentOption" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="msgBundle" type="{urn:vim25}KeyValue" maxOccurs="unbounded" minOccurs="0"/>
* <element name="importOption" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OvfManagerCommonParams", propOrder = {
"locale",
"deploymentOption",
"msgBundle",
"importOption"
})
@XmlSeeAlso({
OvfValidateHostParams.class,
OvfParseDescriptorParams.class,
OvfCreateImportSpecParams.class
})
public class OvfManagerCommonParams
extends DynamicData
{
@XmlElement(required = true)
protected String locale;
@XmlElement(required = true)
protected String deploymentOption;
protected List msgBundle;
protected List importOption;
/**
* Gets the value of the locale property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocale() {
return locale;
}
/**
* Sets the value of the locale property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocale(String value) {
this.locale = value;
}
/**
* Gets the value of the deploymentOption property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDeploymentOption() {
return deploymentOption;
}
/**
* Sets the value of the deploymentOption property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDeploymentOption(String value) {
this.deploymentOption = value;
}
/**
* Gets the value of the msgBundle 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 msgBundle property.
*
*
* For example, to add a new item, do as follows:
*
* getMsgBundle().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link KeyValue }
*
*
*/
public List getMsgBundle() {
if (msgBundle == null) {
msgBundle = new ArrayList();
}
return this.msgBundle;
}
/**
* Gets the value of the importOption 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 importOption property.
*
*
* For example, to add a new item, do as follows:
*
* getImportOption().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getImportOption() {
if (importOption == null) {
importOption = new ArrayList();
}
return this.importOption;
}
}