Codota Logo
StreamAppDefinition$Builder.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.springframework.cloud.dataflow.core.StreamAppDefinition$Builder
constructor

Best Java code snippets using org.springframework.cloud.dataflow.core.StreamAppDefinition$Builder.<init> (Showing top 2 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Dictionary d =
  • Codota Iconnew Hashtable()
  • Codota IconBundle bundle;bundle.getHeaders()
  • Codota Iconnew Properties()
  • Smart code suggestions by Codota
}
origin: spring-cloud/spring-cloud-dataflow

for (int m = appNodes.size() - 1; m >= 0; m--) {
  AppNode appNode = appNodes.get(m);
  StreamAppDefinition.Builder builder = (Builder) new StreamAppDefinition.Builder()
      .setRegisteredAppName(appNode.getName()).setLabel(appNode.getLabelName());
  if (appNode.hasArguments()) {
origin: spring-cloud/spring-cloud-dataflow

/**
 * Create a new builder that is initialized with properties of the given
 * definition. Useful for "mutating" a definition by building a slightly different
 * copy.
 *
 * @param definition the StreamAppDefinition to create a new Builder instance with
 * stream name, registeredAppName, label, and properties populated
 * @return a StreamAppDefinition builder
 */
public static Builder from(StreamAppDefinition definition) {
  Builder builder = new Builder();
  builder.setStreamName(definition.getStreamName()).setRegisteredAppName(definition.getRegisteredAppName())
      .setApplicationType(definition.getApplicationType())
      .setLabel(definition.getName()).addProperties(definition.getProperties());
  return builder;
}
org.springframework.cloud.dataflow.coreStreamAppDefinition$Builder<init>

Popular methods of StreamAppDefinition$Builder

  • build
  • from
  • setProperties
  • addProperties
    Add the contents of the provided map to the map of app properties.
  • setApplicationType
    Set the ApplicationType for this application.
  • setLabel
    Set the app label.
  • setProperty
    Set an app property.
  • setRegisteredAppName
    Set the name of the app in the registry.
  • setStreamName
    Set the stream name this app belongs to.

Popular in Java

  • Running tasks concurrently on multiple threads
  • addToBackStack (FragmentTransaction)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Vector (java.util)
    The Vector class implements a growable array of objects. Like an array, it contains components that
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.This exception may include information for locating the er
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now