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