Class ExecutionResourceImpl
- java.lang.Object
-
- org.camunda.bpm.engine.rest.sub.runtime.impl.ExecutionResourceImpl
-
- All Implemented Interfaces:
ExecutionResource
public class ExecutionResourceImpl extends Object implements ExecutionResource
-
-
Field Summary
Fields Modifier and Type Field Description protected ProcessEngine
engine
protected String
executionId
protected com.fasterxml.jackson.databind.ObjectMapper
objectMapper
-
Constructor Summary
Constructors Constructor Description ExecutionResourceImpl(ProcessEngine engine, String executionId, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IncidentDto
createIncident(CreateIncidentDto createIncidentDto)
ExecutionDto
getExecution()
VariableResource
getLocalVariables()
EventSubscriptionResource
getMessageEventSubscription(String messageName)
void
signalExecution(ExecutionTriggerDto triggerDto)
-
-
-
Field Detail
-
engine
protected ProcessEngine engine
-
executionId
protected String executionId
-
objectMapper
protected com.fasterxml.jackson.databind.ObjectMapper objectMapper
-
-
Constructor Detail
-
ExecutionResourceImpl
public ExecutionResourceImpl(ProcessEngine engine, String executionId, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
-
-
Method Detail
-
getExecution
public ExecutionDto getExecution()
- Specified by:
getExecution
in interfaceExecutionResource
-
signalExecution
public void signalExecution(ExecutionTriggerDto triggerDto)
- Specified by:
signalExecution
in interfaceExecutionResource
-
getLocalVariables
public VariableResource getLocalVariables()
- Specified by:
getLocalVariables
in interfaceExecutionResource
-
getMessageEventSubscription
public EventSubscriptionResource getMessageEventSubscription(String messageName)
- Specified by:
getMessageEventSubscription
in interfaceExecutionResource
-
createIncident
public IncidentDto createIncident(CreateIncidentDto createIncidentDto)
- Specified by:
createIncident
in interfaceExecutionResource
-
-