| org.apache.jetspeed.container.invoker.JetspeedPortletInvoker
All known Subclasses: org.apache.jetspeed.container.invoker.ServletPortletInvoker, org.apache.jetspeed.container.invoker.LocalPortletInvoker,
JetspeedPortletInvoker | public interface JetspeedPortletInvoker extends PortletInvoker(Code) | | JetspeedPortletInvoker extends Pluto's portlet invoker and extends it
with lifecycle management. Portlet Invokers can be pooled, and activated
and passivated per request cycle.
author: David Sean Taylor version: $Id: JetspeedPortletInvoker.java 516448 2007-03-09 16:25:47Z ate $ |
Method Summary | |
void | activate(PortletFactory portletFactory, PortletDefinition portletDefinition, ServletConfig servletConfig) Activating an invoker makes it ready to invoke portlets.
If an invoker's state is not activated, it can not invoke.
Parameters: portletFactory - The factory to get access to the portlet being invoked. Parameters: portletDefinition - The portlet's definition that is being invoked. Parameters: servletConfig - The servlet configuration of the portal. | void | activate(PortletFactory portletFactory, PortletDefinition portletDefinition, ServletConfig servletConfig, String property) Activating an invoker makes it ready to invoke portlets.
If an invoker's state is not activated, it can not invoke.
This second signature allows for activating with an extra property.
Parameters: portletFactory - The factory to get access to the portlet being invoked. Parameters: portletDefinition - The portlet's definition that is being invoked. Parameters: servletConfig - The servlet configuration of the portal. | boolean | isActivated() Returns true if the state of this invoke is 'activated', and false if it is 'passivated'. | void | passivate() Passivates an invoker, freeing it back to the invoker pool. |
activate | void activate(PortletFactory portletFactory, PortletDefinition portletDefinition, ServletConfig servletConfig)(Code) | | Activating an invoker makes it ready to invoke portlets.
If an invoker's state is not activated, it can not invoke.
Parameters: portletFactory - The factory to get access to the portlet being invoked. Parameters: portletDefinition - The portlet's definition that is being invoked. Parameters: servletConfig - The servlet configuration of the portal. Parameters: containerServlet - |
activate | void activate(PortletFactory portletFactory, PortletDefinition portletDefinition, ServletConfig servletConfig, String property)(Code) | | Activating an invoker makes it ready to invoke portlets.
If an invoker's state is not activated, it can not invoke.
This second signature allows for activating with an extra property.
Parameters: portletFactory - The factory to get access to the portlet being invoked. Parameters: portletDefinition - The portlet's definition that is being invoked. Parameters: servletConfig - The servlet configuration of the portal. Parameters: property - Implementation specific property Parameters: containerServlet - |
isActivated | boolean isActivated()(Code) | | Returns true if the state of this invoke is 'activated', and false if it is 'passivated'.
True if the current state of the invoker is 'activated' otherwise false. |
passivate | void passivate()(Code) | | Passivates an invoker, freeing it back to the invoker pool.
If an invoker's state is passivated, it cannot be used to invoke portlets.
|
|
|