Interface ProcessInstanceRestService

    • Method Detail

      • getProcessInstances

        @GET
        @Produces("application/json")
        List<ProcessInstanceDto> getProcessInstances​(@Context
                                                     javax.ws.rs.core.UriInfo uriInfo,
                                                     @QueryParam("firstResult")
                                                     Integer firstResult,
                                                     @QueryParam("maxResults")
                                                     Integer maxResults)
        Exposes the ProcessInstanceQuery interface as a REST service.
        Parameters:
        uriInfo -
        firstResult -
        maxResults -
        Returns:
      • getProcessInstancesCount

        @GET
        @Path("/count")
        @Produces("application/json")
        CountResultDto getProcessInstancesCount​(@Context
                                                javax.ws.rs.core.UriInfo uriInfo)
      • queryProcessInstancesCount

        @POST
        @Path("/count")
        @Consumes("application/json")
        @Produces("application/json")
        CountResultDto queryProcessInstancesCount​(ProcessInstanceQueryDto query)
      • deleteAsyncHistoricQueryBased

        @POST
        @Path("/delete-historic-query-based")
        @Consumes("application/json")
        @Produces("application/json")
        BatchDto deleteAsyncHistoricQueryBased​(DeleteProcessInstancesDto dto)
      • setRetriesByProcess

        @POST
        @Path("/job-retries")
        @Consumes("application/json")
        @Produces("application/json")
        BatchDto setRetriesByProcess​(SetJobRetriesByProcessDto setJobRetriesDto)
      • setRetriesByProcessHistoricQueryBased

        @POST
        @Path("/job-retries-historic-query-based")
        @Consumes("application/json")
        @Produces("application/json")
        BatchDto setRetriesByProcessHistoricQueryBased​(SetJobRetriesByProcessDto setJobRetriesDto)
      • setVariablesAsync

        @POST
        @Path("/variables-async")
        @Consumes("application/json")
        @Produces("application/json")
        BatchDto setVariablesAsync​(SetVariablesAsyncDto setVariablesAsyncDto)
      • correlateMessageAsync

        @POST
        @Path("/message-async")
        @Consumes("application/json")
        @Produces("application/json")
        BatchDto correlateMessageAsync​(CorrelationMessageAsyncDto correlationMessageAsyncDto)