com.vmware.vim25.IncompatibleHostForVmReplication Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for IncompatibleHostForVmReplication complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="IncompatibleHostForVmReplication">
* <complexContent>
* <extension base="{urn:vim25}ReplicationFault">
* <sequence>
* <element name="vmName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="hostName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="reason" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "IncompatibleHostForVmReplication", propOrder = {
"vmName",
"hostName",
"reason"
})
public class IncompatibleHostForVmReplication
extends ReplicationFault
{
@XmlElement(required = true)
protected String vmName;
@XmlElement(required = true)
protected String hostName;
@XmlElement(required = true)
protected String reason;
/**
* Gets the value of the vmName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVmName() {
return vmName;
}
/**
* Sets the value of the vmName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVmName(String value) {
this.vmName = value;
}
/**
* Gets the value of the hostName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHostName() {
return hostName;
}
/**
* Sets the value of the hostName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHostName(String value) {
this.hostName = value;
}
/**
* 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;
}
}