larryi      02/01/24 20:09:10

  Modified:    src/share/org/apache/tomcat/modules/server
                        Http10Interceptor.java
  Log:
  Add a setProperty method so attributes without a predefined setter will
  still be stored as attributes and made available to the socket factory.
  Now attributes such as keystoreType and the new keystorePass can be
  specified.  PureTLS unique attributes, such as rootfile, can be specified
  as well.
  
  Revision  Changes    Path
  1.30      +4 -0      
jakarta-tomcat/src/share/org/apache/tomcat/modules/server/Http10Interceptor.java
  
  Index: Http10Interceptor.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat/src/share/org/apache/tomcat/modules/server/Http10Interceptor.java,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- Http10Interceptor.java    8 Jan 2002 00:48:19 -0000       1.29
  +++ Http10Interceptor.java    25 Jan 2002 04:09:10 -0000      1.30
  @@ -127,6 +127,10 @@
           delaySocketClose=b;
       }
   
  +    public void setProperty( String prop, String value ) {
  +        setAttribute( prop, value );
  +    }
  +
       // -------------------- Handler implementation --------------------
       public void setServer( Object o ) {
        this.cm=(ContextManager)o;
  
  
  

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

Reply via email to