You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by re...@apache.org on 2001/12/20 21:51:41 UTC

cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/server/tomcat40 Ajp13Connector.java Ajp13Processor.java

remm        01/12/20 12:51:40

  Modified:    jk/java/org/apache/jk/server/tomcat40 Ajp13Connector.java
                        Ajp13Processor.java
  Log:
  - Also add the new findLifecycleListeners in the new jk.server.tomcat40 package
    (what's the difference with o.a.ajp.tomcat4, btw ?).
  
  Revision  Changes    Path
  1.2       +10 -1     jakarta-tomcat-connectors/jk/java/org/apache/jk/server/tomcat40/Ajp13Connector.java
  
  Index: Ajp13Connector.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/java/org/apache/jk/server/tomcat40/Ajp13Connector.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Ajp13Connector.java	2001/12/18 22:17:26	1.1
  +++ Ajp13Connector.java	2001/12/20 20:51:40	1.2
  @@ -87,7 +87,7 @@
    * Implementation of an Ajp13 connector.
    *
    * @author Kevin Seguin
  - * @version $Revision: 1.1 $ $Date: 2001/12/18 22:17:26 $
  + * @version $Revision: 1.2 $ $Date: 2001/12/20 20:51:40 $
    */
   
   
  @@ -871,6 +871,15 @@
   
   	lifecycle.addLifecycleListener(listener);
   
  +    }
  +
  +
  +    /**
  +     * Get the lifecycle listeners associated with this lifecycle. If this
  +     * Lifecycle has no listeners registered, a zero-length array is returned.
  +     */
  +    public LifecycleListener[] findLifecycleListeners() {
  +        return null; // FIXME: lifecycle.findLifecycleListeners();
       }
   
   
  
  
  
  1.2       +10 -1     jakarta-tomcat-connectors/jk/java/org/apache/jk/server/tomcat40/Ajp13Processor.java
  
  Index: Ajp13Processor.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/jk/java/org/apache/jk/server/tomcat40/Ajp13Processor.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Ajp13Processor.java	2001/12/18 22:17:26	1.1
  +++ Ajp13Processor.java	2001/12/20 20:51:40	1.2
  @@ -96,7 +96,7 @@
   
   /**
    * @author Kevin Seguin
  - * @version $Revision: 1.1 $ $Date: 2001/12/18 22:17:26 $
  + * @version $Revision: 1.2 $ $Date: 2001/12/20 20:51:40 $
    */
   
   final class Ajp13Processor
  @@ -480,6 +480,15 @@
   
   	lifecycle.addLifecycleListener(listener);
   
  +    }
  +
  +
  +    /**
  +     * Get the lifecycle listeners associated with this lifecycle. If this
  +     * Lifecycle has no listeners registered, a zero-length array is returned.
  +     */
  +    public LifecycleListener[] findLifecycleListeners() {
  +        return null; // FIXME: lifecycle.findLifecycleListeners();
       }
   
   
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: cvs commit: jakarta-tomcat-connectors/jk/java/org/apache/jk/server/tomcat40 Ajp13Connector.java Ajp13Processor.java

Posted by co...@covalent.net.
On 20 Dec 2001 remm@apache.org wrote:

>   Modified:    jk/java/org/apache/jk/server/tomcat40 Ajp13Connector.java
>                         Ajp13Processor.java
>   Log:
>   - Also add the new findLifecycleListeners in the new jk.server.tomcat40 package
>     (what's the difference with o.a.ajp.tomcat4, btw ?).

No difference right now  - o.a.ajp is the 'stable' version, o.a.jk will be
part of jk2 ( i.e. will have a lot of changes, try to implement autoconf,
etc).

But the current version is identical, I haven't started anything yet.

( we could ignore it from the build, but it doesn't hurt, and it's good in
future to have both in the jar - so people can fall back to the
'stable' one or play with the new features )

Costin


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>