com.vmware.vim25.DVPortgroupReconfiguredEvent 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 DVPortgroupReconfiguredEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DVPortgroupReconfiguredEvent">
* <complexContent>
* <extension base="{urn:vim25}DVPortgroupEvent">
* <sequence>
* <element name="configSpec" type="{urn:vim25}DVPortgroupConfigSpec"/>
* <element name="configChanges" type="{urn:vim25}ChangesInfoEventArgument" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DVPortgroupReconfiguredEvent", propOrder = {
"configSpec",
"configChanges"
})
public class DVPortgroupReconfiguredEvent
extends DVPortgroupEvent
{
@XmlElement(required = true)
protected DVPortgroupConfigSpec configSpec;
protected ChangesInfoEventArgument configChanges;
/**
* Gets the value of the configSpec property.
*
* @return
* possible object is
* {@link DVPortgroupConfigSpec }
*
*/
public DVPortgroupConfigSpec getConfigSpec() {
return configSpec;
}
/**
* Sets the value of the configSpec property.
*
* @param value
* allowed object is
* {@link DVPortgroupConfigSpec }
*
*/
public void setConfigSpec(DVPortgroupConfigSpec value) {
this.configSpec = value;
}
/**
* Gets the value of the configChanges property.
*
* @return
* possible object is
* {@link ChangesInfoEventArgument }
*
*/
public ChangesInfoEventArgument getConfigChanges() {
return configChanges;
}
/**
* Sets the value of the configChanges property.
*
* @param value
* allowed object is
* {@link ChangesInfoEventArgument }
*
*/
public void setConfigChanges(ChangesInfoEventArgument value) {
this.configChanges = value;
}
}