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

Gavin King gavin.king at jboss.com
Wed Oct 25 11:14:36 EDT 2006


  User: gavin   
  Date: 06/10/25 11:14:36

  Modified:    src/main/org/jboss/seam/portlet   PortletRequestImpl.java
                        PortletSessionImpl.java
  Log:
  many minor
  
  Revision  Changes    Path
  1.2       +6 -1      jboss-seam/src/main/org/jboss/seam/portlet/PortletRequestImpl.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: PortletRequestImpl.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/portlet/PortletRequestImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- PortletRequestImpl.java	17 Jun 2006 04:51:02 -0000	1.1
  +++ PortletRequestImpl.java	25 Oct 2006 15:14:36 -0000	1.2
  @@ -14,7 +14,7 @@
   
   /**
    * @author <a href="mailto:theute at jboss.org">Thomas Heute </a>
  - * @version $Revision: 1.1 $
  + * @version $Revision: 1.2 $
    */
   public class PortletRequestImpl extends ContextAdaptor
   {
  @@ -26,26 +26,31 @@
         this.request = request;
      }
      
  +   @Override
      public Object getAttribute(String key)
      {
         return request.getAttribute(key);
      }
   
  +   @Override
      public void removeAttribute(String key)
      {
         request.removeAttribute(key);
      }
   
  +   @Override
      public Enumeration getAttributeNames()
      {
         return request.getAttributeNames();
      }
   
  +   @Override
      public void setAttribute(String key, Object value)
      {
         request.setAttribute(key, value);
      }
   
  +   @Override
      public void invalidate()
      {
         throw new UnsupportedOperationException();
  
  
  
  1.5       +6 -1      jboss-seam/src/main/org/jboss/seam/portlet/PortletSessionImpl.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: PortletSessionImpl.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/portlet/PortletSessionImpl.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- PortletSessionImpl.java	17 Jun 2006 04:49:30 -0000	1.4
  +++ PortletSessionImpl.java	25 Oct 2006 15:14:36 -0000	1.5
  @@ -14,7 +14,7 @@
   
   /**
    * @author <a href="mailto:theute at jboss.org">Thomas Heute </a>
  - * @version $Revision: 1.4 $
  + * @version $Revision: 1.5 $
    */
   public class PortletSessionImpl extends ContextAdaptor
   {
  @@ -26,26 +26,31 @@
         this.session = session;
      }
      
  +   @Override
      public Object getAttribute(String key)
      {
         return session.getAttribute(key);
      }
   
  +   @Override
      public void removeAttribute(String key)
      {
         session.removeAttribute(key);
      }
   
  +   @Override
      public Enumeration getAttributeNames()
      {
         return session.getAttributeNames();
      }
   
  +   @Override
      public void setAttribute(String key, Object value)
      {
         session.setAttribute(key, value);
      }
   
  +   @Override
      public void invalidate()
      {
         session.invalidate();
  
  
  



More information about the jboss-cvs-commits mailing list