Uses of Class
org.springframework.cloud.dataflow.rest.resource.ScheduleInfoResource
Packages that use ScheduleInfoResource
Package
Description
Defines the operations of the Spring Cloud Data Flow REST Client.
Spring Cloud Data Flow Server Controllers.
-
Uses of ScheduleInfoResource in org.springframework.cloud.dataflow.rest.client
Methods in org.springframework.cloud.dataflow.rest.client that return ScheduleInfoResourceModifier and TypeMethodDescriptionSchedulerOperations.getSchedule
(String scheduleName) Retrieves theScheduleInfo
for the specified ScheduleName for the default platform.SchedulerOperations.getSchedule
(String scheduleName, String platform) Retrieves theScheduleInfo
for the specified ScheduleName.SchedulerTemplate.getSchedule
(String scheduleName) SchedulerTemplate.getSchedule
(String scheduleName, String platform) Methods in org.springframework.cloud.dataflow.rest.client that return types with arguments of type ScheduleInfoResourceModifier and TypeMethodDescriptionorg.springframework.hateoas.PagedModel<ScheduleInfoResource>
SchedulerOperations.list()
List all of the Schedules for the default platform.org.springframework.hateoas.PagedModel<ScheduleInfoResource>
List all of the Schedules associated with the provided TaskDefinition for the default platform.org.springframework.hateoas.PagedModel<ScheduleInfoResource>
List all of the Schedules associated with the provided TaskDefinition.org.springframework.hateoas.PagedModel<ScheduleInfoResource>
SchedulerTemplate.list()
org.springframework.hateoas.PagedModel<ScheduleInfoResource>
org.springframework.hateoas.PagedModel<ScheduleInfoResource>
org.springframework.hateoas.PagedModel<ScheduleInfoResource>
SchedulerOperations.listByPlatform
(String platform) List all of the schedules registered with the system.org.springframework.hateoas.PagedModel<ScheduleInfoResource>
SchedulerTemplate.listByPlatform
(String platform) -
Uses of ScheduleInfoResource in org.springframework.cloud.dataflow.server.controller
Methods in org.springframework.cloud.dataflow.server.controller that return ScheduleInfoResourceModifier and TypeMethodDescriptionTaskSchedulerController.getSchedule
(String scheduleName, String platform) Return aScheduleInfo
for a specific Schedule.Methods in org.springframework.cloud.dataflow.server.controller that return types with arguments of type ScheduleInfoResourceModifier and TypeMethodDescriptionorg.springframework.hateoas.PagedModel<ScheduleInfoResource>
TaskSchedulerController.filteredList
(String taskDefinitionName, String platform, org.springframework.data.web.PagedResourcesAssembler<org.springframework.cloud.deployer.spi.scheduler.ScheduleInfo> assembler) Return a page-able list ofScheduleInfo
s for a specificTaskDefinition
name.org.springframework.hateoas.PagedModel<ScheduleInfoResource>
TaskSchedulerController.list
(org.springframework.data.domain.Pageable pageable, String platform, org.springframework.data.web.PagedResourcesAssembler<org.springframework.cloud.deployer.spi.scheduler.ScheduleInfo> assembler) Return a page-able list ofScheduleInfo
s.