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

Gavin King gavin.king at jboss.com
Mon Oct 9 04:30:27 EDT 2006


  User: gavin   
  Date: 06/10/09 04:30:27

  Added:       src/main/org/jboss/seam/annotations  Asynchronous.java
  Log:
  JBSEAM-377, @Asynchronous and friends
  
  Revision  Changes    Path
  1.1      date: 2006/10/09 08:30:27;  author: gavin;  state: Exp;jboss-seam/src/main/org/jboss/seam/annotations/Asynchronous.java
  
  Index: Asynchronous.java
  ===================================================================
  package org.jboss.seam.annotations;
  
  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;
  
  @Target(METHOD)
  @Retention(RUNTIME)
  @Documented
  public @interface Asynchronous {}
  
  
  



More information about the jboss-cvs-commits mailing list