com.vmware.vim25.HostSpecificationOperationFailed 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 HostSpecificationOperationFailed complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HostSpecificationOperationFailed">
* <complexContent>
* <extension base="{urn:vim25}VimFault">
* <sequence>
* <element name="host" type="{urn:vim25}ManagedObjectReference"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HostSpecificationOperationFailed", propOrder = {
"host"
})
public class HostSpecificationOperationFailed
extends VimFault
{
@XmlElement(required = true)
protected ManagedObjectReference host;
/**
* Gets the value of the host property.
*
* @return
* possible object is
* {@link ManagedObjectReference }
*
*/
public ManagedObjectReference getHost() {
return host;
}
/**
* Sets the value of the host property.
*
* @param value
* allowed object is
* {@link ManagedObjectReference }
*
*/
public void setHost(ManagedObjectReference value) {
this.host = value;
}
}