com.vmware.vim25.VmFaultToleranceConfigIssueWrapper 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 VmFaultToleranceConfigIssueWrapper complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VmFaultToleranceConfigIssueWrapper">
* <complexContent>
* <extension base="{urn:vim25}VmFaultToleranceIssue">
* <sequence>
* <element name="entityName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="entity" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
* <element name="error" type="{urn:vim25}LocalizedMethodFault" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VmFaultToleranceConfigIssueWrapper", propOrder = {
"entityName",
"entity",
"error"
})
public class VmFaultToleranceConfigIssueWrapper
extends VmFaultToleranceIssue
{
protected String entityName;
protected ManagedObjectReference entity;
protected LocalizedMethodFault error;
/**
* 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;
}
/**
* Gets the value of the error property.
*
* @return
* possible object is
* {@link LocalizedMethodFault }
*
*/
public LocalizedMethodFault getError() {
return error;
}
/**
* Sets the value of the error property.
*
* @param value
* allowed object is
* {@link LocalizedMethodFault }
*
*/
public void setError(LocalizedMethodFault value) {
this.error = value;
}
}