Interface CaseExecutionRestService

  • All Known Implementing Classes:
    CaseExecutionRestServiceImpl

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

      • getCaseExecutions

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

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

        @POST
        @Path("/count")
        @Consumes("application/json")
        @Produces("application/json")
        CountResultDto queryCaseExecutionsCount​(CaseExecutionQueryDto query)