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")
        java.util.List<HistoricActivityStatisticsDto> getHistoricActivityStatistics​(@Context
                                                                                    javax.ws.rs.core.UriInfo uriInfo,
                                                                                    @PathParam("id")
                                                                                    java.lang.String processDefinitionId)
      • getCleanableHistoricProcessInstanceReport

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

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