home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 November / PCWorld_2000-11_cd.bin / Komunik / sambar444 / _SETUP.1 / javaeng.jar / javax / servlet / SingleThreadModel.java < prev    next >
Text File  |  2000-08-09  |  1KB  |  35 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.  * @version Servlet API 2.2
  27.  * @since Servlet API 2.0
  28.  * @author Paul Siegmann (pauls@euronet.nl)
  29.  */
  30. public interface SingleThreadModel
  31. {
  32. }
  33.  
  34.  
  35.