![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostUnresolvedVmfsVolume 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 HostUnresolvedVmfsVolume complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostUnresolvedVmfsVolume">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="extent" type="{urn:vim25}HostUnresolvedVmfsExtent" maxOccurs="unbounded"/>
* <element name="vmfsLabel" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="vmfsUuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="totalBlocks" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="resolveStatus" type="{urn:vim25}HostUnresolvedVmfsVolumeResolveStatus"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostUnresolvedVmfsVolume", propOrder = {
"extent",
"vmfsLabel",
"vmfsUuid",
"totalBlocks",
"resolveStatus"
})
public class HostUnresolvedVmfsVolume
extends DynamicData
{
@XmlElement(required = true)
protected List extent;
@XmlElement(required = true)
protected String vmfsLabel;
@XmlElement(required = true)
protected String vmfsUuid;
protected int totalBlocks;
@XmlElement(required = true)
protected HostUnresolvedVmfsVolumeResolveStatus resolveStatus;
/**
* Gets the value of the extent 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 extent property.
*
*
* For example, to add a new item, do as follows:
*
* getExtent().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostUnresolvedVmfsExtent }
*
*
*/
public List getExtent() {
if (extent == null) {
extent = new ArrayList();
}
return this.extent;
}
/**
* Gets the value of the vmfsLabel property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVmfsLabel() {
return vmfsLabel;
}
/**
* Sets the value of the vmfsLabel property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVmfsLabel(String value) {
this.vmfsLabel = value;
}
/**
* Gets the value of the vmfsUuid property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVmfsUuid() {
return vmfsUuid;
}
/**
* Sets the value of the vmfsUuid property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVmfsUuid(String value) {
this.vmfsUuid = value;
}
/**
* Gets the value of the totalBlocks property.
*
*/
public int getTotalBlocks() {
return totalBlocks;
}
/**
* Sets the value of the totalBlocks property.
*
*/
public void setTotalBlocks(int value) {
this.totalBlocks = value;
}
/**
* Gets the value of the resolveStatus property.
*
* @return
* possible object is
* {@link HostUnresolvedVmfsVolumeResolveStatus }
*
*/
public HostUnresolvedVmfsVolumeResolveStatus getResolveStatus() {
return resolveStatus;
}
/**
* Sets the value of the resolveStatus property.
*
* @param value
* allowed object is
* {@link HostUnresolvedVmfsVolumeResolveStatus }
*
*/
public void setResolveStatus(HostUnresolvedVmfsVolumeResolveStatus value) {
this.resolveStatus = value;
}
}