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

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


/**
 * 

Java class for TaskReasonAlarm complex type. * *

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

 * <complexType name="TaskReasonAlarm">
 *   <complexContent>
 *     <extension base="{urn:vim25}TaskReason">
 *       <sequence>
 *         <element name="alarmName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="alarm" type="{urn:vim25}ManagedObjectReference"/>
 *         <element name="entityName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="entity" type="{urn:vim25}ManagedObjectReference"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TaskReasonAlarm", propOrder = { "alarmName", "alarm", "entityName", "entity" }) public class TaskReasonAlarm extends TaskReason { @XmlElement(required = true) protected String alarmName; @XmlElement(required = true) protected ManagedObjectReference alarm; @XmlElement(required = true) protected String entityName; @XmlElement(required = true) protected ManagedObjectReference entity; /** * Gets the value of the alarmName property. * * @return * possible object is * {@link String } * */ public String getAlarmName() { return alarmName; } /** * Sets the value of the alarmName property. * * @param value * allowed object is * {@link String } * */ public void setAlarmName(String value) { this.alarmName = value; } /** * Gets the value of the alarm property. * * @return * possible object is * {@link ManagedObjectReference } * */ public ManagedObjectReference getAlarm() { return alarm; } /** * Sets the value of the alarm property. * * @param value * allowed object is * {@link ManagedObjectReference } * */ public void setAlarm(ManagedObjectReference value) { this.alarm = value; } /** * Gets the value of the entityName property. * * @return * possible object is * {@link String } * */ public String getEntityName() { return entityName; } /** * Sets the value of the entityName property. * * @param value * allowed object is * {@link String } * */ public void setEntityName(String value) { this.entityName = value; } /** * Gets the value of the entity property. * * @return * possible object is * {@link ManagedObjectReference } * */ public ManagedObjectReference getEntity() { return entity; } /** * Sets the value of the entity property. * * @param value * allowed object is * {@link ManagedObjectReference } * */ public void setEntity(ManagedObjectReference value) { this.entity = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy