Class FlowableErrorEventImpl
- java.lang.Object
-
- org.flowable.common.engine.impl.event.FlowableEventImpl
-
- org.flowable.common.engine.impl.event.FlowableEngineEventImpl
-
- org.flowable.engine.delegate.event.impl.FlowableProcessEventImpl
-
- org.flowable.engine.delegate.event.impl.FlowableActivityEventImpl
-
- org.flowable.engine.delegate.event.impl.FlowableErrorEventImpl
-
- All Implemented Interfaces:
FlowableEngineEvent,FlowableEvent,FlowableActivityEvent,FlowableErrorEvent,FlowableProcessEngineEvent
public class FlowableErrorEventImpl extends FlowableActivityEventImpl implements FlowableErrorEvent
Implementation of anFlowableErrorEvent.- Author:
- Frederik Heremans
-
-
Field Summary
Fields Modifier and Type Field Description protected StringerrorCodeprotected StringerrorId-
Fields inherited from class org.flowable.engine.delegate.event.impl.FlowableActivityEventImpl
activityId, activityName, activityType, behaviorClass
-
Fields inherited from class org.flowable.common.engine.impl.event.FlowableEngineEventImpl
scopeDefinitionId, scopeId, scopeType, subScopeId
-
Fields inherited from class org.flowable.common.engine.impl.event.FlowableEventImpl
type
-
-
Constructor Summary
Constructors Constructor Description FlowableErrorEventImpl(FlowableEngineEventType type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetErrorCode()StringgetErrorId()voidsetErrorCode(String errorCode)voidsetErrorId(String errorId)-
Methods inherited from class org.flowable.engine.delegate.event.impl.FlowableActivityEventImpl
getActivityId, getActivityName, getActivityType, getBehaviorClass, setActivityId, setActivityName, setActivityType, setBehaviorClass
-
Methods inherited from class org.flowable.engine.delegate.event.impl.FlowableProcessEventImpl
getExecution
-
Methods inherited from class org.flowable.common.engine.impl.event.FlowableEngineEventImpl
getExecutionId, getProcessDefinitionId, getProcessInstanceId, getScopeDefinitionId, getScopeId, getScopeType, getSubScopeId, getType, setExecutionId, setProcessDefinitionId, setProcessInstanceId, setScopeDefinitionId, setScopeId, setScopeType, setSubScopeId, setType
-
Methods inherited from class org.flowable.common.engine.impl.event.FlowableEventImpl
toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.flowable.engine.delegate.event.FlowableActivityEvent
getActivityId, getActivityName, getActivityType, getBehaviorClass
-
Methods inherited from interface org.flowable.common.engine.api.delegate.event.FlowableEngineEvent
getExecutionId, getProcessDefinitionId, getProcessInstanceId, getScopeDefinitionId, getScopeId, getScopeType, getSubScopeId
-
Methods inherited from interface org.flowable.common.engine.api.delegate.event.FlowableEvent
getType
-
-
-
-
Constructor Detail
-
FlowableErrorEventImpl
public FlowableErrorEventImpl(FlowableEngineEventType type)
-
-
Method Detail
-
getErrorId
public String getErrorId()
- Specified by:
getErrorIdin interfaceFlowableErrorEvent
-
setErrorId
public void setErrorId(String errorId)
-
setErrorCode
public void setErrorCode(String errorCode)
-
getErrorCode
public String getErrorCode()
- Specified by:
getErrorCodein interfaceFlowableErrorEvent- Returns:
- the error-code of the error. Returns null, if no specific error-code has been specified when the error was thrown.
-
-