|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface PortletInvoker
This interface defines the operations required by the Pluto container in order to invoke portlets.
Portlet invokers are defined by three operations: action
, render
, and optionally
load
. The container delegates the actual implementation of these operations to the
portal. The action
method will invoke the processAction
method on
the javax.portlet.Portlet
interface of a portlet. The render
method
will invoke the render
method on the javax.portlet.Portlet
interface of a portlet.
Method Summary | |
---|---|
void |
action(ActionRequest request,
ActionResponse response)
This method invokes the processAction method of a Java portlet ( javax.portlet.Portlet ). |
void |
load(PortletRequest request,
RenderResponse response)
This method invokes the optional load method of a portlet if supported. |
void |
render(RenderRequest request,
RenderResponse response)
This method invokes the render method of a Java portlet ( javax.portlet.Portlet ). |
Method Detail |
---|
void action(ActionRequest request, ActionResponse response) throws PortletException, java.io.IOException
javax.portlet.Portlet
).
request
- Represents the request sent to a portlet to handle an action.response
- Represents the response provide by a portlet in handling an action.
PortletException
java.io.IOException
void render(RenderRequest request, RenderResponse response) throws PortletException, java.io.IOException
javax.portlet.Portlet
).
request
- Represents the request sent to a portlet to handle rendering the portlet.response
- Represents the response provide by a portlet in rendering.
PortletException
java.io.IOException
void load(PortletRequest request, RenderResponse response) throws PortletException
request
- Represents the request sent to a portlet to handle initializing the portlet.response
- Represents the response sent to a portlet to handle initializing the portlet.
PortletException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |