From 5e5e5438bed653a8c2c54b461a43c035e74d74a6 Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Tue, 20 May 2008 15:24:13 +0000 Subject: [PATCH] Removed 'property' and 'attribute' from the @Router annotation now that the @HeaderProperty and @HeaderAttribute parameter annotations are available. --- .../integration/annotation/Router.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/spring-integration-core/src/main/java/org/springframework/integration/annotation/Router.java b/spring-integration-core/src/main/java/org/springframework/integration/annotation/Router.java index 6805971bca..0c8b3ef4e7 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/annotation/Router.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/annotation/Router.java @@ -36,16 +36,4 @@ import java.lang.annotation.Target; @Handler public @interface Router { - /** - * String value representing the name of the property that should be passed - * into the router method. This and 'attribute' should not both be provided. - */ - String property() default ""; - - /** - * String value representing the name of the attribute that should be passed - * into the router method. This and 'property' should not both be provided. - */ - String attribute() default ""; - }