Annotation Interface PathRemainder


@Target(PARAMETER) @Retention(RUNTIME) public @interface PathRemainder
Annotates a method parameter. Should be used in Controllers and Filters.

Parameter type must be String, and will be set to the remainder of a default path that is not the path prefix for the entry point.

For example, if the entry path is "/api/files/*" and the request is "/api/files/pictures/house.jpg", The incoming value is /pictures/house.jpg

Author:
Matthew Tropiano
See Also: