Package org.springframework.xd.dirt.core

Examples of org.springframework.xd.dirt.core.BaseDefinition


  // LookupEnvironment implementation

  @Override
  public StreamNode lookupStream(String name) {
    if (this.repository != null) {
      BaseDefinition baseDefinition = repository.findOne(name);
      if (baseDefinition != null) {
        StreamNode streamNode = new StreamConfigParser(repository).parse(baseDefinition.getDefinition());
        return streamNode;
      }
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of org.springframework.xd.dirt.core.BaseDefinition

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.