Interface CaseExecutionResource
-
- All Known Implementing Classes:
CaseExecutionResourceImpl
public interface CaseExecutionResource
- Author:
- Roman Smirnov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
complete(CaseExecutionTriggerDto triggerDto)
void
disable(CaseExecutionTriggerDto triggerDto)
CaseExecutionDto
getCaseExecution()
VariableResource
getVariables()
VariableResource
getVariablesLocal()
void
manualStart(CaseExecutionTriggerDto triggerDto)
void
reenable(CaseExecutionTriggerDto triggerDto)
void
terminate(CaseExecutionTriggerDto triggerDto)
-
-
-
Method Detail
-
getCaseExecution
@GET @Produces("application/json") CaseExecutionDto getCaseExecution()
-
manualStart
@POST @Path("/manual-start") @Consumes("application/json") void manualStart(CaseExecutionTriggerDto triggerDto)
-
disable
@POST @Path("/disable") @Consumes("application/json") void disable(CaseExecutionTriggerDto triggerDto)
-
reenable
@POST @Path("/reenable") @Consumes("application/json") void reenable(CaseExecutionTriggerDto triggerDto)
-
complete
@POST @Path("/complete") @Consumes("application/json") void complete(CaseExecutionTriggerDto triggerDto)
-
terminate
@POST @Path("/terminate") @Consumes("application/json") void terminate(CaseExecutionTriggerDto triggerDto)
-
getVariablesLocal
@Path("/localVariables") VariableResource getVariablesLocal()
-
getVariables
@Path("/variables") VariableResource getVariables()
-
-