portal.process.action
Interface I_PortalAction

All Known Implementing Classes:
A_PortalAction

public interface I_PortalAction

A process action is called for each request, after the model instances have been updated by the view adapter (Chiba).

Process instances can survive within a specified scope: request, session, or application.

Process actions are compiled automatically by the first request.

Version:
$Revision: 1.5 $
Author:
Thomas Weckert

Method Summary
 void destroy()
           
 void doAction()
           
 java.util.Map getParams()
           
 PortalRequestContext getRequestContext()
           
 I_PortalActionScope getScope()
           
 void init(I_PortalActionScope scope, java.util.Map params)
           
 

Method Detail

doAction

public void doAction()
              throws PortalException
Throws:
PortalException

destroy

public void destroy()
             throws PortalException
Throws:
PortalException

init

public void init(I_PortalActionScope scope,
                 java.util.Map params)
          throws PortalException
Throws:
PortalException

getScope

public I_PortalActionScope getScope()

getRequestContext

public PortalRequestContext getRequestContext()

getParams

public java.util.Map getParams()