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