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