com.vmware.vim25.VirtualMachineRuntimeInfoDasProtectionState Maven / Gradle / Ivy
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 VirtualMachineRuntimeInfoDasProtectionState complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VirtualMachineRuntimeInfoDasProtectionState">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="dasProtected" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VirtualMachineRuntimeInfoDasProtectionState", propOrder = {
"dasProtected"
})
public class VirtualMachineRuntimeInfoDasProtectionState
extends DynamicData
{
protected boolean dasProtected;
/**
* Gets the value of the dasProtected property.
*
*/
public boolean isDasProtected() {
return dasProtected;
}
/**
* Sets the value of the dasProtected property.
*
*/
public void setDasProtected(boolean value) {
this.dasProtected = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy