[jboss-cvs] jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/consumer ...

Julien Viet julien at jboss.com
Tue Aug 22 10:08:55 EDT 2006


  User: julien  
  Date: 06/08/22 10:08:55

  Modified:    wsrp/src/main/org/jboss/portal/wsrp/consumer 
                        WSRPConsumerImpl.java
  Log:
  - refactored the ValueMap to PropertyMap and moved it in org.jboss.portal.portlet.state package
  - introduced TypedMap that is super type of ParameterMap and is reused for the PropertyMap
  
  Revision  Changes    Path
  1.55      +4 -4      jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/consumer/WSRPConsumerImpl.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: WSRPConsumerImpl.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/wsrp/src/main/org/jboss/portal/wsrp/consumer/WSRPConsumerImpl.java,v
  retrieving revision 1.54
  retrieving revision 1.55
  diff -u -b -r1.54 -r1.55
  --- WSRPConsumerImpl.java	19 Aug 2006 04:27:58 -0000	1.54
  +++ WSRPConsumerImpl.java	22 Aug 2006 14:08:55 -0000	1.55
  @@ -24,7 +24,7 @@
   import org.jboss.portal.common.invocation.InvocationException;
   import org.jboss.portal.common.system.AbstractJBossService;
   import org.jboss.portal.common.util.ParameterValidation;
  -import org.jboss.portal.common.value.ValueMap;
  +import org.jboss.portal.portlet.state.PropertyMap;
   import org.jboss.portal.portlet.InvokerUnavailableException;
   import org.jboss.portal.portlet.NoSuchPortletException;
   import org.jboss.portal.portlet.Portlet;
  @@ -68,7 +68,7 @@
   /**
    * @author <a href="mailto:boleslaw.dawidowicz at jboss.org">Boleslaw Dawidowicz</a>
    * @author <a href="mailto:chris.laprun at jboss.com">Chris Laprun</a>
  - * @version $Revision: 1.54 $
  + * @version $Revision: 1.55 $
    * @since 2.4
    */
   public class WSRPConsumerImpl extends AbstractJBossService implements WSRPConsumer
  @@ -202,12 +202,12 @@
         throw new UnsupportedOperationException("destroyClone currently unsupported.");
      }
   
  -   public ValueMap getProperties(String portletId)
  +   public PropertyMap getProperties(String portletId)
      {
         throw new UnsupportedOperationException("getProperties currently unsupported.");
      }
   
  -   public void setProperties(String portletId, ValueMap properties)
  +   public void setProperties(String portletId, PropertyMap properties)
      {
         throw new UnsupportedOperationException("setProperties currently unsupported.");
      }
  
  
  



More information about the jboss-cvs-commits mailing list