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

colesico.framework.config.SourceOption Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
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