org.granite.messaging.service.annotations
Annotation Type Param


@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

Required Element Summary
 String value
           
 

Element Detail

value

public abstract String value