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 SummaryFields Modifier and Type Field Description protected java.util.List<Actions>actionsprotected java.lang.Stringidprotected I18NStringTypemessage
 - 
Constructor SummaryConstructors Constructor Description BaseEvent()
 - 
Method SummaryAll 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- 
idprotected java.lang.String id 
 - 
actionsprotected java.util.List<Actions> actions 
 - 
messageprotected I18NStringType message 
 
- 
 - 
Method Detail- 
getIdpublic java.lang.String getId() Gets the value of the id property.- Returns:
- possible object is
     String
 
 - 
setIdpublic void setId(java.lang.String value) Sets the value of the id property.- Parameters:
- value- allowed object is- String
 
 - 
getActionspublic 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
 - 
getMessagepublic I18NStringType getMessage() Gets the value of the message property.- Returns:
- possible object is
     I18NStringType
 
 - 
setMessagepublic void setMessage(I18NStringType value) Sets the value of the message property.- Parameters:
- value- allowed object is- I18NStringType
 
 
- 
 
-