com.vmware.vim25.AlarmRemovedEvent 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 AlarmRemovedEvent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AlarmRemovedEvent">
* <complexContent>
* <extension base="{urn:vim25}AlarmEvent">
* <sequence>
* <element name="entity" type="{urn:vim25}ManagedEntityEventArgument"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AlarmRemovedEvent", propOrder = {
"entity"
})
public class AlarmRemovedEvent
extends AlarmEvent
{
@XmlElement(required = true)
protected ManagedEntityEventArgument entity;
/**
* Gets the value of the entity property.
*
* @return
* possible object is
* {@link ManagedEntityEventArgument }
*
*/
public ManagedEntityEventArgument getEntity() {
return entity;
}
/**
* Sets the value of the entity property.
*
* @param value
* allowed object is
* {@link ManagedEntityEventArgument }
*
*/
public void setEntity(ManagedEntityEventArgument value) {
this.entity = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy