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

org.osgl.inject.annotation.Provided Maven / Gradle / Ivy

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