All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jaregu.database.queries.proxy.QueryConverterFactory Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.4.1
Show newest version
package com.jaregu.database.queries.proxy;

import java.lang.annotation.Annotation;

import com.jaregu.database.queries.Queries;

/**
 * {@link QueryConverter} factory class. Used once per each annotated interface
 * method proxied by {@link Queries#proxy(Class)}
 *
 */
@FunctionalInterface
public interface QueryConverterFactory {

	QueryConverter get(Annotation annotation);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy