javax.servlet.jsp
Interface HttpJspPage


public abstract interface HttpJspPage
extends JspPage

This is the interface that a JSP processor-generated class for the HTTP protocol must satisfy.


Method Summary
 void _jspService(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          _jspService corresponds to the body of the 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


public void _jspService(javax.servlet.http.HttpServletRequest request,

                        javax.servlet.http.HttpServletResponse response)

                 throws javax.servlet.ServletException,

                        java.io.IOException
_jspService corresponds to the body of the JSP page. This method is defined automatically by the JSP processor and should NEVER BE DEFINED BY THE JSP AUTHOR