costin      2002/07/12 10:51:20

  Modified:    util/java/org/apache/tomcat/util/handler TcHandler.java
  Log:
  Added start/stop methods.
  
  Revision  Changes    Path
  1.2       +9 -1      
jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/handler/TcHandler.java
  
  Index: TcHandler.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/util/java/org/apache/tomcat/util/handler/TcHandler.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TcHandler.java    4 Apr 2002 21:59:13 -0000       1.1
  +++ TcHandler.java    12 Jul 2002 17:51:19 -0000      1.2
  @@ -72,7 +72,9 @@
    * axis Handler, tomcat3.3 Handler, apache2 Hooks etc.
    *
    * Both iterative (Interceptor, Hook ) and recursive ( Valve ) behavior are 
supported.
  - * Named TcHandler because Handler is way overloaded.
  + * Named TcHandler because Handler name is too overloaded.
  + *
  + * The interface allows both stateless and statefull implementations ( like Servlet 
).
    *
    * @author Costin Manolache
    */
  @@ -144,6 +146,12 @@
       /** Clean up and stop the handler. Override if needed.
        */
       public void destroy() throws IOException {
  +    }
  +
  +    public void start() throws IOException {
  +    }
  +
  +    public void stop() throws IOException {
       }
   
       // -------------------- Action --------------------
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to