javax.servlet.jsp
Interface HttpJspPage

All Superinterfaces:
JspPage, Servlet
All Known Implementing Classes:
JavaPage

public interface HttpJspPage
extends JspPage

HttpJspPage is the normal interface to extend when implementing a custom base class.

Applications wanting to extend the base JSP class with the <%@ page extends %> directive must implement HttpJspPage.


Method Summary
 void _jspService(HttpServletRequest request, HttpServletResponse response)
          The main service method for a JSP page.
 
Methods inherited from interface javax.servlet.jsp.JspPage
jspDestroy, jspInit
 
Methods inherited from interface javax.servlet.Servlet
destroy, getServletConfig, getServletInfo, init, service
 

Method Detail

_jspService

void _jspService(HttpServletRequest request,
                 HttpServletResponse response)
                 throws ServletException,
                        java.io.IOException
The main service method for a JSP page. Implementing classes must call this to service the JSP page itself.

Parameters:
request - the servlet request.
response - the servlet response.
Throws:
ServletException
java.io.IOException