amyroh      02/05/16 13:46:00

  Modified:    catalina/src/share/org/apache/catalina/mbeans
                        mbeans-descriptors.xml
  Log:
  Add back the mbean descriptions for Http10Connector and Http11Connector.
  
  Revision  Changes    Path
  1.57      +155 -2    
jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/mbeans/mbeans-descriptors.xml
  
  Index: mbeans-descriptors.xml
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/mbeans/mbeans-descriptors.xml,v
  retrieving revision 1.56
  retrieving revision 1.57
  diff -u -r1.56 -r1.57
  --- mbeans-descriptors.xml    6 May 2002 23:08:31 -0000       1.56
  +++ mbeans-descriptors.xml    16 May 2002 20:46:00 -0000      1.57
  @@ -6,7 +6,7 @@
   <!--
        Descriptions of JMX MBeans for Catalina
   
  -     $Id: mbeans-descriptors.xml,v 1.56 2002/05/06 23:08:31 craigmcc Exp $
  +     $Id: mbeans-descriptors.xml,v 1.57 2002/05/16 20:46:00 amyroh Exp $
    -->
   
   <mbeans-descriptors>
  @@ -576,7 +576,160 @@
                    type="int"/>
   
     </mbean>
  - 
  +
  +
  +  <mbean         name="Http10Connector"
  +            className="org.apache.catalina.mbeans.ClassNameMBean"
  +          description="HTTP/1.0 Connector for Tomcat Standalone"
  +               domain="Catalina"
  +                group="Connector"
  +                 type="org.apache.catalina.connector.http10.HttpConnector">
  +
  +    <attribute   name="acceptCount"
  +          description="The accept count for this Connector"
  +                 type="int"/>
  +
  +    <attribute   name="address"
  +          description="The IP address on which to bind"
  +                 type="java.lang.String"/>
  +
  +    <attribute   name="bufferSize"
  +          description="The input buffer size we should create on input streams"
  +                 type="int"/>
  +
  +    <attribute   name="className"
  +          description="Fully qualified class name of the managed object"
  +                 type="java.lang.String"
  +            writeable="false"/>
  +
  +    <attribute   name="connectionTimeout"
  +          description="Timeout value on the incoming connection"
  +                 type="int"/>
  +
  +    <attribute   name="debug"
  +          description="The debugging detail level for this component"
  +                 type="int"/>
  +
  +    <attribute   name="enableLookups"
  +          description="The 'enable DNS lookups' flag for this Connector"
  +                 type="boolean"/>
  +
  +    <attribute   name="maxProcessors"
  +          description="The maximum number of processors allowed"
  +                 type="int"/>
  +
  +    <attribute   name="minProcessors"
  +          description="The minimum number of processors to start at
  +                        initialization time"
  +                 type="int"/>
  +
  +    <attribute   name="port"
  +          description="TCP port number to listen on"
  +                 type="int"/>
  +
  +    <attribute   name="proxyName"
  +          description="The server name to which we should pretend requests to
  +                        this Connector were directed"
  +                 type="java.lang.String"/>
  +
  +    <attribute   name="proxyPort"
  +          description="The server port to which we should pretend requests to
  +                        this Connector were directed"
  +                 type="int"/>
  +
  +    <attribute   name="redirectPort"
  +          description="The redirect port for non-SSL to SSL redirects"
  +                 type="int"/>
  +
  +    <attribute   name="scheme"
  +          description="Protocol name for this Connector (http, https)"
  +                 type="java.lang.String"/>
  +
  +    <attribute   name="secure"
  +          description="Is this a secure (SSL) Connector?"
  +                 type="boolean"/>
  +
  +  </mbean>
  +
  +
  +  <mbean         name="Http11Connector"
  +            className="org.apache.catalina.mbeans.ClassNameMBean"
  +          description="HTTP/1.1 Connector for Tomcat Standalone"
  +               domain="Catalina"
  +                group="Connector"
  +                 type="org.apache.catalina.connector.http.HttpConnector">
  +
  +    <attribute   name="acceptCount"
  +          description="The accept count for this Connector"
  +                 type="int"/>
  +
  +    <attribute   name="address"
  +          description="The IP address on which to bind"
  +                 type="java.lang.String"/>
  +
  +    <attribute   name="allowChunking"
  +          description="Flag which indicates if HTTP/1.1 chunking transfer
  +                        encoding can be used"
  +                 type="boolean"/>
  +
  +    <attribute   name="bufferSize"
  +          description="The input buffer size we should create on input streams"
  +                 type="int"/>
  +
  +    <attribute   name="className"
  +          description="Fully qualified class name of the managed object"
  +                 type="java.lang.String"
  +            writeable="false"/>
  +
  +    <attribute   name="connectionTimeout"
  +          description="Timeout value on the incoming connection"
  +                 type="int"/>
  +
  +    <attribute   name="debug"
  +          description="The debugging detail level for this component"
  +                 type="int"/>
  +
  +    <attribute   name="enableLookups"
  +          description="The 'enable DNS lookups' flag for this Connector"
  +                 type="boolean"/>
  +
  +    <attribute   name="maxProcessors"
  +          description="The maximum number of processors allowed"
  +                 type="int"/>
  +
  +    <attribute   name="minProcessors"
  +          description="The minimum number of processors to start at
  +                        initialization time"
  +                 type="int"/>
  +
  +    <attribute   name="port"
  +          description="TCP port number to listen on"
  +                 type="int"/>
  +
  +    <attribute   name="proxyName"
  +          description="The server name to which we should pretend requests to
  +                        this Connector were directed"
  +                 type="java.lang.String"/>
  +
  +    <attribute   name="proxyPort"
  +          description="The server port to which we should pretend requests to
  +                        this Connector were directed"
  +                 type="int"/>
  +
  +    <attribute   name="redirectPort"
  +          description="The redirect port for non-SSL to SSL redirects"
  +                 type="int"/>
  +
  +    <attribute   name="scheme"
  +          description="Protocol name for this Connector (http, https)"
  +                 type="java.lang.String"/>
  +
  +    <attribute   name="secure"
  +          description="Is this a secure (SSL) Connector?"
  +                 type="boolean"/>
  +
  +  </mbean>
  +
   
     <mbean         name="JAASRealm"
               className="org.apache.catalina.mbeans.ClassNameMBean"
  
  
  

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

Reply via email to