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 java.lang.StringactivityIdprotected java.lang.StringactivityNameprotected java.lang.StringactivityTypeprotected java.lang.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 java.lang.StringgetActivityId()java.lang.StringgetActivityName()java.lang.StringgetActivityType()java.lang.StringgetBehaviorClass()voidsetActivityId(java.lang.String activityId)voidsetActivityName(java.lang.String activityName)voidsetActivityType(java.lang.String activityType)voidsetBehaviorClass(java.lang.String behaviorClass)-
Methods inherited from class org.activiti.engine.delegate.event.impl.ActivitiEventImpl
getExecutionId, getProcessDefinitionId, getProcessInstanceId, getType, setExecutionId, setProcessDefinitionId, setProcessInstanceId, 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 java.lang.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(java.lang.String activityId)
-
getActivityName
public java.lang.String getActivityName()
- Specified by:
getActivityNamein interfaceActivitiActivityEvent- Returns:
- the name of the activity this event is related to.
-
setActivityName
public void setActivityName(java.lang.String activityName)
-
getActivityType
public java.lang.String getActivityType()
- Specified by:
getActivityTypein interfaceActivitiActivityEvent- Returns:
- the type of the activity (if set during parsing).
-
setActivityType
public void setActivityType(java.lang.String activityType)
-
getBehaviorClass
public java.lang.String getBehaviorClass()
- Specified by:
getBehaviorClassin interfaceActivitiActivityEvent- Returns:
- the behaviourclass of the activity (if it could be determined)
-
setBehaviorClass
public void setBehaviorClass(java.lang.String behaviorClass)
-
-