
com.github.thorbenkuck.di.annotations.properties.Property Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wire-di-annotations Show documentation
Show all versions of wire-di-annotations Show documentation
Easy and simple di using annotation processors
The newest version!
package com.github.thorbenkuck.di.annotations.properties;
import java.lang.annotation.*;
@Retention(RetentionPolicy.CLASS)
@Target(ElementType.PARAMETER)
@Documented
@Inherited
public @interface Property {
/**
* The name of the property, as maintained in the WiredTypes.
*/
String value();
String defaultValue() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy