[jboss-cvs] jboss-seam/src/main/org/jboss/seam/annotations ...

Gavin King gavin.king at jboss.com
Wed Nov 8 18:25:06 EST 2006


  User: gavin   
  Date: 06/11/08 18:25:06

  Added:       src/main/org/jboss/seam/annotations  Interceptors.java
  Log:
  oops
  
  Revision  Changes    Path
  1.1      date: 2006/11/08 23:25:06;  author: gavin;  state: Exp;jboss-seam/src/main/org/jboss/seam/annotations/Interceptors.java
  
  Index: Interceptors.java
  ===================================================================
  //$Id: Interceptors.java,v 1.1 2006/11/08 23:25:06 gavin Exp $
  package org.jboss.seam.annotations;
  
  import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
  import static java.lang.annotation.RetentionPolicy.RUNTIME;
  
  import java.lang.annotation.Documented;
  import java.lang.annotation.Retention;
  import java.lang.annotation.Target;
  
  /**
   * Synonym for javax.interceptors.Interceptors, for
   * use in a pre Java EE 5 environment. Note that this
   * may only be used as a meta-annotation.
   * 
   * @author Gavin King
   */
  @Target(ANNOTATION_TYPE)
  @Retention(RUNTIME)
  @Documented
  public @interface Interceptors {
     Class[] value();
  }
  
  
  



More information about the jboss-cvs-commits mailing list