com.vmware.vim25.OvfCreateDescriptorResult 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 OvfCreateDescriptorResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OvfCreateDescriptorResult">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="ovfDescriptor" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="error" type="{urn:vim25}LocalizedMethodFault" maxOccurs="unbounded" minOccurs="0"/>
* <element name="warning" type="{urn:vim25}LocalizedMethodFault" maxOccurs="unbounded" minOccurs="0"/>
* <element name="includeImageFiles" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OvfCreateDescriptorResult", propOrder = {
"ovfDescriptor",
"error",
"warning",
"includeImageFiles"
})
public class OvfCreateDescriptorResult
extends DynamicData
{
@XmlElement(required = true)
protected String ovfDescriptor;
protected List error;
protected List warning;
protected Boolean includeImageFiles;
/**
* Gets the value of the ovfDescriptor property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOvfDescriptor() {
return ovfDescriptor;
}
/**
* Sets the value of the ovfDescriptor property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOvfDescriptor(String value) {
this.ovfDescriptor = value;
}
/**
* Gets the value of the error 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 error property.
*
*
* For example, to add a new item, do as follows:
*
* getError().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link LocalizedMethodFault }
*
*
*/
public List getError() {
if (error == null) {
error = new ArrayList();
}
return this.error;
}
/**
* Gets the value of the warning 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 warning property.
*
*
* For example, to add a new item, do as follows:
*
* getWarning().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link LocalizedMethodFault }
*
*
*/
public List getWarning() {
if (warning == null) {
warning = new ArrayList();
}
return this.warning;
}
/**
* Gets the value of the includeImageFiles property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIncludeImageFiles() {
return includeImageFiles;
}
/**
* Sets the value of the includeImageFiles property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIncludeImageFiles(Boolean value) {
this.includeImageFiles = value;
}
}