Interface CaseExecutionResource

All Known Implementing Classes:
CaseExecutionResourceImpl

public interface CaseExecutionResource
Author:
Roman Smirnov
  • Method Details

    • 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()