Interface HistoryCleanupRestService
-
- All Known Implementing Classes:
HistoryCleanupRestServiceImpl
public interface HistoryCleanupRestService
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
PATH
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobDto
cleanupAsync(boolean immediatelyDue)
JobDto
findCleanupJob()
java.util.List<JobDto>
findCleanupJobs()
HistoryCleanupConfigurationDto
getHistoryCleanupConfiguration()
-
-
-
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()
-
-