From 1d03acbc31e5df15230b825cf37e6450cbbdc132 Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Fri, 14 Sep 2012 12:21:51 -0400 Subject: [PATCH] INT-2750 Fix GatewayProxyFactoryBean Javadoc Default serviceInterface is RequestReplyExchanger. --- .../integration/gateway/GatewayProxyFactoryBean.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-integration-core/src/main/java/org/springframework/integration/gateway/GatewayProxyFactoryBean.java b/spring-integration-core/src/main/java/org/springframework/integration/gateway/GatewayProxyFactoryBean.java index 13a45b190f..5a36590be8 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/gateway/GatewayProxyFactoryBean.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/gateway/GatewayProxyFactoryBean.java @@ -121,7 +121,7 @@ public class GatewayProxyFactoryBean extends AbstractEndpoint implements Trackab /** * Set the interface class that the generated proxy should implement. - * If none is provided explicitly, the default is MessageHandler. + * If none is provided explicitly, the default is {@link RequestReplyExchanger}. */ public void setServiceInterface(Class serviceInterface) { Assert.notNull(serviceInterface, "'serviceInterface' must not be null");