Uses of Class
org.springframework.cloud.dataflow.rest.resource.StreamDefinitionResource
Packages that use StreamDefinitionResource
Package
Description
Defines the operations of the Spring Cloud Data Flow REST Client.
Spring Cloud Data Flow Server configuration classes.
Spring Cloud Data Flow Server Controllers.
-
Uses of StreamDefinitionResource in org.springframework.cloud.dataflow.rest.client
Methods in org.springframework.cloud.dataflow.rest.client that return StreamDefinitionResourceModifier and TypeMethodDescriptionStreamOperations.createStream
(String name, String definition, String description, boolean deploy) Create a new stream, optionally deploying it.StreamTemplate.createStream
(String name, String definition, String description, boolean deploy) StreamOperations.getStreamDefinition
(String streamName) Queries the server for the stream definition.StreamTemplate.getStreamDefinition
(String streamName) Methods in org.springframework.cloud.dataflow.rest.client that return types with arguments of type StreamDefinitionResourceModifier and TypeMethodDescriptionorg.springframework.hateoas.PagedModel<StreamDefinitionResource>
StreamOperations.list()
-
Uses of StreamDefinitionResource in org.springframework.cloud.dataflow.server.config
Method parameters in org.springframework.cloud.dataflow.server.config with type arguments of type StreamDefinitionResourceModifier and TypeMethodDescriptionDataFlowControllerAutoConfiguration.StreamEnabledConfiguration.streamDefinitionController
(StreamService streamService, StreamDefinitionService streamDefinitionService, AppRegistryService appRegistryService, StreamDefinitionAssemblerProvider<? extends StreamDefinitionResource> streamDefinitionAssemblerProvider, AppRegistrationAssemblerProvider<? extends AppRegistrationResource> appRegistrationAssemblerProvider) -
Uses of StreamDefinitionResource in org.springframework.cloud.dataflow.server.controller
Methods in org.springframework.cloud.dataflow.server.controller that return StreamDefinitionResourceModifier and TypeMethodDescriptionReturn a given stream definition resource.Create a new stream and optionally deploy it.StreamDefinitionController.saveWithDeployProps
(String name, String dsl, String description, boolean deploy, Map<String, String> deploymentProperties) Create a new stream and optionally deploy it.Methods in org.springframework.cloud.dataflow.server.controller that return types with arguments of type StreamDefinitionResourceModifier and TypeMethodDescriptionorg.springframework.hateoas.PagedModel<? extends StreamDefinitionResource>
StreamDefinitionController.list
(org.springframework.data.domain.Pageable pageable, String search, org.springframework.data.web.PagedResourcesAssembler<StreamDefinition> assembler) Return a page-able list ofStreamDefinitionResource
defined streams.org.springframework.hateoas.PagedModel<? extends StreamDefinitionResource>
StreamDefinitionController.listRelated
(org.springframework.data.domain.Pageable pageable, String name, boolean nested, org.springframework.data.web.PagedResourcesAssembler<StreamDefinition> assembler) Return a list of related stream definition resources based on the given stream name.Constructor parameters in org.springframework.cloud.dataflow.server.controller with type arguments of type StreamDefinitionResourceModifierConstructorDescriptionStreamDefinitionController
(StreamService streamService, StreamDefinitionService streamDefinitionService, AppRegistryService appRegistryService, StreamDefinitionAssemblerProvider<? extends StreamDefinitionResource> streamDefinitionAssemblerProvider, AppRegistrationAssemblerProvider<? extends AppRegistrationResource> appRegistrationAssemblerProvider) Create aStreamDefinitionController
that delegates toStreamService
. -
Uses of StreamDefinitionResource in org.springframework.cloud.dataflow.server.controller.assembler
Classes in org.springframework.cloud.dataflow.server.controller.assembler with type parameters of type StreamDefinitionResourceModifier and TypeClassDescriptionclass
RepresentationModelAssembler
implementation that convertsStreamDefinition
s toStreamDefinitionResource
s.interface
The interface that returns theRepresentationModelAssembler
for any type which extendsStreamDefinitionResource
.