Class ActivitiActivityEventImpl
- java.lang.Object
-
- org.activiti.engine.delegate.event.impl.ActivitiEventImpl
-
- org.activiti.engine.delegate.event.impl.ActivitiActivityEventImpl
-
- All Implemented Interfaces:
ActivitiActivityEvent,ActivitiEvent
- Direct Known Subclasses:
ActivitiActivityCancelledEventImpl,ActivitiErrorEventImpl,ActivitiMessageEventImpl,ActivitiSignalEventImpl
public class ActivitiActivityEventImpl extends ActivitiEventImpl implements ActivitiActivityEvent
Implementation of anActivitiActivityEvent.
-
-
Field Summary
Fields Modifier and Type Field Description protected StringactivityIdprotected StringactivityNameprotected StringactivityTypeprotected StringbehaviorClass-
Fields inherited from class org.activiti.engine.delegate.event.impl.ActivitiEventImpl
executionId, processDefinitionId, processInstanceId, type
-
-
Constructor Summary
Constructors Constructor Description ActivitiActivityEventImpl(ActivitiEventType type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetActivityId()StringgetActivityName()StringgetActivityType()StringgetBehaviorClass()voidsetActivityId(String activityId)voidsetActivityName(String activityName)voidsetActivityType(String activityType)voidsetBehaviorClass(String behaviorClass)-
Methods inherited from class org.activiti.engine.delegate.event.impl.ActivitiEventImpl
getExecutionId, getProcessDefinitionId, getProcessInstanceId, getReason, getType, setExecutionId, setProcessDefinitionId, setProcessInstanceId, setReason, setType, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.activiti.engine.delegate.event.ActivitiEvent
getExecutionId, getProcessDefinitionId, getProcessInstanceId, getType
-
-
-
-
Constructor Detail
-
ActivitiActivityEventImpl
public ActivitiActivityEventImpl(ActivitiEventType type)
-
-
Method Detail
-
getActivityId
public String getActivityId()
- Specified by:
getActivityIdin interfaceActivitiActivityEvent- Returns:
- the id of the activity this event is related to. This corresponds to an id defined in the process definition.
-
setActivityId
public void setActivityId(String activityId)
-
getActivityName
public String getActivityName()
- Specified by:
getActivityNamein interfaceActivitiActivityEvent- Returns:
- the name of the activity this event is related to.
-
setActivityName
public void setActivityName(String activityName)
-
getActivityType
public String getActivityType()
- Specified by:
getActivityTypein interfaceActivitiActivityEvent- Returns:
- the type of the activity (if set during parsing).
-
setActivityType
public void setActivityType(String activityType)
-
getBehaviorClass
public String getBehaviorClass()
- Specified by:
getBehaviorClassin interfaceActivitiActivityEvent- Returns:
- the behaviourclass of the activity (if it could be determined)
-
setBehaviorClass
public void setBehaviorClass(String behaviorClass)
-
-