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

com.github.thorbenkuck.di.annotations.properties.PropertySource Maven / Gradle / Ivy

The newest version!
package com.github.thorbenkuck.di.annotations.properties;

import java.lang.annotation.*;

@Retention(RetentionPolicy.CLASS)
@Target(ElementType.TYPE)
@Inherited
public @interface PropertySource {

    String value();

    Source source() default Source.CLASSPATH;

    enum Source {
        CLASSPATH
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy