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

Julien Viet julien at jboss.com
Sun Jul 30 08:36:23 EDT 2006


  User: julien  
  Date: 06/07/30 08:36:23

  Modified:    portlet/src/main/org/jboss/portal/portlet/spi 
                        InstanceContext.java
  Log:
  JBPORTAL-973 : Portlet instance container integration testing
  JBPORTAL-972 : Portlet stateful invoker testing
  
  Revision  Changes    Path
  1.5       +3 -5      jboss-portal/portlet/src/main/org/jboss/portal/portlet/spi/InstanceContext.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: InstanceContext.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/portlet/src/main/org/jboss/portal/portlet/spi/InstanceContext.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- InstanceContext.java	15 May 2006 01:45:30 -0000	1.4
  +++ InstanceContext.java	30 Jul 2006 12:36:23 -0000	1.5
  @@ -25,7 +25,7 @@
   
   /**
    * @author <a href="mailto:julien at jboss.org">Julien Viet</a>
  - * @version $Revision: 1.4 $
  + * @version $Revision: 1.5 $
    */
   public interface InstanceContext
   {
  @@ -39,18 +39,16 @@
      /**
       * The portlet is cloned and the state is managed by the producer
       *
  -    * @param portletId the portlet id
       * @param cloneId the portlet id of the clone
       */
  -   void portletCloned(String portletId, String cloneId);
  +   void portletCloned(String cloneId);
   
      /**
       * The portlet is cloned and the state is managed by the consumer.
       *
  -    * @param portletId the portlet id
       * @param state the opaque state
       */
  -   void portletCloned(String portletId, byte[] state);
  +   void portletCloned(byte[] state);
   
      /**
       * Return the access mode to this portlet instance.
  
  
  



More information about the jboss-cvs-commits mailing list