All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.HostFileSystemMountInfo Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

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 HostFileSystemMountInfo complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="HostFileSystemMountInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="mountInfo" type="{urn:vim25}HostMountInfo"/>
 *         <element name="volume" type="{urn:vim25}HostFileSystemVolume"/>
 *         <element name="vStorageSupport" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostFileSystemMountInfo", propOrder = { "mountInfo", "volume", "vStorageSupport" }) public class HostFileSystemMountInfo extends DynamicData { @XmlElement(required = true) protected HostMountInfo mountInfo; @XmlElement(required = true) protected HostFileSystemVolume volume; protected String vStorageSupport; /** * 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; } /** * Gets the value of the vStorageSupport property. * * @return * possible object is * {@link String } * */ public String getVStorageSupport() { return vStorageSupport; } /** * Sets the value of the vStorageSupport property. * * @param value * allowed object is * {@link String } * */ public void setVStorageSupport(String value) { this.vStorageSupport = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy