home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 September / PCWorld_2000-09_cd.bin / Komunik / sambar / _setup.1 / javaeng.jar / javax / servlet / SingleThreadModel.java < prev    next >
Text File  |  2000-04-03  |  1KB  |  43 lines

  1. /*
  2.  * SingleThreadModel.java -- Interface indicating a "single" thread model
  3.  *
  4.  * Copyright (c) 1998, 1999 by Free Software Foundation, Inc.
  5.  * Written by Paul Siegmann (pauls@euronet.nl)
  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;
  22.  
  23. /**
  24.  * SingleThreadModel.java -- Interface indicating a "single" thread model
  25.  *
  26. #ifdef SERVLET_2_0
  27.  * @version Servlet API 2.0 
  28. #endif
  29. #ifdef SERVLET_2_1
  30.  * @version Servlet API 2.1
  31. #endif
  32. #ifdef SERVLET_2_2
  33.  * @version Servlet API 2.2
  34. #endif
  35.  * @since Servlet API 2.0
  36.  * @author Paul Siegmann (pauls@euronet.nl)
  37.  */
  38. public interface SingleThreadModel
  39. {
  40. }
  41.  
  42.  
  43.