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

Julien Viet julien at jboss.com
Mon Jul 31 15:29:52 EDT 2006


  User: julien  
  Date: 06/07/31 15:29:52

  Modified:    portlet/src/main/org/jboss/portal/portlet      
                        ParametersStateString.java PortletInvoker.java
                        PortletRequestDecoder.java PortletURL.java
  Removed:     portlet/src/main/org/jboss/portal/portlet       Mode.java
                        WindowState.java
  Log:
  - moved the portal api in the api module in order to have a standalone jar
  - JBPORTAL-631 : Try to move org.jboss.portlet package to the api module
  - IPC support in 2.4 (only for local portlets)
  
  Revision  Changes    Path
  1.9       +2 -2      jboss-portal/portlet/src/main/org/jboss/portal/portlet/ParametersStateString.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ParametersStateString.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/ParametersStateString.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- ParametersStateString.java	31 Jul 2006 00:20:50 -0000	1.8
  +++ ParametersStateString.java	31 Jul 2006 19:29:52 -0000	1.9
  @@ -37,7 +37,7 @@
    * A set of parameters.
    *
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.8 $
  + * @version $Revision: 1.9 $
    */
   public class ParametersStateString extends StateString implements Serializable
   {
  @@ -219,7 +219,7 @@
       *
       * @return the parameter object
       */
  -   public Parameters getParametersValue()
  +   public Parameters getParameters()
      {
         return parameters;
      }
  
  
  
  1.15      +2 -2      jboss-portal/portlet/src/main/org/jboss/portal/portlet/PortletInvoker.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: PortletInvoker.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/PortletInvoker.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -b -r1.14 -r1.15
  --- PortletInvoker.java	30 Jul 2006 12:36:23 -0000	1.14
  +++ PortletInvoker.java	31 Jul 2006 19:29:52 -0000	1.15
  @@ -31,7 +31,7 @@
    * operations are possible on a particular portlet among the set.
    *
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.14 $
  + * @version $Revision: 1.15 $
    */
   public interface PortletInvoker
   {
  @@ -43,7 +43,7 @@
      Set getPortlets() throws PortletInvokerException;
   
      /**
  -    * Get information about a specific portlet. It returns null if the portlet is not found.
  +    * Get information about a specific portlet.
       *
       * @param portletId the portlet identifier in the context of this invoker
       * @return the <code>PortletInfo</code> for the specified portlet
  
  
  
  1.4       +3 -1      jboss-portal/portlet/src/main/org/jboss/portal/portlet/PortletRequestDecoder.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: PortletRequestDecoder.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/PortletRequestDecoder.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- PortletRequestDecoder.java	31 Jul 2006 00:20:50 -0000	1.3
  +++ PortletRequestDecoder.java	31 Jul 2006 19:29:52 -0000	1.4
  @@ -22,6 +22,8 @@
   package org.jboss.portal.portlet;
   
   import org.jboss.portal.server.request.RequestParameter;
  +import org.jboss.portal.WindowState;
  +import org.jboss.portal.Mode;
   
   import java.util.Iterator;
   import java.util.Map;
  @@ -31,7 +33,7 @@
    * Which means that this implementation does not preclude other implementations.  
    *
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
    */
   public class PortletRequestDecoder
   {
  
  
  
  1.6       +4 -1      jboss-portal/portlet/src/main/org/jboss/portal/portlet/PortletURL.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: PortletURL.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/PortletURL.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- PortletURL.java	9 Jul 2006 12:04:15 -0000	1.5
  +++ PortletURL.java	31 Jul 2006 19:29:52 -0000	1.6
  @@ -21,9 +21,12 @@
   */
   package org.jboss.portal.portlet;
   
  +import org.jboss.portal.WindowState;
  +import org.jboss.portal.Mode;
  +
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.5 $
  + * @version $Revision: 1.6 $
    */
   public interface PortletURL
   {
  
  
  



More information about the jboss-cvs-commits mailing list