![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.HostVffsSpec Maven / Gradle / Ivy
package com.vmware.vim25;
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 HostVffsSpec complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostVffsSpec">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="devicePath" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="partition" type="{urn:vim25}HostDiskPartitionSpec" minOccurs="0"/>
* <element name="majorVersion" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="volumeName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostVffsSpec", propOrder = {
"devicePath",
"partition",
"majorVersion",
"volumeName"
})
public class HostVffsSpec
extends DynamicData
{
@XmlElement(required = true)
protected String devicePath;
protected HostDiskPartitionSpec partition;
protected int majorVersion;
@XmlElement(required = true)
protected String volumeName;
/**
* Gets the value of the devicePath property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDevicePath() {
return devicePath;
}
/**
* Sets the value of the devicePath property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDevicePath(String value) {
this.devicePath = value;
}
/**
* Gets the value of the partition property.
*
* @return
* possible object is
* {@link HostDiskPartitionSpec }
*
*/
public HostDiskPartitionSpec getPartition() {
return partition;
}
/**
* Sets the value of the partition property.
*
* @param value
* allowed object is
* {@link HostDiskPartitionSpec }
*
*/
public void setPartition(HostDiskPartitionSpec value) {
this.partition = value;
}
/**
* Gets the value of the majorVersion property.
*
*/
public int getMajorVersion() {
return majorVersion;
}
/**
* Sets the value of the majorVersion property.
*
*/
public void setMajorVersion(int value) {
this.majorVersion = value;
}
/**
* Gets the value of the volumeName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVolumeName() {
return volumeName;
}
/**
* Sets the value of the volumeName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVolumeName(String value) {
this.volumeName = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy