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

Julien Viet julien at jboss.com
Thu Aug 24 09:21:37 EDT 2006


  User: julien  
  Date: 06/08/24 09:21:37

  Modified:    portlet/src/main/org/jboss/portal/portlet/container 
                        PortletContainerInvoker.java
  Log:
  updated the implementation of destroyClone to now destroy a list of ids and return the list of non destroyed ids. updated the InstanceContainer accordingly
  
  Revision  Changes    Path
  1.29      +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.28
  retrieving revision 1.29
  diff -u -b -r1.28 -r1.29
  --- PortletContainerInvoker.java	23 Aug 2006 12:55:01 -0000	1.28
  +++ PortletContainerInvoker.java	24 Aug 2006 13:21:37 -0000	1.29
  @@ -37,12 +37,13 @@
   import java.util.Collection;
   import java.util.Iterator;
   import java.util.LinkedHashSet;
  +import java.util.List;
   
   /**
    * 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.28 $
  + * @version $Revision: 1.29 $
    */
   public class PortletContainerInvoker extends AbstractJBossService implements PortletInvoker
   {
  @@ -146,7 +147,7 @@
         throw new UnsupportedOperationException();
      }
   
  -   public void destroyClone(String portletId)
  +   public List destroyClones(List portletIds) throws IllegalArgumentException, PortletInvokerException, UnsupportedOperationException
      {
         throw new UnsupportedOperationException();
      }
  
  
  



More information about the jboss-cvs-commits mailing list