public abstract @interface

ScopeAnnotation

implements Annotation
com.google.inject.ScopeAnnotation

Class Overview

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 @Retention(RUNTIME). For example:

   @Retention(RUNTIME)
   @Target(TYPE, METHOD)
   @ScopeAnnotation
   public @interface SessionScoped {}
 

Summary

[Expand]
Inherited Methods
From interface java.lang.annotation.Annotation