Examples of PrefixNarrowingModuleOptions


Examples of org.springframework.xd.module.options.PrefixNarrowingModuleOptions

      log.info("creating composite module " + compositeDescriptor);
    }

    List<Module> childrenModules = new ArrayList<Module>(children.size());
    for (ModuleDescriptor moduleDescriptor : children) {
      ModuleOptions moduleOptions = new PrefixNarrowingModuleOptions(options, moduleDescriptor.getModuleName());
      // due to parser results being reversed, we add each at index 0
      // todo: is it right to pass the composite deploymentProperties here?
      childrenModules
          .add(0, createAndConfigureModuleInstance(moduleDescriptor, moduleOptions, deploymentProperties));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.