All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface javax.servlet.jsp.HttpJspPage

public interface HttpJspPage
extends JspPage
Every jsp page that is served to the client using the http protocol must implement this interface. The method _jspService is called on every request.


Method Index

 o _jspService(HttpServletRequest, HttpServletResponse)
This method is called on every request.

Methods

 o _jspService
 public abstract void _jspService(HttpServletRequest request,
                                  HttpServletResponse response) throws IOException, ServletException
This method is called on every request.

Parameters:
request - contains the request information
response - the reponse information
Throws: ServletException
XXX
Throws: IOException
XXX

All Packages  Class Hierarchy  This Package  Previous  Next  Index