
com.vmware.vim.HostFileSystemMountInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The newest version!
package com.vmware.vim;
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 HostFileSystemMountInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostFileSystemMountInfo">
* <complexContent>
* <extension base="{urn:vim2}DynamicData">
* <sequence>
* <element name="mountInfo" type="{urn:vim2}HostMountInfo"/>
* <element name="volume" type="{urn:vim2}HostFileSystemVolume"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostFileSystemMountInfo", propOrder = {
"mountInfo",
"volume"
})
public class HostFileSystemMountInfo
extends DynamicData
{
@XmlElement(required = true)
protected HostMountInfo mountInfo;
@XmlElement(required = true)
protected HostFileSystemVolume volume;
/**
* Gets the value of the mountInfo property.
*
* @return
* possible object is
* {@link HostMountInfo }
*
*/
public HostMountInfo getMountInfo() {
return mountInfo;
}
/**
* Sets the value of the mountInfo property.
*
* @param value
* allowed object is
* {@link HostMountInfo }
*
*/
public void setMountInfo(HostMountInfo value) {
this.mountInfo = value;
}
/**
* Gets the value of the volume property.
*
* @return
* possible object is
* {@link HostFileSystemVolume }
*
*/
public HostFileSystemVolume getVolume() {
return volume;
}
/**
* Sets the value of the volume property.
*
* @param value
* allowed object is
* {@link HostFileSystemVolume }
*
*/
public void setVolume(HostFileSystemVolume value) {
this.volume = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy