[jboss-cvs] jboss-seam/src/remoting/org/jboss/seam/remoting/messaging ...

Gavin King gavin.king at jboss.com
Wed Jun 20 13:47:21 EDT 2007


  User: gavin   
  Date: 07/06/20 13:47:21

  Modified:    src/remoting/org/jboss/seam/remoting/messaging 
                        SubscriptionRegistry.java
  Log:
  refactored interception annotations
  
  Revision  Changes    Path
  1.2       +4 -5      jboss-seam/src/remoting/org/jboss/seam/remoting/messaging/SubscriptionRegistry.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SubscriptionRegistry.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/remoting/org/jboss/seam/remoting/messaging/SubscriptionRegistry.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- SubscriptionRegistry.java	27 Feb 2007 22:15:24 -0000	1.1
  +++ SubscriptionRegistry.java	20 Jun 2007 17:47:21 -0000	1.2
  @@ -1,6 +1,5 @@
   package org.jboss.seam.remoting.messaging;
   
  -import static org.jboss.seam.InterceptionType.NEVER;
   import static org.jboss.seam.annotations.Install.BUILT_IN;
   
   import java.util.HashMap;
  @@ -13,16 +12,16 @@
   import javax.jms.JMSException;
   import javax.jms.TopicConnection;
   
  -import org.jboss.seam.log.LogProvider;
  -import org.jboss.seam.log.Logging;
   import org.jboss.seam.Component;
   import org.jboss.seam.ScopeType;
   import org.jboss.seam.annotations.Install;
  -import org.jboss.seam.annotations.Intercept;
   import org.jboss.seam.annotations.Name;
   import org.jboss.seam.annotations.Scope;
  +import org.jboss.seam.annotations.intercept.BypassInterceptors;
   import org.jboss.seam.contexts.Context;
   import org.jboss.seam.contexts.Contexts;
  +import org.jboss.seam.log.LogProvider;
  +import org.jboss.seam.log.Logging;
   import org.jboss.seam.util.Reflections;
   
   /**
  @@ -30,7 +29,7 @@
    * @author Shane Bryzak
    */
   @Scope(ScopeType.APPLICATION)
  - at Intercept(NEVER)
  + at BypassInterceptors
   @Name("org.jboss.seam.remoting.messaging.subscriptionRegistry")
   @Install(value = false, precedence=BUILT_IN)
   public class SubscriptionRegistry
  
  
  



More information about the jboss-cvs-commits mailing list