es.indaba.sqld.annotations.cdi.api.QueryRepositories Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql-definition-support-cdi Show documentation
Show all versions of sql-definition-support-cdi Show documentation
A CDI extension SQL queries externalization
The newest version!
package es.indaba.sqld.annotations.cdi.api;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Inherited
@Documented
@Retention(RUNTIME)
@Target({TYPE, METHOD})
public @interface QueryRepositories {
QueryRepository[] value();
}