remm        2002/06/08 19:19:44

  Modified:    catalina/src/share/org/apache/catalina/authenticator
                        AuthenticatorBase.java SSLAuthenticator.java
                        SingleSignOn.java
               catalina/src/share/org/apache/catalina/cluster
                        StandardCluster.java
               catalina/src/share/org/apache/catalina/core
                        ContainerBase.java FastEngineMapper.java
                        StandardHost.java StandardPipeline.java
                        StandardServer.java StandardService.java
               catalina/src/share/org/apache/catalina/logger
                        FileLogger.java
               catalina/src/share/org/apache/catalina/realm JAASRealm.java
                        JDBCRealm.java JNDIRealm.java MemoryRealm.java
                        RealmBase.java UserDatabaseRealm.java
               catalina/src/share/org/apache/catalina/session
                        PersistentManagerBase.java StandardManager.java
                        StoreBase.java
               catalina/src/share/org/apache/catalina/startup Embedded.java
               catalina/src/share/org/apache/catalina/valves
                        AccessLogValve.java CertificatesValve.java
  Log:
  - Fix Javadocs.
  - ISE should *not* be thrown when the component running state is invalid
    (bug 6206).
  
  Revision  Changes    Path
  1.32      +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/authenticator/AuthenticatorBase.java
  
  Index: AuthenticatorBase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/authenticator/AuthenticatorBase.java,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -u -r1.31 -r1.32
  --- AuthenticatorBase.java    14 Mar 2002 20:58:24 -0000      1.31
  +++ AuthenticatorBase.java    9 Jun 2002 02:19:41 -0000       1.32
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/authenticator/AuthenticatorBase.java,v
 1.31 2002/03/14 20:58:24 remm Exp $
  - * $Revision: 1.31 $
  - * $Date: 2002/03/14 20:58:24 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/authenticator/AuthenticatorBase.java,v
 1.32 2002/06/09 02:19:41 remm Exp $
  + * $Revision: 1.32 $
  + * $Date: 2002/06/09 02:19:41 $
    *
    * ====================================================================
    *
  @@ -121,7 +121,7 @@
    * requests.  Requests of any other type will simply be passed through.
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.31 $ $Date: 2002/03/14 20:58:24 $
  + * @version $Revision: 1.32 $ $Date: 2002/06/09 02:19:41 $
    */
   
   
  @@ -1054,8 +1054,6 @@
        * component.  This method should be called after <code>configure()</code>,
        * and before any of the public methods of the component are utilized.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents this component from being used
        */
  @@ -1114,7 +1112,6 @@
        * component.  This method should be the last one called on a given
        * instance of this component.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.11      +4 -8      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/authenticator/SSLAuthenticator.java
  
  Index: SSLAuthenticator.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/authenticator/SSLAuthenticator.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- SSLAuthenticator.java     19 Oct 2001 16:23:57 -0000      1.10
  +++ SSLAuthenticator.java     9 Jun 2002 02:19:41 -0000       1.11
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/authenticator/SSLAuthenticator.java,v
 1.10 2001/10/19 16:23:57 craigmcc Exp $
  - * $Revision: 1.10 $
  - * $Date: 2001/10/19 16:23:57 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/authenticator/SSLAuthenticator.java,v
 1.11 2002/06/09 02:19:41 remm Exp $
  + * $Revision: 1.11 $
  + * $Date: 2002/06/09 02:19:41 $
    *
    * ====================================================================
    *
  @@ -86,7 +86,7 @@
    * that utilizes SSL certificates to identify client users.
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.10 $ $Date: 2001/10/19 16:23:57 $
  + * @version $Revision: 1.11 $ $Date: 2002/06/09 02:19:41 $
    */
   
   public class SSLAuthenticator
  @@ -183,8 +183,6 @@
        * Initialize the database we will be using for client verification
        * and certificate validation (if any).
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents this component from being used
        */
  @@ -199,8 +197,6 @@
        * Finalize the database we used for client verification and
        * certificate validation (if any).
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  stopped
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents this component from being used
        */
  
  
  
  1.11      +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/authenticator/SingleSignOn.java
  
  Index: SingleSignOn.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/authenticator/SingleSignOn.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- SingleSignOn.java 9 Nov 2001 19:38:25 -0000       1.10
  +++ SingleSignOn.java 9 Jun 2002 02:19:41 -0000       1.11
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/authenticator/SingleSignOn.java,v
 1.10 2001/11/09 19:38:25 remm Exp $
  - * $Revision: 1.10 $
  - * $Date: 2001/11/09 19:38:25 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/authenticator/SingleSignOn.java,v
 1.11 2002/06/09 02:19:41 remm Exp $
  + * $Revision: 1.11 $
  + * $Date: 2002/06/09 02:19:41 $
    *
    * ====================================================================
    *
  @@ -109,7 +109,7 @@
    * </ul>
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.10 $ $Date: 2001/11/09 19:38:25 $
  + * @version $Revision: 1.11 $ $Date: 2002/06/09 02:19:41 $
    */
   
   public class SingleSignOn
  @@ -234,8 +234,6 @@
        * component.  This method should be called after <code>configure()</code>,
        * and before any of the public methods of the component are utilized.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents this component from being used
        */
  @@ -259,7 +257,6 @@
        * component.  This method should be the last one called on a given
        * instance of this component.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.6       +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/cluster/StandardCluster.java
  
  Index: StandardCluster.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/cluster/StandardCluster.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- StandardCluster.java      9 Nov 2001 19:46:16 -0000       1.5
  +++ StandardCluster.java      9 Jun 2002 02:19:42 -0000       1.6
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/cluster/StandardCluster.java,v
 1.5 2001/11/09 19:46:16 remm Exp $
  - * $Revision: 1.5 $
  - * $Date: 2001/11/09 19:46:16 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/cluster/StandardCluster.java,v
 1.6 2002/06/09 02:19:42 remm Exp $
  + * $Revision: 1.6 $
  + * $Date: 2002/06/09 02:19:42 $
    *
    * ====================================================================
    *
  @@ -84,7 +84,7 @@
    * a cluster and provides callers with a valid multicast receiver/sender.
    *
    * @author Bip Thelin
  - * @version $Revision: 1.5 $, $Date: 2001/11/09 19:46:16 $
  + * @version $Revision: 1.6 $, $Date: 2002/06/09 02:19:42 $
    */
   
   public final class StandardCluster
  @@ -501,8 +501,6 @@
        * component.  This method should be called after <code>configure()</code>,
        * and before any of the public methods of the component are utilized.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents this component from being used
        */
  @@ -549,7 +547,6 @@
        * component.  This method should be the last one called on a given
        * instance of this component.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.21      +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/ContainerBase.java
  
  Index: ContainerBase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/ContainerBase.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- ContainerBase.java        14 May 2002 16:27:05 -0000      1.20
  +++ ContainerBase.java        9 Jun 2002 02:19:42 -0000       1.21
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/ContainerBase.java,v
 1.20 2002/05/14 16:27:05 remm Exp $
  - * $Revision: 1.20 $
  - * $Date: 2002/05/14 16:27:05 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/ContainerBase.java,v
 1.21 2002/06/09 02:19:42 remm Exp $
  + * $Revision: 1.21 $
  + * $Date: 2002/06/09 02:19:42 $
    *
    * ====================================================================
    *
  @@ -156,7 +156,7 @@
    * class comments of the implementation class.
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.20 $ $Date: 2002/05/14 16:27:05 $
  + * @version $Revision: 1.21 $ $Date: 2002/06/09 02:19:42 $
    */
   
   public abstract class ContainerBase
  @@ -1144,8 +1144,6 @@
       /**
        * Prepare for active use of the public methods of this Component.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents it from being started
        */
  @@ -1206,7 +1204,6 @@
       /**
        * Gracefully shut down active use of the public methods of this Component.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.4       +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/FastEngineMapper.java
  
  Index: FastEngineMapper.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/FastEngineMapper.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- FastEngineMapper.java     9 Nov 2001 19:39:11 -0000       1.3
  +++ FastEngineMapper.java     9 Jun 2002 02:19:42 -0000       1.4
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/FastEngineMapper.java,v
 1.3 2001/11/09 19:39:11 remm Exp $
  - * $Revision: 1.3 $
  - * $Date: 2001/11/09 19:39:11 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/FastEngineMapper.java,v
 1.4 2002/06/09 02:19:42 remm Exp $
  + * $Revision: 1.4 $
  + * $Date: 2002/06/09 02:19:42 $
    *
    * ====================================================================
    *
  @@ -93,7 +93,7 @@
    * <code>StandardEngine</code>, because it relies on internal APIs.
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.3 $ $Date: 2001/11/09 19:39:11 $
  + * @version $Revision: 1.4 $ $Date: 2002/06/09 02:19:42 $
    */
   
   public final class FastEngineMapper
  @@ -320,8 +320,6 @@
       /**
        * Prepare for active use of the public methods of this Component.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents it from being started
        */
  @@ -354,7 +352,6 @@
       /**
        * Gracefully shut down active use of the public methods of this Component.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.29      +4 -6      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/StandardHost.java
  
  Index: StandardHost.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/StandardHost.java,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- StandardHost.java 16 May 2002 21:40:46 -0000      1.28
  +++ StandardHost.java 9 Jun 2002 02:19:42 -0000       1.29
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/StandardHost.java,v
 1.28 2002/05/16 21:40:46 glenn Exp $
  - * $Revision: 1.28 $
  - * $Date: 2002/05/16 21:40:46 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/StandardHost.java,v
 1.29 2002/06/09 02:19:42 remm Exp $
  + * $Revision: 1.29 $
  + * $Date: 2002/06/09 02:19:42 $
    *
    * ====================================================================
    *
  @@ -95,7 +95,7 @@
    *
    * @author Craig R. McClanahan
    * @author Remy Maucherat
  - * @version $Revision: 1.28 $ $Date: 2002/05/16 21:40:46 $
  + * @version $Revision: 1.29 $ $Date: 2002/06/09 02:19:42 $
    */
   
   public class StandardHost
  @@ -713,8 +713,6 @@
       /**
        * Start this host.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents it from being started
        */
  
  
  
  1.8       +3 -6      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/StandardPipeline.java
  
  Index: StandardPipeline.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/StandardPipeline.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- StandardPipeline.java     14 May 2002 16:27:05 -0000      1.7
  +++ StandardPipeline.java     9 Jun 2002 02:19:42 -0000       1.8
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/StandardPipeline.java,v
 1.7 2002/05/14 16:27:05 remm Exp $
  - * $Revision: 1.7 $
  - * $Date: 2002/05/14 16:27:05 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/StandardPipeline.java,v
 1.8 2002/06/09 02:19:42 remm Exp $
  + * $Revision: 1.8 $
  + * $Date: 2002/06/09 02:19:42 $
    *
    * ====================================================================
    *
  @@ -259,8 +259,6 @@
       /**
        * Prepare for active use of the public methods of this Component.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents it from being started
        */
  @@ -296,7 +294,6 @@
       /**
        * Gracefully shut down active use of the public methods of this Component.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.28      +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/StandardServer.java
  
  Index: StandardServer.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/StandardServer.java,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- StandardServer.java       24 May 2002 17:20:00 -0000      1.27
  +++ StandardServer.java       9 Jun 2002 02:19:42 -0000       1.28
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/StandardServer.java,v
 1.27 2002/05/24 17:20:00 remm Exp $
  - * $Revision: 1.27 $
  - * $Date: 2002/05/24 17:20:00 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/StandardServer.java,v
 1.28 2002/06/09 02:19:42 remm Exp $
  + * $Revision: 1.28 $
  + * $Date: 2002/06/09 02:19:42 $
    *
    * ====================================================================
    *
  @@ -131,7 +131,7 @@
    * (but not required) when deploying and starting Catalina.
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.27 $ $Date: 2002/05/24 17:20:00 $
  + * @version $Revision: 1.28 $ $Date: 2002/06/09 02:19:42 $
    */
   
   public final class StandardServer
  @@ -2161,8 +2161,6 @@
        * methods of this component are utilized.  It should also send a
        * LifecycleEvent of type START_EVENT to any registered listeners.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents this component from being used
        */
  @@ -2199,7 +2197,6 @@
        * instance of this component.  It should also send a LifecycleEvent
        * of type STOP_EVENT to any registered listeners.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.11      +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/StandardService.java
  
  Index: StandardService.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/StandardService.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- StandardService.java      14 May 2002 16:27:05 -0000      1.10
  +++ StandardService.java      9 Jun 2002 02:19:42 -0000       1.11
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/StandardService.java,v
 1.10 2002/05/14 16:27:05 remm Exp $
  - * $Revision: 1.10 $
  - * $Date: 2002/05/14 16:27:05 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core/StandardService.java,v
 1.11 2002/06/09 02:19:42 remm Exp $
  + * $Revision: 1.11 $
  + * $Date: 2002/06/09 02:19:42 $
    *
    * ====================================================================
    *
  @@ -86,7 +86,7 @@
    * not required.
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.10 $ $Date: 2002/05/14 16:27:05 $
  + * @version $Revision: 1.11 $ $Date: 2002/06/09 02:19:42 $
    */
   
   public final class StandardService
  @@ -471,8 +471,6 @@
        * methods of this component are utilized.  It should also send a
        * LifecycleEvent of type START_EVENT to any registered listeners.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents this component from being used
        */
  @@ -521,7 +519,6 @@
        * instance of this component.  It should also send a LifecycleEvent
        * of type STOP_EVENT to any registered listeners.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.8       +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/logger/FileLogger.java
  
  Index: FileLogger.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/logger/FileLogger.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- FileLogger.java   26 Apr 2002 21:09:06 -0000      1.7
  +++ FileLogger.java   9 Jun 2002 02:19:43 -0000       1.8
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/logger/FileLogger.java,v
 1.7 2002/04/26 21:09:06 craigmcc Exp $
  - * $Revision: 1.7 $
  - * $Date: 2002/04/26 21:09:06 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/logger/FileLogger.java,v
 1.8 2002/06/09 02:19:43 remm Exp $
  + * $Revision: 1.8 $
  + * $Date: 2002/06/09 02:19:43 $
    *
    * ====================================================================
    *
  @@ -84,7 +84,7 @@
    * optional preceding timestamp.
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.7 $ $Date: 2002/04/26 21:09:06 $
  + * @version $Revision: 1.8 $ $Date: 2002/06/09 02:19:43 $
    */
   
   public class FileLogger
  @@ -383,8 +383,6 @@
        * component.  This method should be called after <code>configure()</code>,
        * and before any of the public methods of the component are utilized.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents this component from being used
        */
  @@ -405,7 +403,6 @@
        * component.  This method should be the last one called on a given
        * instance of this component.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.3       +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/JAASRealm.java
  
  Index: JAASRealm.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/JAASRealm.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- JAASRealm.java    24 Jan 2002 22:04:55 -0000      1.2
  +++ JAASRealm.java    9 Jun 2002 02:19:43 -0000       1.3
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/JAASRealm.java,v
 1.2 2002/01/24 22:04:55 craigmcc Exp $
  - * $Revision: 1.2 $
  - * $Date: 2002/01/24 22:04:55 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/JAASRealm.java,v
 1.3 2002/06/09 02:19:43 remm Exp $
  + * $Revision: 1.3 $
  + * $Date: 2002/06/09 02:19:43 $
    *
    * ====================================================================
    * The Apache Software License, Version 1.1
  @@ -131,7 +131,7 @@
    * </ul>
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.2 $ $Date: 2002/01/24 22:04:55 $
  + * @version $Revision: 1.3 $ $Date: 2002/06/09 02:19:43 $
    */
   
   public class JAASRealm
  @@ -397,8 +397,6 @@
        *
        * Prepare for active use of the public methods of this Component.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents it from being started
        */
  @@ -413,7 +411,6 @@
       /**
        * Gracefully shut down active use of the public methods of this Component.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.21      +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/JDBCRealm.java
  
  Index: JDBCRealm.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/JDBCRealm.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- JDBCRealm.java    25 Oct 2001 21:43:14 -0000      1.20
  +++ JDBCRealm.java    9 Jun 2002 02:19:43 -0000       1.21
  @@ -1,7 +1,7 @@
   /*
  -* $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/JDBCRealm.java,v
 1.20 2001/10/25 21:43:14 amyroh Exp $
  -* $Revision: 1.20 $
  -* $Date: 2001/10/25 21:43:14 $
  +* $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/JDBCRealm.java,v
 1.21 2002/06/09 02:19:43 remm Exp $
  +* $Revision: 1.21 $
  +* $Date: 2002/06/09 02:19:43 $
   *
   * ====================================================================
   * The Apache Software License, Version 1.1
  @@ -100,7 +100,7 @@
   * @author Craig R. McClanahan
   * @author Carson McDonald
   * @author Ignacio Ortega
  -* @version $Revision: 1.20 $ $Date: 2001/10/25 21:43:14 $
  +* @version $Revision: 1.21 $ $Date: 2002/06/09 02:19:43 $
   */
   
   public class JDBCRealm
  @@ -669,8 +669,6 @@
        *
        * Prepare for active use of the public methods of this Component.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents it from being started
        */
  @@ -692,7 +690,6 @@
       /**
        * Gracefully shut down active use of the public methods of this Component.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.7       +4 -8      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/JNDIRealm.java
  
  Index: JNDIRealm.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/JNDIRealm.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- JNDIRealm.java    15 Mar 2002 18:37:42 -0000      1.6
  +++ JNDIRealm.java    9 Jun 2002 02:19:43 -0000       1.7
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/JNDIRealm.java,v
 1.6 2002/03/15 18:37:42 craigmcc Exp $
  - * $Revision: 1.6 $
  - * $Date: 2002/03/15 18:37:42 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/JNDIRealm.java,v
 1.7 2002/06/09 02:19:43 remm Exp $
  + * $Revision: 1.7 $
  + * $Date: 2002/06/09 02:19:43 $
    *
    * ====================================================================
    * The Apache Software License, Version 1.1
  @@ -180,7 +180,7 @@
    *
    * @author John Holman
    * @author Craig R. McClanahan
  - * @version $Revision: 1.6 $ $Date: 2002/03/15 18:37:42 $
  + * @version $Revision: 1.7 $ $Date: 2002/06/09 02:19:43 $
    */
   
   public class JNDIRealm extends RealmBase {
  @@ -1317,8 +1317,6 @@
       /**
        * Prepare for active use of the public methods of this Component.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents it from being started
        */
  @@ -1340,8 +1338,6 @@
       /**
        * Gracefully shut down active use of the public methods of this Component.
        *
  -     * @exception IllegalStateException if this component has not been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.13      +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/MemoryRealm.java
  
  Index: MemoryRealm.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/MemoryRealm.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- MemoryRealm.java  17 Oct 2001 00:44:02 -0000      1.12
  +++ MemoryRealm.java  9 Jun 2002 02:19:43 -0000       1.13
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/MemoryRealm.java,v
 1.12 2001/10/17 00:44:02 craigmcc Exp $
  - * $Revision: 1.12 $
  - * $Date: 2001/10/17 00:44:02 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/MemoryRealm.java,v
 1.13 2002/06/09 02:19:43 remm Exp $
  + * $Revision: 1.13 $
  + * $Date: 2002/06/09 02:19:43 $
    *
    * ====================================================================
    *
  @@ -92,7 +92,7 @@
    * synchronization is performed around accesses to the principals collection.
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.12 $ $Date: 2001/10/17 00:44:02 $
  + * @version $Revision: 1.13 $ $Date: 2002/06/09 02:19:43 $
    */
   
   public final class MemoryRealm
  @@ -327,8 +327,6 @@
       /**
        * Prepare for active use of the public methods of this Component.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents it from being started
        */
  @@ -366,7 +364,6 @@
       /**
        * Gracefully shut down active use of the public methods of this Component.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.12      +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/RealmBase.java
  
  Index: RealmBase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/RealmBase.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- RealmBase.java    30 May 2002 20:14:29 -0000      1.11
  +++ RealmBase.java    9 Jun 2002 02:19:43 -0000       1.12
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/RealmBase.java,v
 1.11 2002/05/30 20:14:29 remm Exp $
  - * $Revision: 1.11 $
  - * $Date: 2002/05/30 20:14:29 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/RealmBase.java,v
 1.12 2002/06/09 02:19:43 remm Exp $
  + * $Revision: 1.12 $
  + * $Date: 2002/06/09 02:19:43 $
    *
    * ====================================================================
    *
  @@ -91,7 +91,7 @@
    * location) are identical to those currently supported by Tomcat 3.X.
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.11 $ $Date: 2002/05/30 20:14:29 $
  + * @version $Revision: 1.12 $ $Date: 2002/06/09 02:19:43 $
    */
   
   public abstract class RealmBase
  @@ -507,8 +507,6 @@
        * methods of this component are utilized.  It should also send a
        * LifecycleEvent of type START_EVENT to any registered listeners.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents this component from being used
        */
  @@ -540,7 +538,6 @@
        * instance of this component.  It should also send a LifecycleEvent
        * of type STOP_EVENT to any registered listeners.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.8       +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/UserDatabaseRealm.java
  
  Index: UserDatabaseRealm.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/UserDatabaseRealm.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- UserDatabaseRealm.java    6 May 2002 23:08:32 -0000       1.7
  +++ UserDatabaseRealm.java    9 Jun 2002 02:19:43 -0000       1.8
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/UserDatabaseRealm.java,v
 1.7 2002/05/06 23:08:32 craigmcc Exp $
  - * $Revision: 1.7 $
  - * $Date: 2002/05/06 23:08:32 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/realm/UserDatabaseRealm.java,v
 1.8 2002/06/09 02:19:43 remm Exp $
  + * $Revision: 1.8 $
  + * $Date: 2002/06/09 02:19:43 $
    *
    * ====================================================================
    *
  @@ -98,7 +98,7 @@
    * of <code>UserDatabase</code> that we should consult.</p>
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.7 $ $Date: 2002/05/06 23:08:32 $
  + * @version $Revision: 1.8 $ $Date: 2002/06/09 02:19:43 $
    * @since 4.1
    */
   
  @@ -291,8 +291,6 @@
       /**
        * Prepare for active use of the public methods of this Component.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents it from being started
        */
  @@ -321,7 +319,6 @@
       /**
        * Gracefully shut down active use of the public methods of this Component.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.8       +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/session/PersistentManagerBase.java
  
  Index: PersistentManagerBase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/session/PersistentManagerBase.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- PersistentManagerBase.java        9 Nov 2001 19:40:25 -0000       1.7
  +++ PersistentManagerBase.java        9 Jun 2002 02:19:43 -0000       1.8
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/session/PersistentManagerBase.java,v
 1.7 2001/11/09 19:40:25 remm Exp $
  - * $Revision: 1.7 $
  - * $Date: 2001/11/09 19:40:25 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/session/PersistentManagerBase.java,v
 1.8 2002/06/09 02:19:43 remm Exp $
  + * $Revision: 1.8 $
  + * $Date: 2002/06/09 02:19:43 $
    *
    * ====================================================================
    *
  @@ -105,7 +105,7 @@
    * <code>stop()</code> methods of this class at the correct times.
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.7 $ $Date: 2001/11/09 19:40:25 $
  + * @version $Revision: 1.8 $ $Date: 2002/06/09 02:19:43 $
    */
   
   public abstract class PersistentManagerBase
  @@ -810,8 +810,6 @@
        * component.  This method should be called after <code>configure()</code>,
        * and before any of the public methods of the component are utilized.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents this component from being used
        */
  @@ -850,7 +848,6 @@
        * component.  This method should be the last one called on a given
        * instance of this component.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.19      +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/session/StandardManager.java
  
  Index: StandardManager.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/session/StandardManager.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- StandardManager.java      19 Jan 2002 01:58:24 -0000      1.18
  +++ StandardManager.java      9 Jun 2002 02:19:43 -0000       1.19
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/session/StandardManager.java,v
 1.18 2002/01/19 01:58:24 craigmcc Exp $
  - * $Revision: 1.18 $
  - * $Date: 2002/01/19 01:58:24 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/session/StandardManager.java,v
 1.19 2002/06/09 02:19:43 remm Exp $
  + * $Revision: 1.19 $
  + * $Date: 2002/06/09 02:19:43 $
    *
    * ====================================================================
    *
  @@ -106,7 +106,7 @@
    * <code>stop()</code> methods of this class at the correct times.
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.18 $ $Date: 2002/01/19 01:58:24 $
  + * @version $Revision: 1.19 $ $Date: 2002/06/09 02:19:43 $
    */
   
   public class StandardManager
  @@ -599,8 +599,6 @@
        * component.  This method should be called after <code>configure()</code>,
        * and before any of the public methods of the component are utilized.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents this component from being used
        */
  @@ -641,7 +639,6 @@
        * component.  This method should be the last one called on a given
        * instance of this component.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.5       +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/session/StoreBase.java
  
  Index: StoreBase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/session/StoreBase.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- StoreBase.java    9 Nov 2001 19:40:26 -0000       1.4
  +++ StoreBase.java    9 Jun 2002 02:19:43 -0000       1.5
  @@ -1,8 +1,8 @@
   /*
    * StoreBase.java
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/session/StoreBase.java,v
 1.4 2001/11/09 19:40:26 remm Exp $
  - * $Revision: 1.4 $
  - * $Date: 2001/11/09 19:40:26 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/session/StoreBase.java,v
 1.5 2002/06/09 02:19:43 remm Exp $
  + * $Revision: 1.5 $
  + * $Date: 2002/06/09 02:19:43 $
    *
    * ====================================================================
    *
  @@ -83,7 +83,7 @@
    * support most of the functionality required by a Store.
    *
    * @author Bip Thelin
  - * @version $Revision: 1.4 $, $Date: 2001/11/09 19:40:26 $
  + * @version $Revision: 1.5 $, $Date: 2002/06/09 02:19:43 $
    */
   
   public abstract class StoreBase
  @@ -368,8 +368,6 @@
        * component.  This method should be called after <code>configure()</code>,
        * and before any of the public methods of the component are utilized.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents this component from being used
        */
  @@ -390,7 +388,6 @@
        * component.  This method should be the last one called on a given
        * instance of this component.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.16      +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/startup/Embedded.java
  
  Index: Embedded.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/startup/Embedded.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- Embedded.java     6 Jun 2002 06:29:17 -0000       1.15
  +++ Embedded.java     9 Jun 2002 02:19:44 -0000       1.16
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/startup/Embedded.java,v
 1.15 2002/06/06 06:29:17 remm Exp $
  - * $Revision: 1.15 $
  - * $Date: 2002/06/06 06:29:17 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/startup/Embedded.java,v
 1.16 2002/06/09 02:19:44 remm Exp $
  + * $Revision: 1.16 $
  + * $Date: 2002/06/09 02:19:44 $
    *
    * ====================================================================
    *
  @@ -151,7 +151,7 @@
    * </pre>
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.15 $ $Date: 2002/06/06 06:29:17 $
  + * @version $Revision: 1.16 $ $Date: 2002/06/09 02:19:44 $
    */
   
   public class Embedded implements Lifecycle {
  @@ -941,8 +941,6 @@
        * component.  This method should be called after <code>configure()</code>,
        * and before any of the public methods of the component are utilized.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents this component from being used
        */
  @@ -1011,7 +1009,6 @@
        * component.  This method should be the last one called on a given
        * instance of this component.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.14      +1 -4      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/valves/AccessLogValve.java
  
  Index: AccessLogValve.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/valves/AccessLogValve.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- AccessLogValve.java       9 Nov 2001 19:41:10 -0000       1.13
  +++ AccessLogValve.java       9 Jun 2002 02:19:44 -0000       1.14
  @@ -129,7 +129,7 @@
    *
    * @author Craig R. McClanahan
    * @author Jason Brittain
  - * @version $Revision: 1.13 $ $Date: 2001/11/09 19:41:10 $
  + * @version $Revision: 1.14 $ $Date: 2002/06/09 02:19:44 $
    */
   
   public final class AccessLogValve
  @@ -858,8 +858,6 @@
        * component.  This method should be called after <code>configure()</code>,
        * and before any of the public methods of the component are utilized.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents this component from being used
        */
  @@ -901,7 +899,6 @@
        * component.  This method should be the last one called on a given
        * instance of this component.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  
  1.10      +4 -7      
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/valves/CertificatesValve.java
  
  Index: CertificatesValve.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/valves/CertificatesValve.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- CertificatesValve.java    9 Nov 2001 19:41:10 -0000       1.9
  +++ CertificatesValve.java    9 Jun 2002 02:19:44 -0000       1.10
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/valves/CertificatesValve.java,v
 1.9 2001/11/09 19:41:10 remm Exp $
  - * $Revision: 1.9 $
  - * $Date: 2001/11/09 19:41:10 $
  + * $Header: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/valves/CertificatesValve.java,v
 1.10 2002/06/09 02:19:44 remm Exp $
  + * $Revision: 1.10 $
  + * $Date: 2002/06/09 02:19:44 $
    *
    * ====================================================================
    *
  @@ -112,7 +112,7 @@
    * amount of code that has to check for the existence of JSSE classes.</p>
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.9 $ $Date: 2001/11/09 19:41:10 $
  + * @version $Revision: 1.10 $ $Date: 2002/06/09 02:19:44 $
    */
   
   public final class CertificatesValve
  @@ -292,8 +292,6 @@
        * methods of this component are utilized.  It should also send a
        * LifecycleEvent of type START_EVENT to any registered listeners.
        *
  -     * @exception IllegalStateException if this component has already been
  -     *  started
        * @exception LifecycleException if this component detects a fatal error
        *  that prevents this component from being used
        */
  @@ -331,7 +329,6 @@
        * instance of this component.  It should also send a LifecycleEvent
        * of type STOP_EVENT to any registered listeners.
        *
  -     * @exception IllegalStateException if this component has not been started
        * @exception LifecycleException if this component detects a fatal error
        *  that needs to be reported
        */
  
  
  

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

Reply via email to