Interface HistoricIncidentRestService

  • All Known Implementing Classes:
    HistoricIncidentRestServiceImpl

    @Path("/incident")
    @Produces("application/json")
    public interface HistoricIncidentRestService
    Author:
    Roman Smirnov
    • Method Detail

      • getHistoricIncidents

        @GET
        @Produces("application/json")
        java.util.List<HistoricIncidentDto> getHistoricIncidents​(@Context
                                                                 javax.ws.rs.core.UriInfo uriInfo,
                                                                 @QueryParam("firstResult")
                                                                 java.lang.Integer firstResult,
                                                                 @QueryParam("maxResults")
                                                                 java.lang.Integer maxResults)
        Exposes the HistoricActivityInstanceQuery interface as a REST service.
        Parameters:
        query -
        firstResult -
        maxResults -
        Returns:
      • getHistoricIncidentsCount

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