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

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

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

 * <complexType name="DatacenterCreatedEvent">
 *   <complexContent>
 *     <extension base="{urn:vim25}DatacenterEvent">
 *       <sequence>
 *         <element name="parent" type="{urn:vim25}FolderEventArgument"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DatacenterCreatedEvent", propOrder = { "parent" }) public class DatacenterCreatedEvent extends DatacenterEvent { @XmlElement(required = true) protected FolderEventArgument parent; /** * Gets the value of the parent property. * * @return * possible object is * {@link FolderEventArgument } * */ public FolderEventArgument getParent() { return parent; } /** * Sets the value of the parent property. * * @param value * allowed object is * {@link FolderEventArgument } * */ public void setParent(FolderEventArgument value) { this.parent = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy