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

com.vmware.vim25.ResourcePoolMovedEvent 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.XmlType;


/**
 * 

Java class for ResourcePoolMovedEvent complex type. * *

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

 * <complexType name="ResourcePoolMovedEvent">
 *   <complexContent>
 *     <extension base="{urn:vim25}ResourcePoolEvent">
 *       <sequence>
 *         <element name="oldParent" type="{urn:vim25}ResourcePoolEventArgument"/>
 *         <element name="newParent" type="{urn:vim25}ResourcePoolEventArgument"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResourcePoolMovedEvent", propOrder = { "oldParent", "newParent" }) public class ResourcePoolMovedEvent extends ResourcePoolEvent { @XmlElement(required = true) protected ResourcePoolEventArgument oldParent; @XmlElement(required = true) protected ResourcePoolEventArgument newParent; /** * Gets the value of the oldParent property. * * @return * possible object is * {@link ResourcePoolEventArgument } * */ public ResourcePoolEventArgument getOldParent() { return oldParent; } /** * Sets the value of the oldParent property. * * @param value * allowed object is * {@link ResourcePoolEventArgument } * */ public void setOldParent(ResourcePoolEventArgument value) { this.oldParent = value; } /** * Gets the value of the newParent property. * * @return * possible object is * {@link ResourcePoolEventArgument } * */ public ResourcePoolEventArgument getNewParent() { return newParent; } /** * Sets the value of the newParent property. * * @param value * allowed object is * {@link ResourcePoolEventArgument } * */ public void setNewParent(ResourcePoolEventArgument value) { this.newParent = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy