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

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


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

  Modified:    forums/src/main/org/jboss/portlet/forums/commands       
                        AbstractCommand.java BBAttributeType.java
                        CommandConstants.java CompositeCommand.java
                        CompositeResult.java SimpleResultType.java
                        ValidationException.java
  Log:
  move command framework for forums into the forums module
  
  Revision  Changes    Path
  1.4       +4 -5      jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/AbstractCommand.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: AbstractCommand.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/AbstractCommand.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- AbstractCommand.java	3 Oct 2005 20:55:24 -0000	1.3
  +++ AbstractCommand.java	20 Aug 2006 23:17:38 -0000	1.4
  @@ -11,16 +11,15 @@
   package org.jboss.portlet.forums.commands;
   
   import org.apache.log4j.Logger;
  -import org.jboss.portal.common.command.Command;
  -import org.jboss.portal.common.command.Configurator;
  -import org.jboss.portal.common.command.ReflectedConfigurator;
  -import org.jboss.portlet.command.ActionCommand;
  +import org.jboss.portlet.forums.command.Configurator;
  +import org.jboss.portlet.forums.command.ReflectedConfigurator;
  +import org.jboss.portlet.forums.command.ActionCommand;
   import org.jboss.portlet.JBossActionRequest;
   import org.jboss.portlet.JBossActionResponse;
   
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
    */
   public abstract class AbstractCommand
      extends ActionCommand
  
  
  
  1.3       +2 -2      jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/BBAttributeType.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: BBAttributeType.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/BBAttributeType.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- BBAttributeType.java	3 Oct 2005 20:55:24 -0000	1.2
  +++ BBAttributeType.java	20 Aug 2006 23:17:38 -0000	1.3
  @@ -10,11 +10,11 @@
    *****************************************/
   package org.jboss.portlet.forums.commands;
   
  -import org.jboss.portal.common.command.AttributeType;
  +import org.jboss.portlet.forums.command.AttributeType;
   
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public class BBAttributeType
      extends AttributeType
  
  
  
  1.3       +4 -4      jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/CommandConstants.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CommandConstants.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/CommandConstants.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- CommandConstants.java	3 Oct 2005 20:55:24 -0000	1.2
  +++ CommandConstants.java	20 Aug 2006 23:17:38 -0000	1.3
  @@ -10,13 +10,13 @@
    *****************************************/
   package org.jboss.portlet.forums.commands;
   
  -import org.jboss.portal.common.command.result.Result;
  -import org.jboss.portal.common.command.result.ResultType;
  +import org.jboss.portlet.forums.command.result.Result;
  +import org.jboss.portlet.forums.command.result.ResultType;
   
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
    * @author <a href="mailto:boleslaw.dawidowicz at jboss.com">Boleslaw Dawidowicz</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public interface CommandConstants
   {
  @@ -24,7 +24,7 @@
       * DOCUMENT_ME
       *
       * @author $author$
  -    * @version $Revision: 1.2 $
  +    * @version $Revision: 1.3 $
       */
      public class ImmutableResult
         extends ResultType
  
  
  
  1.3       +5 -5      jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/CompositeCommand.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CompositeCommand.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/CompositeCommand.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- CompositeCommand.java	15 Jan 2005 17:57:30 -0000	1.2
  +++ CompositeCommand.java	20 Aug 2006 23:17:38 -0000	1.3
  @@ -13,14 +13,14 @@
   import java.util.Iterator;
   import java.util.LinkedList;
   
  -import org.jboss.portal.common.command.Command;
  -import org.jboss.portal.common.command.Configurator;
  -import org.jboss.portal.common.command.EmptyConfigurator;
  -import org.jboss.portal.common.command.result.Result;
  +import org.jboss.portlet.forums.command.Command;
  +import org.jboss.portlet.forums.command.Configurator;
  +import org.jboss.portlet.forums.command.EmptyConfigurator;
  +import org.jboss.portlet.forums.command.result.Result;
   
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public class CompositeCommand
      implements Command
  
  
  
  1.3       +3 -3      jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/CompositeResult.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CompositeResult.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/CompositeResult.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- CompositeResult.java	15 Jan 2005 17:57:30 -0000	1.2
  +++ CompositeResult.java	20 Aug 2006 23:17:38 -0000	1.3
  @@ -14,12 +14,12 @@
   import java.util.LinkedList;
   import java.util.List;
   
  -import org.jboss.portal.common.command.result.Result;
  -import org.jboss.portal.common.command.result.ResultType;
  +import org.jboss.portlet.forums.command.result.Result;
  +import org.jboss.portlet.forums.command.result.ResultType;
   
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public class CompositeResult
      implements Result
  
  
  
  1.3       +2 -2      jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/SimpleResultType.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SimpleResultType.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/SimpleResultType.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- SimpleResultType.java	3 Oct 2005 20:55:24 -0000	1.2
  +++ SimpleResultType.java	20 Aug 2006 23:17:38 -0000	1.3
  @@ -10,11 +10,11 @@
    *****************************************/
   package org.jboss.portlet.forums.commands;
   
  -import org.jboss.portal.common.command.result.ResultType;
  +import org.jboss.portlet.forums.command.result.ResultType;
   
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public class SimpleResultType
      extends ResultType
  
  
  
  1.2       +2 -2      jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/ValidationException.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ValidationException.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/ValidationException.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ValidationException.java	14 Jan 2005 23:12:44 -0000	1.1
  +++ ValidationException.java	20 Aug 2006 23:17:38 -0000	1.2
  @@ -10,11 +10,11 @@
    *****************************************/
   package org.jboss.portlet.forums.commands;
   
  -import org.jboss.portal.common.command.result.Result;
  +import org.jboss.portlet.forums.command.result.Result;
   
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
    */
   public class ValidationException
      extends Exception
  
  
  



More information about the jboss-cvs-commits mailing list