
com.vmware.vim25.ClusterDasAdvancedRuntimeInfoVmcpCapabilityInfo Maven / Gradle / Ivy
The newest version!
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ClusterDasAdvancedRuntimeInfoVmcpCapabilityInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ClusterDasAdvancedRuntimeInfoVmcpCapabilityInfo">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="storageAPDSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="storagePDLSupported" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClusterDasAdvancedRuntimeInfoVmcpCapabilityInfo", propOrder = {
"storageAPDSupported",
"storagePDLSupported"
})
public class ClusterDasAdvancedRuntimeInfoVmcpCapabilityInfo
extends DynamicData
{
protected boolean storageAPDSupported;
protected boolean storagePDLSupported;
/**
* Gets the value of the storageAPDSupported property.
*
*/
public boolean isStorageAPDSupported() {
return storageAPDSupported;
}
/**
* Sets the value of the storageAPDSupported property.
*
*/
public void setStorageAPDSupported(boolean value) {
this.storageAPDSupported = value;
}
/**
* Gets the value of the storagePDLSupported property.
*
*/
public boolean isStoragePDLSupported() {
return storagePDLSupported;
}
/**
* Sets the value of the storagePDLSupported property.
*
*/
public void setStoragePDLSupported(boolean value) {
this.storagePDLSupported = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy