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

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/post        
                        DeletePollCommand.java DeletePostCommand.java
                        EditPostCommand.java ForumCommand.java
                        NewTopicCommand.java ReplyCommand.java
                        RepostCommand.java VoteTopicCommand.java
  Log:
  move command framework for forums into the forums module
  
  Revision  Changes    Path
  1.6       +2 -2      jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/post/DeletePollCommand.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: DeletePollCommand.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/post/DeletePollCommand.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- DeletePollCommand.java	8 Oct 2005 22:12:52 -0000	1.5
  +++ DeletePollCommand.java	20 Aug 2006 23:17:38 -0000	1.6
  @@ -11,7 +11,7 @@
   package org.jboss.portlet.forums.commands.post;
   
   
  -import org.jboss.portal.common.command.result.Result;
  +import org.jboss.portlet.forums.command.result.Result;
   import org.jboss.portal.core.modules.ModuleException;
   import org.jboss.portlet.forums.commands.ValidationException;
   import org.jboss.portlet.forums.model.AuthType;
  @@ -20,7 +20,7 @@
   
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.5 $
  + * @version $Revision: 1.6 $
    */
   public class DeletePollCommand
      extends PostCommand
  
  
  
  1.8       +3 -3      jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/post/DeletePostCommand.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: DeletePostCommand.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/post/DeletePostCommand.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- DeletePostCommand.java	8 Oct 2005 22:12:52 -0000	1.7
  +++ DeletePostCommand.java	20 Aug 2006 23:17:38 -0000	1.8
  @@ -11,8 +11,8 @@
   package org.jboss.portlet.forums.commands.post;
   
   
  -import org.jboss.portal.common.command.result.Result;
  -import org.jboss.portal.common.command.result.SimpleResult;
  +import org.jboss.portlet.forums.command.result.Result;
  +import org.jboss.portlet.forums.command.result.SimpleResult;
   import org.jboss.portal.core.modules.ModuleException;
   import org.jboss.portlet.forums.commands.ValidationException;
   import org.jboss.portlet.forums.model.Post;
  @@ -23,7 +23,7 @@
   /**
    * @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.7 $
  + * @version $Revision: 1.8 $
    */
   public class DeletePostCommand
      extends PostCommand
  
  
  
  1.8       +2 -2      jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/post/EditPostCommand.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: EditPostCommand.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/post/EditPostCommand.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- EditPostCommand.java	5 Nov 2005 15:02:51 -0000	1.7
  +++ EditPostCommand.java	20 Aug 2006 23:17:38 -0000	1.8
  @@ -12,7 +12,7 @@
   
   import java.util.*;
   
  -import org.jboss.portal.common.command.result.Result;
  +import org.jboss.portlet.forums.command.result.Result;
   import org.jboss.portal.core.modules.ModuleException;
   import org.jboss.portlet.forums.commands.ValidationException;
   import org.jboss.portlet.forums.model.AuthType;
  @@ -25,7 +25,7 @@
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
    * @author <a href="mailto:theute at users.sourceforge.net">Thomas Heute</a>
    * @author <a href="mailto:boleslaw.dawidowicz at jboss.com">Boleslaw Dawidowicz</a>
  - * @version $Revision: 1.7 $
  + * @version $Revision: 1.8 $
    */
   public class EditPostCommand
      extends PostCommand
  
  
  
  1.8       +2 -2      jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/post/ForumCommand.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ForumCommand.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/post/ForumCommand.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- ForumCommand.java	22 Mar 2006 14:42:54 -0000	1.7
  +++ ForumCommand.java	20 Aug 2006 23:17:38 -0000	1.8
  @@ -10,7 +10,7 @@
    *****************************************/
   package org.jboss.portlet.forums.commands.post;
   
  -import org.jboss.portal.common.command.result.Result;
  +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.ForumsModule;
  @@ -27,7 +27,7 @@
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
    * @author <a href="mailto:theute at users.sourceforge.net">Thomas Heute</a>
  - * @version $Revision: 1.7 $
  + * @version $Revision: 1.8 $
    */
   public abstract class ForumCommand
      extends AbstractCommand
  
  
  
  1.10      +2 -2      jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/post/NewTopicCommand.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: NewTopicCommand.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/post/NewTopicCommand.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -b -r1.9 -r1.10
  --- NewTopicCommand.java	5 Nov 2005 15:02:51 -0000	1.9
  +++ NewTopicCommand.java	20 Aug 2006 23:17:38 -0000	1.10
  @@ -10,7 +10,7 @@
    *****************************************/
   package org.jboss.portlet.forums.commands.post;
   
  -import org.jboss.portal.common.command.result.Result;
  +import org.jboss.portlet.forums.command.result.Result;
   import org.jboss.portal.core.modules.ModuleException;
   import org.jboss.portlet.JBossActionRequest;
   import org.jboss.portlet.JBossActionResponse;
  @@ -25,7 +25,7 @@
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
    * @author <a href="mailto:theute at users.sourceforge.net">Thomas Heute</a>
    * @author <a href="mailto:boleslaw.dawidowicz at jboss.com">Boleslaw Dawidowicz</a>
  - * @version $Revision: 1.9 $
  + * @version $Revision: 1.10 $
    */
   public final class NewTopicCommand
      extends ForumCommand
  
  
  
  1.8       +2 -2      jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/post/ReplyCommand.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ReplyCommand.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/post/ReplyCommand.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- ReplyCommand.java	5 Nov 2005 15:02:51 -0000	1.7
  +++ ReplyCommand.java	20 Aug 2006 23:17:38 -0000	1.8
  @@ -12,7 +12,7 @@
   
   import java.util.Date;
   
  -import org.jboss.portal.common.command.result.Result;
  +import org.jboss.portlet.forums.command.result.Result;
   import org.jboss.portlet.forums.commands.ValidationException;
   import org.jboss.portlet.forums.model.Post;
   import org.jboss.portlet.forums.model.AuthType;
  @@ -22,7 +22,7 @@
   
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.7 $
  + * @version $Revision: 1.8 $
    */
   public final class ReplyCommand
      extends PostCommand
  
  
  
  1.4       +2 -2      jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/post/RepostCommand.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: RepostCommand.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/post/RepostCommand.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- RepostCommand.java	3 May 2005 14:17:47 -0000	1.3
  +++ RepostCommand.java	20 Aug 2006 23:17:38 -0000	1.4
  @@ -11,7 +11,7 @@
   package org.jboss.portlet.forums.commands.post;
   
   
  -import org.jboss.portal.common.command.result.Result;
  +import org.jboss.portlet.forums.command.result.Result;
   import org.jboss.portlet.forums.commands.CommandConstants;
   import org.jboss.portlet.forums.model.AuthType;
   import org.jboss.portlet.JBossActionRequest;
  @@ -19,7 +19,7 @@
   
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
    */
   public class RepostCommand
      extends PostCommand
  
  
  
  1.6       +2 -2      jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/post/VoteTopicCommand.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: VoteTopicCommand.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/forums/src/main/org/jboss/portlet/forums/commands/post/VoteTopicCommand.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- VoteTopicCommand.java	8 Oct 2005 22:12:52 -0000	1.5
  +++ VoteTopicCommand.java	20 Aug 2006 23:17:38 -0000	1.6
  @@ -11,7 +11,7 @@
   package org.jboss.portlet.forums.commands.post;
   
   
  -import org.jboss.portal.common.command.result.Result;
  +import org.jboss.portlet.forums.command.result.Result;
   import org.jboss.portal.core.modules.ModuleException;
   import org.jboss.portlet.forums.model.*;
   import org.jboss.portlet.JBossActionRequest;
  @@ -22,7 +22,7 @@
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
    * @author <a href="">Boleslaw Dawidowicz</a>
  - * @version $Revision: 1.5 $
  + * @version $Revision: 1.6 $
    */
   public class VoteTopicCommand
      extends TopicCommand
  
  
  



More information about the jboss-cvs-commits mailing list