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

Gavin King gavin.king at jboss.com
Mon Jun 25 18:28:50 EDT 2007


  User: gavin   
  Date: 07/06/25 18:28:50

  Added:       src/main/org/jboss/seam/annotations/intercept 
                        AroundInvoke.java
  Log:
  move annotations to subpackages
  
  Revision  Changes    Path
  1.1      date: 2007/06/25 22:28:50;  author: gavin;  state: Exp;jboss-seam/src/main/org/jboss/seam/annotations/intercept/AroundInvoke.java
  
  Index: AroundInvoke.java
  ===================================================================
  //$Id: AroundInvoke.java,v 1.1 2007/06/25 22:28:50 gavin Exp $
  package org.jboss.seam.annotations.intercept;
  
  import static java.lang.annotation.ElementType.METHOD;
  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.AroundInvoke, for
   * use in a pre Java EE 5 environment.
   * 
   * @author Gavin King
   */
  @Target(METHOD)
  @Retention(RUNTIME)
  @Documented
  public @interface AroundInvoke {}
  
  
  



More information about the jboss-cvs-commits mailing list