diff --git a/spring-integration-java-dsl/src/main/java/org/springframework/integration/dsl/IntegrationFlowDefinition.java b/spring-integration-java-dsl/src/main/java/org/springframework/integration/dsl/IntegrationFlowDefinition.java
index 76e9087..f1bfeb5 100644
--- a/spring-integration-java-dsl/src/main/java/org/springframework/integration/dsl/IntegrationFlowDefinition.java
+++ b/spring-integration-java-dsl/src/main/java/org/springframework/integration/dsl/IntegrationFlowDefinition.java
@@ -212,8 +212,7 @@ public abstract class IntegrationFlowDefinition B filter(GenericSelector
genericSelector,
- Consumer endpointConfigurer) {
+ public B filter(GenericSelector
genericSelector, Consumer endpointConfigurer) {
return filter(null, genericSelector, endpointConfigurer);
}
@@ -227,13 +226,11 @@ public abstract class IntegrationFlowDefinition B handleWithAdapter(
- Function> adapters) {
+ public B handleWithAdapter(Function> adapters) {
return handleWithAdapter(adapters, null);
}
- public B handleWithAdapter(
- Function> adapters,
+ public B handleWithAdapter(Function> adapters,
Consumer> endpointConfigurer) {
return handle(adapters.apply(new Adapters()), endpointConfigurer);
}
@@ -290,8 +287,7 @@ public abstract class IntegrationFlowDefinition B handle(H messageHandler,
- Consumer> endpointConfigurer) {
+ public B handle(H messageHandler, Consumer> endpointConfigurer) {
Assert.notNull(messageHandler);
return this.register(new GenericEndpointSpec(messageHandler), endpointConfigurer);
}
@@ -529,8 +525,7 @@ public abstract class IntegrationFlowDefinition> routerConfigurer) {
+ public B route(String beanName, String method, Consumer> routerConfigurer) {
return this.route(beanName, method, routerConfigurer, null);
}
@@ -548,8 +543,7 @@ public abstract class IntegrationFlowDefinition> routerConfigurer,
+ public B route(String expression, Consumer> routerConfigurer,
Consumer> endpointConfigurer) {
return this.route(new ExpressionEvaluatingRouter(PARSER.parseExpression(expression)), routerConfigurer,
endpointConfigurer);
@@ -559,8 +553,7 @@ public abstract class IntegrationFlowDefinition B route(Function router,
- Consumer> routerConfigurer) {
+ public B route(Function router, Consumer> routerConfigurer) {
return this.route(null, router, routerConfigurer);
}
@@ -573,8 +566,7 @@ public abstract class IntegrationFlowDefinition B route(Function router,
- Consumer> routerConfigurer,
+ public B route(Function router, Consumer> routerConfigurer,
Consumer> endpointConfigurer) {
return route(null, router, routerConfigurer, endpointConfigurer);
}
@@ -588,8 +580,7 @@ public abstract class IntegrationFlowDefinition B route(R router,
- Consumer> routerConfigurer,
+ public B route(R router, Consumer> routerConfigurer,
Consumer> endpointConfigurer) {
Collection