amyroh      02/02/11 17:05:56

  Modified:    catalina/src/share/org/apache/catalina/mbeans
                        mbeans-descriptors.xml
  Log:
  Add Ajp13Connector MBean descriptor.
  
  Revision  Changes    Path
  1.29      +64 -1     
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.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- mbeans-descriptors.xml    10 Feb 2002 08:06:20 -0000      1.28
  +++ mbeans-descriptors.xml    12 Feb 2002 01:05:56 -0000      1.29
  @@ -6,7 +6,7 @@
   <!--
        Descriptions of JMX MBeans for Catalina
   
  -     $Id: mbeans-descriptors.xml,v 1.28 2002/02/10 08:06:20 craigmcc Exp $
  +     $Id: mbeans-descriptors.xml,v 1.29 2002/02/12 01:05:56 amyroh Exp $
    -->
   
   <mbeans-descriptors>
  @@ -48,6 +48,69 @@
       <attribute   name="suffix"
             description="The suffix that is added to log file filenames"
                    type="java.lang.String"/>
  +
  +  </mbean>
  +
  +
  +  <mbean         name="Ajp13Connector"
  +            className="org.apache.catalina.mbeans.ClassNameMBean"
  +          description="Implementation of an Ajp13 connector"
  +               domain="Catalina"
  +                group="Connector"
  +                 type="org.apache.ajp.tomcat4.Ajp13Connector">
  +
  +    <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="debug"
  +          description="The debugging detail level for this component"
  +                 type="int"/>
  +
  +    <attribute   name="connectionTimeout"
  +          description="Timeout value on the incoming connection"
  +                 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="The port number on which we listen for ajp13 requests"
  +                 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>
   
  
  
  

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

Reply via email to