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

com.vmware.vim25.AlarmEvent 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for AlarmEvent complex type. * *

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

 * <complexType name="AlarmEvent">
 *   <complexContent>
 *     <extension base="{urn:vim25}Event">
 *       <sequence>
 *         <element name="alarm" type="{urn:vim25}AlarmEventArgument"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AlarmEvent", propOrder = { "alarm" }) @XmlSeeAlso({ AlarmCreatedEvent.class, AlarmStatusChangedEvent.class, AlarmActionTriggeredEvent.class, AlarmEmailCompletedEvent.class, AlarmEmailFailedEvent.class, AlarmSnmpCompletedEvent.class, AlarmSnmpFailedEvent.class, AlarmScriptCompleteEvent.class, AlarmScriptFailedEvent.class, AlarmRemovedEvent.class, AlarmReconfiguredEvent.class, AlarmAcknowledgedEvent.class, AlarmClearedEvent.class }) public class AlarmEvent extends Event { @XmlElement(required = true) protected AlarmEventArgument alarm; /** * Gets the value of the alarm property. * * @return * possible object is * {@link AlarmEventArgument } * */ public AlarmEventArgument getAlarm() { return alarm; } /** * Sets the value of the alarm property. * * @param value * allowed object is * {@link AlarmEventArgument } * */ public void setAlarm(AlarmEventArgument value) { this.alarm = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy