Class BaseEvent
- java.lang.Object
-
- com.netgrif.application.engine.importer.model.BaseEvent
-
- Direct Known Subclasses:
CaseEvent,DataEvent,Event,ProcessEvent
public class BaseEvent extends java.lang.ObjectJava class for baseEvent complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="baseEvent"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="actions" type="{}actions" maxOccurs="unbounded" minOccurs="0"/> <element name="message" type="{}i18nStringType" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<Actions>actionsprotected java.lang.Stringidprotected I18NStringTypemessage
-
Constructor Summary
Constructors Constructor Description BaseEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Actions>getActions()Gets the value of the actions property.java.lang.StringgetId()Gets the value of the id property.I18NStringTypegetMessage()Gets the value of the message property.voidsetId(java.lang.String value)Sets the value of the id property.voidsetMessage(I18NStringType value)Sets the value of the message property.
-
-
-
Field Detail
-
id
protected java.lang.String id
-
actions
protected java.util.List<Actions> actions
-
message
protected I18NStringType message
-
-
Method Detail
-
getId
public java.lang.String getId()
Gets the value of the id property.- Returns:
- possible object is
String
-
setId
public void setId(java.lang.String value)
Sets the value of the id property.- Parameters:
value- allowed object isString
-
getActions
public java.util.List<Actions> getActions()
Gets the value of the actions 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
setmethod for the actions property.For example, to add a new item, do as follows:
getActions().add(newItem);Objects of the following type(s) are allowed in the list
Actions
-
getMessage
public I18NStringType getMessage()
Gets the value of the message property.- Returns:
- possible object is
I18NStringType
-
setMessage
public void setMessage(I18NStringType value)
Sets the value of the message property.- Parameters:
value- allowed object isI18NStringType
-
-