Interface HistoryCleanupRestService
-
- All Known Implementing Classes:
HistoryCleanupRestServiceImpl
public interface HistoryCleanupRestService
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringPATH
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobDtocleanupAsync(boolean immediatelyDue)JobDtofindCleanupJob()java.util.List<JobDto>findCleanupJobs()HistoryCleanupConfigurationDtogetHistoryCleanupConfiguration()
-
-
-
Field Detail
-
PATH
static final java.lang.String PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
cleanupAsync
@POST @Produces("application/json") JobDto cleanupAsync(@QueryParam("immediatelyDue") @DefaultValue("true") boolean immediatelyDue)
-
findCleanupJob
@GET @Path("/job") @Produces("application/json") JobDto findCleanupJob()
-
findCleanupJobs
@GET @Path("/jobs") @Produces("application/json") java.util.List<JobDto> findCleanupJobs()
-
getHistoryCleanupConfiguration
@GET @Path("/configuration") @Produces("application/json") HistoryCleanupConfigurationDto getHistoryCleanupConfiguration()
-
-