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

com.vmware.vim25.MigrationResourceWarningEvent 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 MigrationResourceWarningEvent complex type. * *

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

 * <complexType name="MigrationResourceWarningEvent">
 *   <complexContent>
 *     <extension base="{urn:vim25}MigrationEvent">
 *       <sequence>
 *         <element name="dstPool" type="{urn:vim25}ResourcePoolEventArgument"/>
 *         <element name="dstHost" type="{urn:vim25}HostEventArgument"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MigrationResourceWarningEvent", propOrder = { "dstPool", "dstHost" }) public class MigrationResourceWarningEvent extends MigrationEvent { @XmlElement(required = true) protected ResourcePoolEventArgument dstPool; @XmlElement(required = true) protected HostEventArgument dstHost; /** * Gets the value of the dstPool property. * * @return * possible object is * {@link ResourcePoolEventArgument } * */ public ResourcePoolEventArgument getDstPool() { return dstPool; } /** * Sets the value of the dstPool property. * * @param value * allowed object is * {@link ResourcePoolEventArgument } * */ public void setDstPool(ResourcePoolEventArgument value) { this.dstPool = value; } /** * 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy