com.vmware.vim25.AlarmInfo 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for AlarmInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AlarmInfo">
* <complexContent>
* <extension base="{urn:vim25}AlarmSpec">
* <sequence>
* <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="alarm" type="{urn:vim25}ManagedObjectReference"/>
* <element name="entity" type="{urn:vim25}ManagedObjectReference"/>
* <element name="lastModifiedTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="lastModifiedUser" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="creationEventId" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AlarmInfo", propOrder = {
"key",
"alarm",
"entity",
"lastModifiedTime",
"lastModifiedUser",
"creationEventId"
})
public class AlarmInfo
extends AlarmSpec
{
@XmlElement(required = true)
protected String key;
@XmlElement(required = true)
protected ManagedObjectReference alarm;
@XmlElement(required = true)
protected ManagedObjectReference entity;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastModifiedTime;
@XmlElement(required = true)
protected String lastModifiedUser;
protected int creationEventId;
/**
* Gets the value of the key property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKey() {
return key;
}
/**
* Sets the value of the key property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKey(String value) {
this.key = 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 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;
}
/**
* Gets the value of the lastModifiedTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLastModifiedTime() {
return lastModifiedTime;
}
/**
* Sets the value of the lastModifiedTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLastModifiedTime(XMLGregorianCalendar value) {
this.lastModifiedTime = value;
}
/**
* Gets the value of the lastModifiedUser property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLastModifiedUser() {
return lastModifiedUser;
}
/**
* Sets the value of the lastModifiedUser property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLastModifiedUser(String value) {
this.lastModifiedUser = value;
}
/**
* Gets the value of the creationEventId property.
*
*/
public int getCreationEventId() {
return creationEventId;
}
/**
* Sets the value of the creationEventId property.
*
*/
public void setCreationEventId(int value) {
this.creationEventId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy