Package | Description |
---|---|
org.springframework.cloud.dataflow.rest.client |
Defines the operations of the Spring Cloud Data Flow REST Client.
|
org.springframework.cloud.dataflow.server.config |
Spring Cloud Data Flow Server configuration classes.
|
org.springframework.cloud.dataflow.server.controller |
Spring Cloud Data Flow Server Controllers.
|
org.springframework.cloud.dataflow.server.controller.assembler |
Modifier and Type | Method and Description |
---|---|
TaskDefinitionResource |
TaskTemplate.create(String name,
String definition,
String description) |
TaskDefinitionResource |
TaskOperations.create(String name,
String definition,
String description)
Create a new task definition
|
Modifier and Type | Method and Description |
---|---|
org.springframework.hateoas.PagedModel<TaskDefinitionResource> |
TaskOperations.list() |
Modifier and Type | Method and Description |
---|---|
TaskDefinitionController |
DataFlowControllerAutoConfiguration.TaskEnabledConfiguration.taskDefinitionController(org.springframework.cloud.dataflow.aggregate.task.AggregateTaskExplorer taskExplorer,
TaskDefinitionRepository repository,
TaskSaveService taskSaveService,
TaskDeleteService taskDeleteService,
TaskDefinitionAssemblerProvider<? extends TaskDefinitionResource> taskDefinitionAssemblerProvider) |
Modifier and Type | Method and Description |
---|---|
TaskDefinitionResource |
TaskDefinitionController.display(String name,
boolean manifest)
Return a given task definition resource.
|
TaskDefinitionResource |
TaskDefinitionController.save(String name,
String dsl,
String description)
Register a task definition for future execution.
|
Modifier and Type | Method and Description |
---|---|
org.springframework.hateoas.PagedModel<? extends TaskDefinitionResource> |
TaskDefinitionController.list(org.springframework.data.domain.Pageable pageable,
String search,
String taskName,
String description,
boolean manifest,
String dslText,
org.springframework.data.web.PagedResourcesAssembler<TaskExecutionAwareTaskDefinition> assembler)
Return a page-able list of
TaskDefinitionResource defined tasks. |
Constructor and Description |
---|
TaskDefinitionController(org.springframework.cloud.dataflow.aggregate.task.AggregateTaskExplorer taskExplorer,
TaskDefinitionRepository repository,
TaskSaveService taskSaveService,
TaskDeleteService taskDeleteService,
TaskDefinitionAssemblerProvider<? extends TaskDefinitionResource> taskDefinitionAssemblerProvider)
Creates a
TaskDefinitionController that delegates
CRUD operations to the provided TaskDefinitionRepository
task status checks to the provided TaskLauncher
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultTaskDefinitionAssembler<R extends TaskDefinitionResource>
RepresentationModelAssembler implementation that converts
TaskDefinition s to TaskDefinitionResource s. |
interface |
TaskDefinitionAssemblerProvider<R extends TaskDefinitionResource>
The interface that returns the
RepresentationModelAssembler for any type which extends
TaskDefinitionResource . |
Copyright © 2024 Pivotal Software, Inc.. All rights reserved.