The root package of the Pluto Portlet Container.

Portals embedding Pluto must implement the {@link org.apache.pluto.services.PortletContainerServices} interfac and then retrieve an instance of the container from the {@link org.apache.pluto.PortletContainerFactory}.

Initialization of the container

PortletContainerServices services = // your implementation! PortletContainer container = PortletContainerFactory.createContainer("MyContainer", services); ServletContext context = // the servlet context within which the portal is executing container.init(servletContext);

Processing of Requests

if(isActionRequest) { container.doAction(request, response); } else if(isRenderRequest) { container.doRender(request, response); }

Shutting Down the Container

container.destroy();