colesico.framework.config.SourceOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of colesico-config Show documentation
Show all versions of colesico-config Show documentation
Colesico framework configuration support module
package colesico.framework.config;
import java.lang.annotation.*;
/**
* Configuration source parameter (configuration source connection param, self configuration , e.t.c)
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
@Documented
@Repeatable(SourceOptions.class)
public @interface SourceOption {
/**
* Parameter name
*/
String name();
/**
* Parameter value
*/
String value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy