org.jboss.portal.core.search
Class SearchPortlet

java.lang.Object
  extended by org.jboss.portlet.JBossPortlet
      extended by org.jboss.portal.core.search.SearchPortlet
All Implemented Interfaces:
Portlet

public class SearchPortlet
extends JBossPortlet

Version:
$Revision$
Author:
Thomas Heute

Constructor Summary
SearchPortlet()
           
 
Method Summary
 void doView(JBossRenderRequest rReq, JBossRenderResponse rRes)
          Throw a PortletException.
 void init()
           
 void processAction(ActionRequest aReq, ActionResponse aRes)
          Called by the portlet container to allow the portlet to process an action request.
 
Methods inherited from class org.jboss.portlet.JBossPortlet
destroy, doDispatch, doEdit, doHelp, getDefaultOperation, getInitParameter, getInitParameterNames, getOperationName, getPortletConfig, getPortletContext, getPortletName, getResourceBundle, getTitle, init, processAction, processDispatch, processEdit, processHelp, processView, render, render
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SearchPortlet

public SearchPortlet()
Method Detail

init

public void init()
Overrides:
init in class JBossPortlet

doView

public void doView(JBossRenderRequest rReq,
                   JBossRenderResponse rRes)
            throws PortletException,
                   java.io.IOException
Description copied from class: JBossPortlet
Throw a PortletException.

Overrides:
doView in class JBossPortlet
Throws:
PortletException
java.io.IOException

processAction

public void processAction(ActionRequest aReq,
                          ActionResponse aRes)
Description copied from interface: Portlet
Called by the portlet container to allow the portlet to process an action request. This method is called if the client request was originated by a URL created (by the portlet) with the RenderResponse.createActionURL() method.

Typically, in response to an action request, a portlet updates state based on the information sent in the action request parameters. In an action the portlet may:

A client request triggered by an action URL translates into one action request and many render requests, one per portlet in the portal page. The action processing must be finished before the render requests can be issued.

Specified by:
processAction in interface Portlet
Overrides:
processAction in class JBossPortlet
Parameters:
aReq - the action request
aRes - the action response