org.osgl.inject.annotation.Provided Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of genie Show documentation
Show all versions of genie Show documentation
A JSR330 style dependency injection solution
package org.osgl.inject.annotation;
import java.lang.annotation.*;
/**
* Used to mark a parameter should be injected from {@link org.osgl.inject.Injector}.
*
* The whole reason for this annotation to be exists is because {@link javax.inject.Inject}
* annotation does not apply to parameters
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.PARAMETER)
public @interface Provided {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy