@Documented
@Inherited
@Retention(value=RUNTIME)
@Target(value=PARAMETER)
public @interface Param
Tells the generator to generate a method parameter with the supplied name (instead
of using the default "arg(n)" pattern).
Sample usage: public String findSomethingById(@Param("id") Long id);
- Author:
- Franck WOLFF