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

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/remoting  WebRemote.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/remoting/WebRemote.java
  
  Index: WebRemote.java
  ===================================================================
  package org.jboss.seam.annotations.remoting;
  
  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;
  
  /**
   * Indicates that the annotated method is accessible via the remoting framework.
   *
   * @author Shane Bryzak
   */
  @Target(METHOD)
  @Documented
  @Retention(RUNTIME)
  public @interface WebRemote 
  {
    /**
     * Specifies a list of paths to exclude from the result's object graph
     */
    String[] exclude() default {};
  }
  
  
  



More information about the jboss-cvs-commits mailing list