Interface HistoricJobLogRestService
- All Known Implementing Classes:
HistoricJobLogRestServiceImpl
@Path("/job-log")
@Produces("application/json")
public interface HistoricJobLogRestService
- Since:
- 7.3
- Author:
- Roman Smirnov
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetHistoricJobLog
(String historicJobLogId) getHistoricJobLogs
(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) getHistoricJobLogsCount
(jakarta.ws.rs.core.UriInfo uriInfo) queryHistoricJobLogs
(HistoricJobLogQueryDto queryDto, Integer firstResult, Integer maxResults)
-
Field Details
-
PATH
- See Also:
-
-
Method Details
-
getHistoricJobLog
-
getHistoricJobLogs
@GET @Produces("application/json") List<HistoricJobLogDto> getHistoricJobLogs(@Context jakarta.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 jakarta.ws.rs.core.UriInfo uriInfo) -
queryHistoricJobLogsCount
@POST @Path("/count") @Consumes("application/json") @Produces("application/json") CountResultDto queryHistoricJobLogsCount(HistoricJobLogQueryDto queryDto)
-