Interface ExecutionRestService

  • All Known Implementing Classes:
    ExecutionRestServiceImpl

    @Produces("application/json")
    public interface ExecutionRestService
    • Method Detail

      • getExecutions

        @GET
        @Produces("application/json")
        List<ExecutionDto> getExecutions​(@Context
                                         javax.ws.rs.core.UriInfo uriInfo,
                                         @QueryParam("firstResult")
                                         Integer firstResult,
                                         @QueryParam("maxResults")
                                         Integer maxResults)
      • queryExecutions

        @POST
        @Produces("application/json")
        @Consumes("application/json")
        List<ExecutionDto> queryExecutions​(ExecutionQueryDto query,
                                           @QueryParam("firstResult")
                                           Integer firstResult,
                                           @QueryParam("maxResults")
                                           Integer maxResults)
      • getExecutionsCount

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

        @POST
        @Path("/count")
        @Produces("application/json")
        @Consumes("application/json")
        CountResultDto queryExecutionsCount​(ExecutionQueryDto query)