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

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/container/info    
                        ContainerCapabilities.java ContainerModeInfo.java
                        ContainerWindowStateInfo.java ContentTypes.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.4       +3 -3      jboss-portal/portlet/src/main/org/jboss/portal/portlet/container/info/ContainerCapabilities.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ContainerCapabilities.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/container/info/ContainerCapabilities.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- ContainerCapabilities.java	9 Jul 2006 12:04:16 -0000	1.3
  +++ ContainerCapabilities.java	31 Jul 2006 19:29:52 -0000	1.4
  @@ -21,8 +21,8 @@
   */
   package org.jboss.portal.portlet.container.info;
   
  -import org.jboss.portal.portlet.Mode;
  -import org.jboss.portal.portlet.WindowState;
  +import org.jboss.portal.Mode;
  +import org.jboss.portal.WindowState;
   import org.jboss.portal.portlet.info.CapabilitiesInfo;
   
   import java.util.HashSet;
  @@ -32,7 +32,7 @@
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
    * @author <a href="mailto:chris.laprun at jboss.com">Chris Laprun</a>
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
    */
   public class ContainerCapabilities implements CapabilitiesInfo
   {
  
  
  
  1.3       +2 -2      jboss-portal/portlet/src/main/org/jboss/portal/portlet/container/info/ContainerModeInfo.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ContainerModeInfo.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/container/info/ContainerModeInfo.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- ContainerModeInfo.java	9 Jul 2006 12:04:16 -0000	1.2
  +++ ContainerModeInfo.java	31 Jul 2006 19:29:52 -0000	1.3
  @@ -22,7 +22,7 @@
   
   package org.jboss.portal.portlet.container.info;
   
  -import org.jboss.portal.portlet.Mode;
  +import org.jboss.portal.Mode;
   import org.jboss.portal.common.util.LocalizedString;
   import org.jboss.portal.portlet.info.ModeInfo;
   
  @@ -30,7 +30,7 @@
   
   /**
    * @author <a href="mailto:chris.laprun at jboss.com">Chris Laprun</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    * @since 2.4
    */
   class ContainerModeInfo implements ModeInfo
  
  
  
  1.3       +2 -2      jboss-portal/portlet/src/main/org/jboss/portal/portlet/container/info/ContainerWindowStateInfo.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ContainerWindowStateInfo.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/container/info/ContainerWindowStateInfo.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- ContainerWindowStateInfo.java	9 Jul 2006 12:04:16 -0000	1.2
  +++ ContainerWindowStateInfo.java	31 Jul 2006 19:29:52 -0000	1.3
  @@ -22,7 +22,7 @@
   
   package org.jboss.portal.portlet.container.info;
   
  -import org.jboss.portal.portlet.WindowState;
  +import org.jboss.portal.WindowState;
   import org.jboss.portal.common.util.LocalizedString;
   import org.jboss.portal.portlet.info.WindowStateInfo;
   
  @@ -30,7 +30,7 @@
   
   /**
    * @author <a href="mailto:chris.laprun at jboss.com">Chris Laprun</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    * @since 2.4
    */
   class ContainerWindowStateInfo implements WindowStateInfo
  
  
  
  1.4       +2 -2      jboss-portal/portlet/src/main/org/jboss/portal/portlet/container/info/ContentTypes.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ContentTypes.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/container/info/ContentTypes.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- ContentTypes.java	9 Jul 2006 12:04:16 -0000	1.3
  +++ ContentTypes.java	31 Jul 2006 19:29:52 -0000	1.4
  @@ -21,7 +21,7 @@
   */
   package org.jboss.portal.portlet.container.info;
   
  -import org.jboss.portal.portlet.Mode;
  +import org.jboss.portal.Mode;
   import org.jboss.portal.portlet.impl.jsr168.metadata.ContentTypeMetaData;
   import org.jboss.portal.portlet.impl.jsr168.metadata.ContentTypesMetaData;
   
  @@ -40,7 +40,7 @@
    *
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
    * @author <a href="mailto:chris.laprun at jboss.com">Chris Laprun</a>
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
    */
   public class ContentTypes
   {
  
  
  



More information about the jboss-cvs-commits mailing list