| java.lang.Object org.apache.jetspeed.container.invoker.LocalPortletInvoker
LocalPortletInvoker | public class LocalPortletInvoker implements JetspeedPortletInvoker(Code) | | LocalPortletInvoker invokes local (internal) portlet applications.
Local portlet applications are stored within the Jetspeed Portlet application.
They are not separate web applications; but are stored under Jetspeed's
WEB-INF/apps directory.
Sample Configuration
factory.invoker.local = org.apache.jetspeed.container.invoker.LocalPortletInvoker
factory.invoker.local.pool.size = 50
author: David Sean Taylor version: $Id: LocalPortletInvoker.java 565870 2007-08-14 19:40:03Z taylor $ |
Method Summary | |
public void | action(ActionRequest request, ActionResponse response) | public void | activate(PortletFactory portletFactory, PortletDefinition portletDefinition, ServletConfig servletConfig) | public void | activate(PortletFactory portletFactory, PortletDefinition portletDefinition, ServletConfig servletConfig, String servletMappingName) | protected void | invoke(PortletRequest portletRequest, PortletResponse portletResponse, Integer method) Invokes the specific request denoted by the method parameter on a portlet.
The portlet is invoked with a direct method call on the portlet. | public boolean | isActivated() | public void | load(PortletRequest request, RenderResponse response) | public void | passivate() | public void | render(RenderRequest request, RenderResponse response) |
activated | protected boolean activated(Code) | | |
portletDefinition | protected PortletDefinition portletDefinition(Code) | | |
LocalPortletInvoker | public LocalPortletInvoker()(Code) | | |
action | public void action(ActionRequest request, ActionResponse response) throws PortletException, IOException(Code) | | |
invoke | protected void invoke(PortletRequest portletRequest, PortletResponse portletResponse, Integer method) throws PortletException, IOException(Code) | | Invokes the specific request denoted by the method parameter on a portlet.
The portlet is invoked with a direct method call on the portlet. It is not invoked in another web application.
This requires manipulation of the current thread's classpath.
Parameters: portletRequest - Parameters: portletResponse - Parameters: methodID - throws: PortletException - throws: IOException - |
isActivated | public boolean isActivated()(Code) | | |
load | public void load(PortletRequest request, RenderResponse response) throws PortletException(Code) | | |
passivate | public void passivate()(Code) | | |
render | public void render(RenderRequest request, RenderResponse response) throws PortletException, IOException(Code) | | |
|
|