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