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

com.wizzardo.http.framework.di.Injectable Maven / Gradle / Ivy

package com.wizzardo.http.framework.di;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Created by wizzardo on 27.04.15.
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Injectable {
    DependencyScope scope() default DependencyScope.SINGLETON;

    Class forge() default DependencyForge.class;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy