On Nov 4, 2008, at 6:37 AM, Sie, Yang wrote:

Thank you David. This doesn't cause much issue per se. Also, I
remembered that we asked this question years ago and so was what I was
told. While we were revisiting the log, this question popped up and I
forgot what was the answer. But here is the section in JetspeedEngine
and may help you recall what was it for. We will keep looking and if
this indeed caused an issue, we will ask you to try to reproduce it...

public class JetspeedEngine implements Engine

   /**
    * <p>
    * getContainerService
    * </p>
    *
    * @see
org
.apache.pluto.services.PortletContainerEnvironment#getContainerServic
e(java.lang.Class)
    * @param service
    * @return
    */
   public ContainerService getContainerService( Class service )
   {
       if(service.equals(FactoryManagerService.class))
       {
           return this;
       }

       try
       {
           return (ContainerService)
getComponentManager().getComponent(service);
       }
       catch (NoSuchBeanDefinitionException e)
       {
           log.warn("No ContainerService defined for
"+service.getName());
           return null;
       }
   }


I just checked out the source to 2.1 post release, searched the entire source for a reference to getContainerService, and found no references

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to