![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.VmFaultToleranceConfigIssue 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 VmFaultToleranceConfigIssue complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VmFaultToleranceConfigIssue">
* <complexContent>
* <extension base="{urn:vim25}VmFaultToleranceIssue">
* <sequence>
* <element name="reason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="entityName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="entity" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VmFaultToleranceConfigIssue", propOrder = {
"reason",
"entityName",
"entity"
})
public class VmFaultToleranceConfigIssue
extends VmFaultToleranceIssue
{
protected String reason;
protected String entityName;
protected ManagedObjectReference entity;
/**
* Gets the value of the reason property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReason() {
return reason;
}
/**
* Sets the value of the reason property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReason(String value) {
this.reason = value;
}
/**
* Gets the value of the entityName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEntityName() {
return entityName;
}
/**
* Sets the value of the entityName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEntityName(String value) {
this.entityName = value;
}
/**
* Gets the value of the entity property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getEntity() {
return entity;
}
/**
* Sets the value of the entity property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setEntity(ManagedObjectReference value) {
this.entity = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy