Interface CaseExecutionResource
- 
- All Known Implementing Classes:
- CaseExecutionResourceImpl
 
 public interface CaseExecutionResource- Author:
- Roman Smirnov
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcomplete(CaseExecutionTriggerDto triggerDto)voiddisable(CaseExecutionTriggerDto triggerDto)CaseExecutionDtogetCaseExecution()VariableResourcegetVariables()VariableResourcegetVariablesLocal()voidmanualStart(CaseExecutionTriggerDto triggerDto)voidreenable(CaseExecutionTriggerDto triggerDto)voidterminate(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()
 
- 
 
-