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

Gavin King gavin.king at jboss.com
Fri Feb 16 13:41:13 EST 2007


  User: gavin   
  Date: 07/02/16 13:41:13

  Modified:    src/main/org/jboss/seam/interceptors 
                        SecurityInterceptor.java
  Log:
  lets try making it a client-side interceptor
  
  Revision  Changes    Path
  1.30      +2 -2      jboss-seam/src/main/org/jboss/seam/interceptors/SecurityInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SecurityInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/SecurityInterceptor.java,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -b -r1.29 -r1.30
  --- SecurityInterceptor.java	16 Feb 2007 16:58:56 -0000	1.29
  +++ SecurityInterceptor.java	16 Feb 2007 18:41:13 -0000	1.30
  @@ -2,6 +2,7 @@
   
   import java.lang.reflect.Method;
   
  +import org.jboss.seam.InterceptorType;
   import org.jboss.seam.annotations.AroundInvoke;
   import org.jboss.seam.annotations.Interceptor;
   import org.jboss.seam.annotations.security.Restrict;
  @@ -14,8 +15,7 @@
    * 
    * @author Shane Bryzak
    */
  - at Interceptor(stateless = true, around = ValidationInterceptor.class, 
  -         within = BijectionInterceptor.class)
  + at Interceptor(stateless = true, type=InterceptorType.CLIENT)
   public class SecurityInterceptor extends AbstractInterceptor
   {
      private static final long serialVersionUID = -6567750187000766925L;
  
  
  



More information about the jboss-cvs-commits mailing list