javax.servlet.jsp
Interface JspPage

All Superinterfaces:
Servlet
All Known Subinterfaces:
HttpJspPage
All Known Implementing Classes:
JavaPage

public interface JspPage
extends Servlet

JspPage is the base interface for any JSP page.


Method Summary
 void jspDestroy()
          Called when closing the JSP page, after all requests.
 void jspInit()
          Called before the first request for a JSP page.
 
Methods inherited from interface javax.servlet.Servlet
destroy, getServletConfig, getServletInfo, init, service
 

Method Detail

jspInit

void jspInit()
Called before the first request for a JSP page.


jspDestroy

void jspDestroy()
Called when closing the JSP page, after all requests.