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