Class ProcessEngineAgent.EventInfo
- java.lang.Object
-
- jadex.platform.service.processengine.ProcessEngineAgent.EventInfo
-
- Enclosing class:
- ProcessEngineAgent
protected static class ProcessEngineAgent.EventInfo extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringactivityidThe activity id.protected UnparsedExpressionconditionThe condition expression.protected java.util.List<java.lang.String>eventNamesThe event names.
-
Constructor Summary
Constructors Modifier Constructor Description protectedEventInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetActivityId()Get the activityId.UnparsedExpressiongetCondition()Get the condition.java.util.List<java.lang.String>getEventNames()Get the eventNames.voidsetActivityId(java.lang.String activityId)Set the activityId.voidsetCondition(UnparsedExpression condition)Set the condition.voidsetEventNames(java.util.List<java.lang.String> eventNames)Set the eventNames.
-
-
-
Field Detail
-
eventNames
protected java.util.List<java.lang.String> eventNames
The event names.
-
activityid
protected java.lang.String activityid
The activity id.
-
condition
protected UnparsedExpression condition
The condition expression.
-
-
Method Detail
-
getEventNames
public java.util.List<java.lang.String> getEventNames()
Get the eventNames. return The eventNames.
-
setEventNames
public void setEventNames(java.util.List<java.lang.String> eventNames)
Set the eventNames.- Parameters:
eventNames- The eventNames to set.
-
getActivityId
public java.lang.String getActivityId()
Get the activityId. return The activityId.
-
setActivityId
public void setActivityId(java.lang.String activityId)
Set the activityId.- Parameters:
activityId- The activityId to set.
-
getCondition
public UnparsedExpression getCondition()
Get the condition. return The condition.
-
setCondition
public void setCondition(UnparsedExpression condition)
Set the condition.- Parameters:
condition- The condition to set.
-
-