@Path(value="/job-log")
@Produces(value="application/json")
public interface HistoricJobLogRestService
Modifier and Type | Method and 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) |
static final String PATH
@Path(value="/{id}") HistoricJobLogResource getHistoricJobLog(@PathParam(value="id") String historicJobLogId)
@GET @Produces(value="application/json") List<HistoricJobLogDto> getHistoricJobLogs(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam(value="firstResult") Integer firstResult, @QueryParam(value="maxResults") Integer maxResults)
@POST @Consumes(value="application/json") @Produces(value="application/json") List<HistoricJobLogDto> queryHistoricJobLogs(HistoricJobLogQueryDto queryDto, @QueryParam(value="firstResult") Integer firstResult, @QueryParam(value="maxResults") Integer maxResults)
@GET @Path(value="/count") @Produces(value="application/json") CountResultDto getHistoricJobLogsCount(@Context javax.ws.rs.core.UriInfo uriInfo)
@POST @Path(value="/count") @Consumes(value="application/json") @Produces(value="application/json") CountResultDto queryHistoricJobLogsCount(HistoricJobLogQueryDto queryDto)
Copyright © 2022. All rights reserved.