com.vmware.vim25.ReplicationVmFault Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ReplicationVmFault complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ReplicationVmFault">
* <complexContent>
* <extension base="{urn:vim25}ReplicationFault">
* <sequence>
* <element name="reason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="state" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="instanceId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="vm" type="{urn:vim25}ManagedObjectReference" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReplicationVmFault", propOrder = {
"reason",
"state",
"instanceId",
"vm"
})
@XmlSeeAlso({
ReplicationVmInProgressFault.class
})
public class ReplicationVmFault
extends ReplicationFault
{
protected String reason;
protected String state;
protected String instanceId;
protected ManagedObjectReference vm;
/**
* 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 state property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getState() {
return state;
}
/**
* Sets the value of the state property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setState(String value) {
this.state = value;
}
/**
* Gets the value of the instanceId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInstanceId() {
return instanceId;
}
/**
* Sets the value of the instanceId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInstanceId(String value) {
this.instanceId = value;
}
/**
* Gets the value of the vm property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getVm() {
return vm;
}
/**
* Sets the value of the vm property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setVm(ManagedObjectReference value) {
this.vm = value;
}
}