Class StreamDeploymentRequest

java.lang.Object
org.springframework.cloud.dataflow.server.stream.StreamDeploymentRequest

public class StreamDeploymentRequest extends Object
Deployment request for StreamDeployer implementations.
Author:
Mark Pollack, Ilayaperumal Gopinathan
  • Constructor Details

    • StreamDeploymentRequest

      public StreamDeploymentRequest(String streamName, String dslText, List<org.springframework.cloud.deployer.spi.core.AppDeploymentRequest> appDeploymentRequests, Map<String,String> streamDeployerProperties)
  • Method Details

    • getStreamName

      public String getStreamName()
      Return the name of this stream.
      Returns:
      stream name
    • getDslText

      public String getDslText()
      Return the DSL definition for this stream.
      Returns:
      stream definition DSL
    • getAppDeploymentRequests

      public List<org.springframework.cloud.deployer.spi.core.AppDeploymentRequest> getAppDeploymentRequests()
      Return the list of AppDeploymentRequest for the stream.
      Returns:
      list of app requests
    • getStreamDeployerProperties

      public Map<String,String> getStreamDeployerProperties()
      Return the Stream Deployer properties.
      Returns:
      the map of stream deployer properties specific to StreamDeployer implementations.