Package org.springframework.xd.module.core

Examples of org.springframework.xd.module.core.ResourceConfiguredModule.initialize()


        .setIndex(0)
        .build();

    Module module = new ResourceConfiguredModule(moduleDescriptor,
        new ModuleDeploymentProperties());
    module.initialize();
    assertEquals(0, module.getProperties().size());
    plugin.preProcessModule(module);
    assertEquals(1, module.getProperties().size());
    assertEquals("foo", module.getProperties().getProperty(XD_STREAM_NAME_KEY));
  }
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.