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

Julien Viet julien at jboss.com
Tue Aug 22 10:51:48 EDT 2006


  User: julien  
  Date: 06/08/22 10:51:48

  Modified:    portlet/src/main/org/jboss/portal/portlet/test 
                        TestPortletInvoker.java
  Log:
  added getProperties(String portletId, Set keys) on PortletInvoker to match WSRP semantics
  
  Revision  Changes    Path
  1.12      +6 -1      jboss-portal/portlet/src/main/org/jboss/portal/portlet/test/TestPortletInvoker.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TestPortletInvoker.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/test/TestPortletInvoker.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -b -r1.11 -r1.12
  --- TestPortletInvoker.java	22 Aug 2006 14:08:54 -0000	1.11
  +++ TestPortletInvoker.java	22 Aug 2006 14:51:48 -0000	1.12
  @@ -35,7 +35,7 @@
    * A simple consumer.
    *
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.11 $
  + * @version $Revision: 1.12 $
    */
   public class TestPortletInvoker extends AbstractJBossService implements PortletInvoker
   {
  @@ -156,6 +156,11 @@
         return producer.getProperties(portletId);
      }
   
  +   public PropertyMap getProperties(String portletId, Set keys) throws IllegalArgumentException, PortletInvokerException, UnsupportedOperationException
  +   {
  +      return producer.getProperties(portletId, keys);
  +   }
  +
      public void setProperties(String portletId, PropertyMap properties) throws PortletInvokerException
      {
         producer.setProperties(portletId, properties);
  
  
  



More information about the jboss-cvs-commits mailing list