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