home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2000 November / APCD25112k.iso / feature / webserv / SAMBAR43.ZIP / _SETUP.1 / javaeng.jar / javax / servlet / jsp / HttpJspPage.java < prev    next >
Encoding:
Java Source  |  2000-04-03  |  1.6 KB  |  46 lines

  1. /*
  2.  * HttpJspPage.java -- XXX
  3.  * 
  4.  * Copyright (c) 1999 by Free Software Foundation, Inc.
  5.  * Written by Mark Wielaard (mark@klomp.org)
  6.  * 
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU Library General Public License as published
  9.  * by the Free Software Foundation, version 2. (see COPYING.LIB)
  10.  *
  11.  * This program is distributed in the hope that it will be useful, but
  12.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software Foundation  
  18.  * Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307 USA
  19.  */
  20.  
  21. package javax.servlet.jsp;
  22.  
  23. import java.io.IOException;
  24. import javax.servlet.http.HttpServletRequest;
  25. import javax.servlet.http.HttpServletResponse;
  26. import javax.servlet.ServletException;
  27.  
  28. /**
  29.  * Every jsp page that is served to the client using the http protocol must implement this interface.
  30.  * The method _jspService is called on every request.
  31.  */
  32. public interface HttpJspPage extends JspPage {
  33.  
  34.     /**
  35.      * This method is called on every request.
  36.      *
  37.      * @param request contains the request information
  38.      * @param response the reponse information
  39.      * @exception ServletException XXX
  40.      * @exception IOException XXX
  41.      */
  42.     void _jspService(HttpServletRequest request,
  43.                 HttpServletResponse response)
  44.                     throws IOException, ServletException;
  45. }
  46.