You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by ta...@apache.org on 2004/08/14 02:16:54 UTC

cvs commit: jakarta-jetspeed-2/components/registry/src/java/org/apache/jetspeed/om/impl DescriptionSetImpl.java DisplayNameSetImpl.java WebAppDescriptionImpl.java

taylor      2004/08/13 17:16:54

  Modified:    components/registry/src/java/org/apache/jetspeed/om/portlet/impl
                        PortletDefinitionImpl.java
                        PortletApplicationDefinitionImpl.java
               components/registry/src/java/org/apache/jetspeed/om/impl
                        DescriptionSetImpl.java DisplayNameSetImpl.java
                        WebAppDescriptionImpl.java
  Log:
  make registry om serializable since weblogic requires objects put in the ServletRequest to be serializable
  
  CVS: ----------------------------------------------------------------------
  CVS: PR:
  CVS:   If this change addresses a PR in the problem report tracking
  CVS:   database, then enter the PR number(s) here.
  CVS: Obtained from:
  CVS:   If this change has been taken from another system, such as NCSA,
  CVS:   then name the system in this line, otherwise delete it.
  CVS: Submitted by:
  CVS:   If this code has been contributed to Apache by someone else; i.e.,
  CVS:   they sent us a patch or a new module, then include their name/email
  CVS:   address here. If this is your work then delete this line.
  CVS: Reviewed by:
  CVS:   If we are doing pre-commit code reviews and someone else has
  CVS:   reviewed your changes, include their name(s) here.
  CVS:   If you have not had it reviewed then delete this line.
  
  Revision  Changes    Path
  1.15      +2 -2      jakarta-jetspeed-2/components/registry/src/java/org/apache/jetspeed/om/portlet/impl/PortletDefinitionImpl.java
  
  Index: PortletDefinitionImpl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jetspeed-2/components/registry/src/java/org/apache/jetspeed/om/portlet/impl/PortletDefinitionImpl.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- PortletDefinitionImpl.java	4 Aug 2004 20:35:53 -0000	1.14
  +++ PortletDefinitionImpl.java	14 Aug 2004 00:16:54 -0000	1.15
  @@ -76,7 +76,7 @@
    * @version $Id$
    *  
    */
  -public class PortletDefinitionImpl implements PortletDefinitionComposite, Serializable
  +public class PortletDefinitionImpl implements PortletDefinitionComposite // , Serializable
   {
       private static final Log log = LogFactory.getLog(PortletDefinitionImpl.class);
       private long id;
  
  
  
  1.17      +2 -2      jakarta-jetspeed-2/components/registry/src/java/org/apache/jetspeed/om/portlet/impl/PortletApplicationDefinitionImpl.java
  
  Index: PortletApplicationDefinitionImpl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jetspeed-2/components/registry/src/java/org/apache/jetspeed/om/portlet/impl/PortletApplicationDefinitionImpl.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- PortletApplicationDefinitionImpl.java	23 Jul 2004 05:30:51 -0000	1.16
  +++ PortletApplicationDefinitionImpl.java	14 Aug 2004 00:16:54 -0000	1.17
  @@ -39,7 +39,7 @@
    * @version $Id$
    * @since 1.0
    */
  -public class PortletApplicationDefinitionImpl implements MutablePortletApplication, Serializable
  +public class PortletApplicationDefinitionImpl implements MutablePortletApplication //, Serializable
   { 
       /**
        * Unique id of the application.  This serves as the primary key in database
  
  
  
  1.3       +3 -2      jakarta-jetspeed-2/components/registry/src/java/org/apache/jetspeed/om/impl/DescriptionSetImpl.java
  
  Index: DescriptionSetImpl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jetspeed-2/components/registry/src/java/org/apache/jetspeed/om/impl/DescriptionSetImpl.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DescriptionSetImpl.java	8 Mar 2004 00:48:51 -0000	1.2
  +++ DescriptionSetImpl.java	14 Aug 2004 00:16:54 -0000	1.3
  @@ -15,6 +15,7 @@
    */
   package org.apache.jetspeed.om.impl;
   
  +import java.io.Serializable;
   import java.util.ArrayList;
   import java.util.Collection;
   import java.util.Iterator;
  @@ -32,7 +33,7 @@
    * @version $Id$
    *
    */
  -public class DescriptionSetImpl  implements MutableDescriptionSet
  +public class DescriptionSetImpl  implements MutableDescriptionSet, Serializable
   {
       /** Specifies the type Description we are storing */
       protected String descriptionType;
  
  
  
  1.3       +3 -2      jakarta-jetspeed-2/components/registry/src/java/org/apache/jetspeed/om/impl/DisplayNameSetImpl.java
  
  Index: DisplayNameSetImpl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jetspeed-2/components/registry/src/java/org/apache/jetspeed/om/impl/DisplayNameSetImpl.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DisplayNameSetImpl.java	8 Mar 2004 00:48:51 -0000	1.2
  +++ DisplayNameSetImpl.java	14 Aug 2004 00:16:54 -0000	1.3
  @@ -15,6 +15,7 @@
    */
   package org.apache.jetspeed.om.impl;
   
  +import java.io.Serializable;
   import java.util.ArrayList;
   import java.util.Collection;
   import java.util.Iterator;
  @@ -30,7 +31,7 @@
    * @version $Id$
    *
    */
  -public class DisplayNameSetImpl  implements MutableDisplayNameSet
  +public class DisplayNameSetImpl  implements MutableDisplayNameSet, Serializable
   {
   
       /** Specifies the type Description we are storing */
  
  
  
  1.3       +4 -2      jakarta-jetspeed-2/components/registry/src/java/org/apache/jetspeed/om/impl/WebAppDescriptionImpl.java
  
  Index: WebAppDescriptionImpl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jetspeed-2/components/registry/src/java/org/apache/jetspeed/om/impl/WebAppDescriptionImpl.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- WebAppDescriptionImpl.java	8 Mar 2004 00:48:51 -0000	1.2
  +++ WebAppDescriptionImpl.java	14 Aug 2004 00:16:54 -0000	1.3
  @@ -15,6 +15,8 @@
    */
   package org.apache.jetspeed.om.impl;
   
  +import java.io.Serializable;
  +
   /**
    * <p>
    * WebAppDescriptionImpl
  @@ -24,7 +26,7 @@
    * @version $Id$
    *
    */
  -public class WebAppDescriptionImpl extends DescriptionImpl
  +public class WebAppDescriptionImpl extends DescriptionImpl implements Serializable
   {
   	/**
   	* Tells OJB which class to use to materialize.  
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-dev-help@jakarta.apache.org