![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.DvsHostBackInSyncEvent 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 DvsHostBackInSyncEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DvsHostBackInSyncEvent">
* <complexContent>
* <extension base="{urn:vim25}DvsEvent">
* <sequence>
* <element name="hostBackInSync" type="{urn:vim25}HostEventArgument"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DvsHostBackInSyncEvent", propOrder = {
"hostBackInSync"
})
public class DvsHostBackInSyncEvent
extends DvsEvent
{
@XmlElement(required = true)
protected HostEventArgument hostBackInSync;
/**
* Gets the value of the hostBackInSync property.
*
* @return
* possible object is
* {@link HostEventArgument }
*
*/
public HostEventArgument getHostBackInSync() {
return hostBackInSync;
}
/**
* Sets the value of the hostBackInSync property.
*
* @param value
* allowed object is
* {@link HostEventArgument }
*
*/
public void setHostBackInSync(HostEventArgument value) {
this.hostBackInSync = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy