Package com.flowable.form.model
Class EventDefinition
- java.lang.Object
-
- com.flowable.form.model.EventDefinition
-
- All Implemented Interfaces:
Serializable
public class EventDefinition extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
eventType
protected String
expression
protected String
id
protected String
implementationType
protected String
resultVariable
-
Constructor Summary
Constructors Constructor Description EventDefinition()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getEventType()
String
getExpression()
String
getId()
String
getImplementationType()
String
getResultVariable()
void
setEventType(String eventType)
void
setExpression(String expression)
void
setId(String id)
void
setImplementationType(String implementationType)
void
setResultVariable(String resultVariable)
-
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getEventType
public String getEventType()
-
setEventType
public void setEventType(String eventType)
-
getImplementationType
public String getImplementationType()
-
setImplementationType
public void setImplementationType(String implementationType)
-
getExpression
public String getExpression()
-
setExpression
public void setExpression(String expression)
-
getResultVariable
public String getResultVariable()
-
setResultVariable
public void setResultVariable(String resultVariable)
-
-