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