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

fun.langel.cql.annotation.DataSource Maven / Gradle / Ivy

The newest version!
package fun.langel.cql.annotation;

import java.lang.annotation.*;

/**
 * @author [email protected](GuHan)
 * @since 2022/4/28 11:16
 **/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
@Inherited
public @interface DataSource {

    String name() default "";

    Class klass() default fun.langel.cql.datasource.DataSource.class;

    int priority() default 0;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy