Removed 'property' and 'attribute' from the @Router annotation now that the @HeaderProperty and @HeaderAttribute parameter annotations are available.

This commit is contained in:
Mark Fisher
2008-05-20 15:24:13 +00:00
parent 3b9cd481ea
commit 5e5e5438be

View File

@@ -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 "";
}