@Target(value=METHOD) @Retention(value=RUNTIME) @Documented public @interface Lookup
The method can have one or more parameters. With the Param
annotation
the parameters can be 'named'. This makes it possible to reference the parameter
by its name instead of its position. If one parameter is annotated with the Param
parameter then all the parameters need to be annotated. If no parameters are annotated
then the parameters need to be referenced by there position, starting by zero.
This annotation should only be used on classes that
are annotated with the Dao
annotation.
public abstract String name
Copyright © 2020. All rights reserved.