Interface HistoricProcessDefinitionRestService

  • All Known Implementing Classes:
    HistoricProcessDefinitionRestServiceImpl

    @Path("/process-definition")
    @Produces("application/json")
    public interface HistoricProcessDefinitionRestService
    Author:
    Roman Smirnov
    • Method Detail

      • getHistoricActivityStatistics

        @GET
        @Path("/{id}/statistics")
        @Produces("application/json")
        List<HistoricActivityStatisticsDto> getHistoricActivityStatistics​(@Context
                                                                          javax.ws.rs.core.UriInfo uriInfo,
                                                                          @PathParam("id")
                                                                          String processDefinitionId)
      • getCleanableHistoricProcessInstanceReport

        @GET
        @Path("/cleanable-process-instance-report")
        @Produces("application/json")
        List<CleanableHistoricProcessInstanceReportResultDto> getCleanableHistoricProcessInstanceReport​(@Context
                                                                                                        javax.ws.rs.core.UriInfo uriInfo,
                                                                                                        @QueryParam("firstResult")
                                                                                                        Integer firstResult,
                                                                                                        @QueryParam("maxResults")
                                                                                                        Integer maxResults)
      • getCleanableHistoricProcessInstanceReportCount

        @GET
        @Path("/cleanable-process-instance-report/count")
        @Produces("application/json")
        CountResultDto getCleanableHistoricProcessInstanceReportCount​(@Context
                                                                      javax.ws.rs.core.UriInfo uriInfo)