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

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

The 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.XmlType;


/**
 * 

Java class for DvsMergedEvent complex type. * *

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

 * <complexType name="DvsMergedEvent">
 *   <complexContent>
 *     <extension base="{urn:vim25}DvsEvent">
 *       <sequence>
 *         <element name="sourceDvs" type="{urn:vim25}DvsEventArgument"/>
 *         <element name="destinationDvs" type="{urn:vim25}DvsEventArgument"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DvsMergedEvent", propOrder = { "sourceDvs", "destinationDvs" }) public class DvsMergedEvent extends DvsEvent { @XmlElement(required = true) protected DvsEventArgument sourceDvs; @XmlElement(required = true) protected DvsEventArgument destinationDvs; /** * Gets the value of the sourceDvs property. * * @return * possible object is * {@link DvsEventArgument } * */ public DvsEventArgument getSourceDvs() { return sourceDvs; } /** * Sets the value of the sourceDvs property. * * @param value * allowed object is * {@link DvsEventArgument } * */ public void setSourceDvs(DvsEventArgument value) { this.sourceDvs = value; } /** * Gets the value of the destinationDvs property. * * @return * possible object is * {@link DvsEventArgument } * */ public DvsEventArgument getDestinationDvs() { return destinationDvs; } /** * Sets the value of the destinationDvs property. * * @param value * allowed object is * {@link DvsEventArgument } * */ public void setDestinationDvs(DvsEventArgument value) { this.destinationDvs = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy