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

Julien Viet julien at jboss.com
Wed Aug 23 08:55:01 EDT 2006


  User: julien  
  Date: 06/08/23 08:55:01

  Modified:    portlet/src/main/org/jboss/portal/portlet/container 
                        PortletContainerInvoker.java
  Log:
  updated implementation of PortletInvoker.setProperties(...) to use a list of property changes instead of a PropertyMap in order to match WSRP semantics
  
  Revision  Changes    Path
  1.28      +3 -2      jboss-portal/portlet/src/main/org/jboss/portal/portlet/container/PortletContainerInvoker.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: PortletContainerInvoker.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/container/PortletContainerInvoker.java,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -b -r1.27 -r1.28
  --- PortletContainerInvoker.java	22 Aug 2006 14:51:48 -0000	1.27
  +++ PortletContainerInvoker.java	23 Aug 2006 12:55:01 -0000	1.28
  @@ -25,6 +25,7 @@
   import org.jboss.portal.common.invocation.InvocationException;
   import org.jboss.portal.common.invocation.InterceptorStack;
   import org.jboss.portal.portlet.state.PropertyMap;
  +import org.jboss.portal.portlet.state.PropertyChange;
   import org.jboss.portal.portlet.PortletInvoker;
   import org.jboss.portal.portlet.Portlet;
   import org.jboss.portal.portlet.NoSuchPortletException;
  @@ -41,7 +42,7 @@
    * An implementation of portlet invoker that makes a call to a portlet container.
    *
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.27 $
  + * @version $Revision: 1.28 $
    */
   public class PortletContainerInvoker extends AbstractJBossService implements PortletInvoker
   {
  @@ -160,7 +161,7 @@
         throw new UnsupportedOperationException();
      }
   
  -   public void setProperties(String portletId, PropertyMap properties)
  +   public void setProperties(String portletId, PropertyChange[] changes) throws IllegalArgumentException, PortletInvokerException, UnsupportedOperationException
      {
         throw new UnsupportedOperationException();
      }
  
  
  



More information about the jboss-cvs-commits mailing list