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

com.vmware.vim.DatastoreCapability Maven / Gradle / Ivy

The newest version!

package com.vmware.vim;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for DatastoreCapability complex type. * *

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

 * <complexType name="DatastoreCapability">
 *   <complexContent>
 *     <extension base="{urn:vim2}DynamicData">
 *       <sequence>
 *         <element name="directoryHierarchySupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="rawDiskMappingsSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="perFileThinProvisioningSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DatastoreCapability", propOrder = { "directoryHierarchySupported", "rawDiskMappingsSupported", "perFileThinProvisioningSupported" }) public class DatastoreCapability extends DynamicData { protected boolean directoryHierarchySupported; protected boolean rawDiskMappingsSupported; protected boolean perFileThinProvisioningSupported; /** * Gets the value of the directoryHierarchySupported property. * */ public boolean isDirectoryHierarchySupported() { return directoryHierarchySupported; } /** * Sets the value of the directoryHierarchySupported property. * */ public void setDirectoryHierarchySupported(boolean value) { this.directoryHierarchySupported = value; } /** * Gets the value of the rawDiskMappingsSupported property. * */ public boolean isRawDiskMappingsSupported() { return rawDiskMappingsSupported; } /** * Sets the value of the rawDiskMappingsSupported property. * */ public void setRawDiskMappingsSupported(boolean value) { this.rawDiskMappingsSupported = value; } /** * Gets the value of the perFileThinProvisioningSupported property. * */ public boolean isPerFileThinProvisioningSupported() { return perFileThinProvisioningSupported; } /** * Sets the value of the perFileThinProvisioningSupported property. * */ public void setPerFileThinProvisioningSupported(boolean value) { this.perFileThinProvisioningSupported = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy