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

org.n3r.eql.eqler.annotations.EqlerConfig Maven / Gradle / Ivy

There is a newer version: 0.1.19
Show newest version
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 eql() default Eql.class;

    String value() default "DEFAULT";

    boolean createClassFileForDiagnose() default false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy