Interface HistoricJobLogRestService
-
- All Known Implementing Classes:
HistoricJobLogRestServiceImpl
@Path("/job-log") @Produces("application/json") public interface HistoricJobLogRestService
- Since:
- 7.3
- Author:
- Roman Smirnov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HistoricJobLogResource
getHistoricJobLog(String historicJobLogId)
List<HistoricJobLogDto>
getHistoricJobLogs(javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)
CountResultDto
getHistoricJobLogsCount(javax.ws.rs.core.UriInfo uriInfo)
List<HistoricJobLogDto>
queryHistoricJobLogs(HistoricJobLogQueryDto queryDto, Integer firstResult, Integer maxResults)
CountResultDto
queryHistoricJobLogsCount(HistoricJobLogQueryDto queryDto)
-
-
-
Field Detail
-
PATH
static final String PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
getHistoricJobLog
@Path("/{id}") HistoricJobLogResource getHistoricJobLog(@PathParam("id") String historicJobLogId)
-
getHistoricJobLogs
@GET @Produces("application/json") List<HistoricJobLogDto> getHistoricJobLogs(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults)
-
queryHistoricJobLogs
@POST @Consumes("application/json") @Produces("application/json") List<HistoricJobLogDto> queryHistoricJobLogs(HistoricJobLogQueryDto queryDto, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults)
-
getHistoricJobLogsCount
@GET @Path("/count") @Produces("application/json") CountResultDto getHistoricJobLogsCount(@Context javax.ws.rs.core.UriInfo uriInfo)
-
queryHistoricJobLogsCount
@POST @Path("/count") @Consumes("application/json") @Produces("application/json") CountResultDto queryHistoricJobLogsCount(HistoricJobLogQueryDto queryDto)
-
-