Remove support for Integration DSL (milestone only)

This commit is contained in:
Dave Syer
2013-12-30 07:39:36 +00:00
parent d39a8360b7
commit 5d8e58d12c
3 changed files with 0 additions and 29 deletions

View File

@@ -1,17 +0,0 @@
package org.test
@Component
@EnableIntegrationPatterns
class SpringIntegrationExample implements CommandLineRunner {
@Bean
MessageFlow flow(ApplicationContext context) {
def builder = new IntegrationBuilder(context)
builder.messageFlow { transform {"Hello, $it!"} }
}
@Override
void run(String... args) {
print flow().sendAndReceive("World")
}
}