Interface HistoryCleanupRestService
-
- All Known Implementing Classes:
HistoryCleanupRestServiceImpl
public interface HistoryCleanupRestService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobDto
cleanupAsync(boolean immediatelyDue)
JobDto
findCleanupJob()
List<JobDto>
findCleanupJobs()
HistoryCleanupConfigurationDto
getHistoryCleanupConfiguration()
-
-
-
Field Detail
-
PATH
static final 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()
-
getHistoryCleanupConfiguration
@GET @Path("/configuration") @Produces("application/json") HistoryCleanupConfigurationDto getHistoryCleanupConfiguration()
-
-