
com.vmware.vim.AlarmTriggeringAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The newest version!
package com.vmware.vim;
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 AlarmTriggeringAction complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AlarmTriggeringAction">
* <complexContent>
* <extension base="{urn:vim2}AlarmAction">
* <sequence>
* <element name="action" type="{urn:vim2}Action"/>
* <element name="green2yellow" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="yellow2red" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="red2yellow" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="yellow2green" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AlarmTriggeringAction", propOrder = {
"action",
"green2Yellow",
"yellow2Red",
"red2Yellow",
"yellow2Green"
})
public class AlarmTriggeringAction
extends AlarmAction
{
@XmlElement(required = true)
protected Action action;
@XmlElement(name = "green2yellow")
protected boolean green2Yellow;
@XmlElement(name = "yellow2red")
protected boolean yellow2Red;
@XmlElement(name = "red2yellow")
protected boolean red2Yellow;
@XmlElement(name = "yellow2green")
protected boolean yellow2Green;
/**
* Gets the value of the action property.
*
* @return
* possible object is
* {@link Action }
*
*/
public Action getAction() {
return action;
}
/**
* Sets the value of the action property.
*
* @param value
* allowed object is
* {@link Action }
*
*/
public void setAction(Action value) {
this.action = value;
}
/**
* Gets the value of the green2Yellow property.
*
*/
public boolean isGreen2Yellow() {
return green2Yellow;
}
/**
* Sets the value of the green2Yellow property.
*
*/
public void setGreen2Yellow(boolean value) {
this.green2Yellow = value;
}
/**
* Gets the value of the yellow2Red property.
*
*/
public boolean isYellow2Red() {
return yellow2Red;
}
/**
* Sets the value of the yellow2Red property.
*
*/
public void setYellow2Red(boolean value) {
this.yellow2Red = value;
}
/**
* Gets the value of the red2Yellow property.
*
*/
public boolean isRed2Yellow() {
return red2Yellow;
}
/**
* Sets the value of the red2Yellow property.
*
*/
public void setRed2Yellow(boolean value) {
this.red2Yellow = value;
}
/**
* Gets the value of the yellow2Green property.
*
*/
public boolean isYellow2Green() {
return yellow2Green;
}
/**
* Sets the value of the yellow2Green property.
*
*/
public void setYellow2Green(boolean value) {
this.yellow2Green = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy