@Retention(value=RUNTIME)
@Target(value=PARAMETER)
public @interface PathParam
This annotation indicates that the value of a method parameter must be extracted from a path
parameter. It requires the name of the path parameter we want to use (ex: @PathName("bookId")).
- Author:
- andrea del bene