com.vmware.vim25.GroupAlarmAction Maven / Gradle / Ivy
package com.vmware.vim25;
import java.util.ArrayList;
import java.util.List;
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 GroupAlarmAction complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GroupAlarmAction">
* <complexContent>
* <extension base="{urn:vim25}AlarmAction">
* <sequence>
* <element name="action" type="{urn:vim25}AlarmAction" maxOccurs="unbounded"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GroupAlarmAction", propOrder = {
"action"
})
public class GroupAlarmAction
extends AlarmAction
{
@XmlElement(required = true)
protected List action;
/**
* Gets the value of the action property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the action property.
*
*
* For example, to add a new item, do as follows:
*
* getAction().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link AlarmAction }
*
*
*/
public List getAction() {
if (action == null) {
action = new ArrayList();
}
return this.action;
}
}