Interface BatchRestService

All Known Implementing Classes:
BatchRestServiceImpl

public interface BatchRestService
  • Field Details

  • Method Details

    • getBatch

      @Path("/{id}") BatchResource getBatch(@PathParam("id") String batchId)
    • getBatches

      @GET @Produces("application/json") List<BatchDto> getBatches(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults)
    • getBatchesCount

      @GET @Path("/count") @Produces("application/json") CountResultDto getBatchesCount(@Context jakarta.ws.rs.core.UriInfo uriInfo)
    • getStatistics

      @GET @Path("/statistics") @Produces("application/json") List<BatchStatisticsDto> getStatistics(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults)
    • getStatisticsCount

      @GET @Path("/statistics/count") @Produces("application/json") CountResultDto getStatisticsCount(@Context jakarta.ws.rs.core.UriInfo uriInfo)