com.ora.jsp.servlets
Interface Action
- All Known Implementing Classes:
- LogoutAction, StoreMsgAction, UpdateProfileAction, AuthenticateAction, ShowPageAction, LoginAction
- public interface Action
This interface must be implemented by all Action objects
used to process requests in the Project Billboard application.
- Version:
- 1.0
- Author:
- Hans Bergsten, Gefion software
Method Summary |
void |
perform(javax.servlet.http.HttpServlet servlet,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Perform the action implemented by the class. |
perform
public void perform(javax.servlet.http.HttpServlet servlet,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
throws java.io.IOException,
javax.servlet.ServletException
- Perform the action implemented by the class. This method
gives access to exectly the same information as a servlet
has access to, since in a way, an Action is just an extension
of a servlet.