All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.VmMigratedEvent Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for VmMigratedEvent complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="VmMigratedEvent">
 *   <complexContent>
 *     <extension base="{urn:vim25}VmEvent">
 *       <sequence>
 *         <element name="sourceHost" type="{urn:vim25}HostEventArgument"/>
 *         <element name="sourceDatacenter" type="{urn:vim25}DatacenterEventArgument" minOccurs="0"/>
 *         <element name="sourceDatastore" type="{urn:vim25}DatastoreEventArgument" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VmMigratedEvent", propOrder = { "sourceHost", "sourceDatacenter", "sourceDatastore" }) @XmlSeeAlso({ DrsVmMigratedEvent.class }) public class VmMigratedEvent extends VmEvent { @XmlElement(required = true) protected HostEventArgument sourceHost; protected DatacenterEventArgument sourceDatacenter; protected DatastoreEventArgument sourceDatastore; /** * Gets the value of the sourceHost property. * * @return * possible object is * {@link HostEventArgument } * */ public HostEventArgument getSourceHost() { return sourceHost; } /** * Sets the value of the sourceHost property. * * @param value * allowed object is * {@link HostEventArgument } * */ public void setSourceHost(HostEventArgument value) { this.sourceHost = value; } /** * Gets the value of the sourceDatacenter property. * * @return * possible object is * {@link DatacenterEventArgument } * */ public DatacenterEventArgument getSourceDatacenter() { return sourceDatacenter; } /** * Sets the value of the sourceDatacenter property. * * @param value * allowed object is * {@link DatacenterEventArgument } * */ public void setSourceDatacenter(DatacenterEventArgument value) { this.sourceDatacenter = value; } /** * Gets the value of the sourceDatastore property. * * @return * possible object is * {@link DatastoreEventArgument } * */ public DatastoreEventArgument getSourceDatastore() { return sourceDatastore; } /** * Sets the value of the sourceDatastore property. * * @param value * allowed object is * {@link DatastoreEventArgument } * */ public void setSourceDatastore(DatastoreEventArgument value) { this.sourceDatastore = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy