com.google.inject
Annotation Type ScopeAnnotation


@Target(value=ANNOTATION_TYPE)
@Retention(value=RUNTIME)
public @interface ScopeAnnotation

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 {}
 

Author:
[email protected] (Bob Lee)



Copyright © 2006-2013 Google, Inc.. All Rights Reserved.