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

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


/**
 * 

Java class for LockerReconfiguredEvent complex type. * *

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

 * <complexType name="LockerReconfiguredEvent">
 *   <complexContent>
 *     <extension base="{urn:vim25}Event">
 *       <sequence>
 *         <element name="oldDatastore" type="{urn:vim25}DatastoreEventArgument" minOccurs="0"/>
 *         <element name="newDatastore" type="{urn:vim25}DatastoreEventArgument" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LockerReconfiguredEvent", propOrder = { "oldDatastore", "newDatastore" }) public class LockerReconfiguredEvent extends Event { protected DatastoreEventArgument oldDatastore; protected DatastoreEventArgument newDatastore; /** * Gets the value of the oldDatastore property. * * @return * possible object is * {@link DatastoreEventArgument } * */ public DatastoreEventArgument getOldDatastore() { return oldDatastore; } /** * Sets the value of the oldDatastore property. * * @param value * allowed object is * {@link DatastoreEventArgument } * */ public void setOldDatastore(DatastoreEventArgument value) { this.oldDatastore = value; } /** * Gets the value of the newDatastore property. * * @return * possible object is * {@link DatastoreEventArgument } * */ public DatastoreEventArgument getNewDatastore() { return newDatastore; } /** * Sets the value of the newDatastore property. * * @param value * allowed object is * {@link DatastoreEventArgument } * */ public void setNewDatastore(DatastoreEventArgument value) { this.newDatastore = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy