com.vmware.vim25.HostIncompatibleForFaultTolerance 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 HostIncompatibleForFaultTolerance complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostIncompatibleForFaultTolerance">
* <complexContent>
* <extension base="{urn:vim25}VmFaultToleranceIssue">
* <sequence>
* <element name="hostName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="reason" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostIncompatibleForFaultTolerance", propOrder = {
"hostName",
"reason"
})
public class HostIncompatibleForFaultTolerance
extends VmFaultToleranceIssue
{
protected String hostName;
protected String reason;
/**
* 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy