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

com.vmware.vim25.ClusterFailoverLevelAdmissionControlPolicy 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.XmlType;


/**
 * 

Java class for ClusterFailoverLevelAdmissionControlPolicy complex type. * *

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

 * <complexType name="ClusterFailoverLevelAdmissionControlPolicy">
 *   <complexContent>
 *     <extension base="{urn:vim25}ClusterDasAdmissionControlPolicy">
 *       <sequence>
 *         <element name="failoverLevel" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="slotPolicy" type="{urn:vim25}ClusterSlotPolicy" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClusterFailoverLevelAdmissionControlPolicy", propOrder = { "failoverLevel", "slotPolicy" }) public class ClusterFailoverLevelAdmissionControlPolicy extends ClusterDasAdmissionControlPolicy { protected int failoverLevel; protected ClusterSlotPolicy slotPolicy; /** * Gets the value of the failoverLevel property. * */ public int getFailoverLevel() { return failoverLevel; } /** * Sets the value of the failoverLevel property. * */ public void setFailoverLevel(int value) { this.failoverLevel = value; } /** * Gets the value of the slotPolicy property. * * @return * possible object is * {@link ClusterSlotPolicy } * */ public ClusterSlotPolicy getSlotPolicy() { return slotPolicy; } /** * Sets the value of the slotPolicy property. * * @param value * allowed object is * {@link ClusterSlotPolicy } * */ public void setSlotPolicy(ClusterSlotPolicy value) { this.slotPolicy = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy