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

Julien Viet julien at jboss.com
Tue Jul 11 09:16:25 EDT 2006


  User: julien  
  Date: 06/07/11 09:16:25

  Modified:    portlet/src/main/org/jboss/portal/portlet/aspects/portlet 
                        ConsumerCacheInterceptor.java
  Log:
  fixed wrong JNDIName valoue for mbean attributes
  
  Revision  Changes    Path
  1.3       +5 -3      jboss-portal/portlet/src/main/org/jboss/portal/portlet/aspects/portlet/ConsumerCacheInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ConsumerCacheInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/aspects/portlet/ConsumerCacheInterceptor.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- ConsumerCacheInterceptor.java	9 Jul 2006 12:04:16 -0000	1.2
  +++ ConsumerCacheInterceptor.java	11 Jul 2006 13:16:25 -0000	1.3
  @@ -35,9 +35,11 @@
   import org.jboss.portal.common.invocation.InvocationException;
   import org.jboss.portal.portlet.WindowState;
   
  +import java.io.Serializable;
  +
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public class ConsumerCacheInterceptor extends PortletInterceptor
   {
  @@ -129,7 +131,7 @@
      /**
       * Encapsulate cache information.
       */
  -   public static class CacheEntry
  +   public static class CacheEntry implements Serializable
      {
   
         /** The timed content. */
  @@ -164,7 +166,7 @@
         }
      }
   
  -   public static class CacheKey
  +   public static class CacheKey implements Serializable
      {
   
         /** The navigational state. */
  
  
  



More information about the jboss-cvs-commits mailing list