com.jaregu.database.queries.ext.dalesbred.FindAll Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of queries Show documentation
Show all versions of queries Show documentation
Java based SQL templating project. Store your queries in *.sql files and build queries for execution. Supports simple expressions and conditional clauses and interface proxying for java-sql bridge.
package com.jaregu.database.queries.ext.dalesbred;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import com.jaregu.database.queries.proxy.Mapper;
@Target({ FIELD, METHOD })
@Retention(RUNTIME)
@Mapper
public @interface FindAll {
/**
* Row class
*
* @return
*/
Class> value();
}