Interface HistoricCaseInstanceRestService

    • Method Detail

      • getHistoricCaseInstance

        @Path("/{id}")
        HistoricCaseInstanceResource getHistoricCaseInstance​(@PathParam("id")
                                                             java.lang.String caseInstanceId)
      • getHistoricCaseInstances

        @GET
        @Produces("application/json")
        java.util.List<HistoricCaseInstanceDto> getHistoricCaseInstances​(@Context
                                                                         javax.ws.rs.core.UriInfo uriInfo,
                                                                         @QueryParam("firstResult")
                                                                         java.lang.Integer firstResult,
                                                                         @QueryParam("maxResults")
                                                                         java.lang.Integer maxResults)
        Exposes the HistoricCaseInstanceQuery interface as a REST service.
      • queryHistoricCaseInstances

        @POST
        @Consumes("application/json")
        @Produces("application/json")
        java.util.List<HistoricCaseInstanceDto> queryHistoricCaseInstances​(HistoricCaseInstanceQueryDto query,
                                                                           @QueryParam("firstResult")
                                                                           java.lang.Integer firstResult,
                                                                           @QueryParam("maxResults")
                                                                           java.lang.Integer maxResults)
      • getHistoricCaseInstancesCount

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