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

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


/**
 * 

Java class for ResourcePoolEvent complex type. * *

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

 * <complexType name="ResourcePoolEvent">
 *   <complexContent>
 *     <extension base="{urn:vim25}Event">
 *       <sequence>
 *         <element name="resourcePool" type="{urn:vim25}ResourcePoolEventArgument"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResourcePoolEvent", propOrder = { "resourcePool" }) @XmlSeeAlso({ ResourcePoolDestroyedEvent.class, ResourcePoolCreatedEvent.class, ResourcePoolReconfiguredEvent.class, ResourcePoolMovedEvent.class, ResourceViolatedEvent.class }) public class ResourcePoolEvent extends Event { @XmlElement(required = true) protected ResourcePoolEventArgument resourcePool; /** * Gets the value of the resourcePool property. * * @return * possible object is * {@link ResourcePoolEventArgument } * */ public ResourcePoolEventArgument getResourcePool() { return resourcePool; } /** * Sets the value of the resourcePool property. * * @param value * allowed object is * {@link ResourcePoolEventArgument } * */ public void setResourcePool(ResourcePoolEventArgument value) { this.resourcePool = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy