org.n3r.eql.eqler.annotations.EqlerConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eql Show documentation
Show all versions of eql Show documentation
a simple wrapper framework for jdbc to seperate sql and java code
package org.n3r.eql.eqler.annotations;
import org.n3r.eql.Eql;
import java.lang.annotation.*;
@Documented
@Inherited
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface EqlerConfig {
Class extends Eql> eql() default Eql.class;
String value() default "DEFAULT";
boolean createClassFileForDiagnose() default false;
}