| org.apache.jetspeed.demo.customerInfo.CustomerPortlet
CustomerPortlet | public class CustomerPortlet extends org.apache.portals.bridges.common.GenericServletPortlet (Code) | | author: Paul Spencer version: $Id: CustomerPortlet.java 516448 2007-03-09 16:25:47Z ate $ |
Method Summary | |
public void | doView(RenderRequest request, RenderResponse response) Execute the servlet as define by the init parameter or preference PARAM_VIEW_PAGE.
The value if the parameter is a relative URL, i.e. | public void | init() | public void | processAction(ActionRequest request, ActionResponse actionResponse) Execute the servlet as define by the init parameter or preference PARAM_ACTION_PAGE. |
CustomerPortlet | public CustomerPortlet()(Code) | | Creates a new instance of CustomerPortlet
|
doView | public void doView(RenderRequest request, RenderResponse response) throws PortletException, IOException(Code) | | Execute the servlet as define by the init parameter or preference PARAM_VIEW_PAGE.
The value if the parameter is a relative URL, i.e. /viewPage.jsp will execute the
JSP viewPage.jsp in the portlet application's web app.
See Also: javax.portlet.GenericPortlet.doView |
init | public void init() throws javax.portlet.PortletException(Code) | | |
processAction | public void processAction(ActionRequest request, ActionResponse actionResponse) throws PortletException, IOException(Code) | | Execute the servlet as define by the init parameter or preference PARAM_ACTION_PAGE. The value
if the parameter is a relative URL, i.e. /actionPage.jsp will execute the
JSP editPage.jsp in the portlet application's web app. The action should
not generate any content. The content will be generate by doCustom(),
doHelp() , doEdit(), or doView().
See section PLT.16.2 of the JSR 168 Portlet Spec for more information
around executing a servlet or JSP in processAction()
See Also: javax.portlet.GenericPortlet.processAction |
|
|