Package com.google.inject.persist.finder
Annotation Type Finder
-
@Target(METHOD) @Retention(RUNTIME) public @interface Finder
Marks a method stub as a dynamic finder. The method is intercepted and replaced with the specified JPAQL query. Provides result auto-boxing and automatic parameter binding.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.String
namedQuery
Returns the configured named query's name.java.lang.String
query
Returns the configured query string.java.lang.Class<? extends java.util.Collection>
returnAs
Returns the configured autoboxing collection class.
-
-
-
-
returnAs
java.lang.Class<? extends java.util.Collection> returnAs
Returns the configured autoboxing collection class. Use this clause to specify a collection impl to autobox result lists into. The impl must have a default no-arg constructor and be a subclass ofjava.util.Collection
.- Default:
- java.util.Collection.class
-
-