[jboss-cvs] jboss-portal/forums/src/main/org/jboss/portlet/forums/interceptors ...

Julien Viet julien at jboss.com
Sun Aug 20 19:17:39 EDT 2006


  User: julien  
  Date: 06/08/20 19:17:39

  Modified:    forums/src/main/org/jboss/portlet/forums/interceptors   
                        FloodControlInterceptor.java IndexInterceptor.java
                        NotificationInterceptor.java
  Log:
  move command framework for forums into the forums module
  
  Revision  Changes    Path
  1.9       +4 -4      jboss-portal/forums/src/main/org/jboss/portlet/forums/interceptors/FloodControlInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: FloodControlInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/interceptors/FloodControlInterceptor.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- FloodControlInterceptor.java	22 Mar 2006 14:42:54 -0000	1.8
  +++ FloodControlInterceptor.java	20 Aug 2006 23:17:39 -0000	1.9
  @@ -12,10 +12,10 @@
   
   import java.util.Date;
   
  -import org.jboss.portal.common.command.Command;
  -import org.jboss.portal.common.command.CommandException;
  -import org.jboss.portal.common.command.filter.AbstractCommandFilter;
  -import org.jboss.portal.common.command.result.Result;
  +import org.jboss.portlet.forums.command.Command;
  +import org.jboss.portlet.forums.command.CommandException;
  +import org.jboss.portlet.forums.command.filter.AbstractCommandFilter;
  +import org.jboss.portlet.forums.command.result.Result;
   import org.jboss.portal.identity.User;
   import org.jboss.portal.core.modules.ModuleException;
   import org.jboss.portlet.forums.commands.CommandConstants;
  
  
  
  1.6       +5 -5      jboss-portal/forums/src/main/org/jboss/portlet/forums/interceptors/IndexInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: IndexInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/interceptors/IndexInterceptor.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- IndexInterceptor.java	3 Oct 2005 20:55:25 -0000	1.5
  +++ IndexInterceptor.java	20 Aug 2006 23:17:39 -0000	1.6
  @@ -10,14 +10,14 @@
    *****************************************/
   package org.jboss.portlet.forums.interceptors;
   
  -import org.jboss.portal.common.command.Command;
  -import org.jboss.portal.common.command.CommandException;
  -import org.jboss.portal.common.command.filter.AbstractCommandFilter;
  -import org.jboss.portal.common.command.result.Result;
  +import org.jboss.portlet.forums.command.Command;
  +import org.jboss.portlet.forums.command.CommandException;
  +import org.jboss.portlet.forums.command.filter.AbstractCommandFilter;
  +import org.jboss.portlet.forums.command.result.Result;
   
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.5 $
  + * @version $Revision: 1.6 $
    */
   public class IndexInterceptor
      extends AbstractCommandFilter //   implements IndexConstants
  
  
  
  1.21      +6 -6      jboss-portal/forums/src/main/org/jboss/portlet/forums/interceptors/NotificationInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: NotificationInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/interceptors/NotificationInterceptor.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -b -r1.20 -r1.21
  --- NotificationInterceptor.java	17 Aug 2006 05:06:39 -0000	1.20
  +++ NotificationInterceptor.java	20 Aug 2006 23:17:39 -0000	1.21
  @@ -14,10 +14,11 @@
   import EDU.oswego.cs.dl.util.concurrent.QueuedExecutor;
   import org.jboss.portal.api.node.PortalNode;
   import org.jboss.portal.api.node.PortalNodeURL;
  -import org.jboss.portal.common.command.Command;
  -import org.jboss.portal.common.command.CommandException;
  -import org.jboss.portal.common.command.filter.AbstractCommandFilter;
  -import org.jboss.portal.common.command.result.Result;
  +import org.jboss.portlet.forums.command.Command;
  +import org.jboss.portlet.forums.command.CommandException;
  +import org.jboss.portlet.forums.command.ActionCommand;
  +import org.jboss.portlet.forums.command.filter.AbstractCommandFilter;
  +import org.jboss.portlet.forums.command.result.Result;
   import org.jboss.portal.common.transaction.Transactions;
   import org.jboss.portal.core.modules.MailModule;
   import org.jboss.portal.core.modules.ModuleConstants;
  @@ -26,7 +27,6 @@
   import org.jboss.portal.identity.User;
   import org.jboss.portlet.JBossActionRequest;
   import org.jboss.portlet.JBossActionResponse;
  -import org.jboss.portlet.command.ActionCommand;
   import org.jboss.portlet.forums.ForumsConstants;
   import org.jboss.portlet.forums.ForumsModule;
   import org.jboss.portlet.forums.ForumsPortlet;
  @@ -55,7 +55,7 @@
   
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.20 $
  + * @version $Revision: 1.21 $
    */
   public class NotificationInterceptor
      extends AbstractCommandFilter
  
  
  



More information about the jboss-cvs-commits mailing list