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

com.google.inject.ScopeAnnotation Maven / Gradle / Ivy

There is a newer version: 4.4.2.0
Show newest version
package com.google.inject;

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

import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * Annotates annotations which are used for scoping. Only one such annotation
 * may apply to a single implementation class. You must also annotate scope
 * annotations with {@code @Retention(RUNTIME)}. For example:
 *
 * 
 *   {@code @}Retention(RUNTIME)
 *   {@code @}Target(TYPE, METHOD)
 *   {@code @}ScopeAnnotation
 *   public {@code @}interface SessionScoped {}
 * 
*/ @Target(ANNOTATION_TYPE) @Retention(RUNTIME) public @interface ScopeAnnotation { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy