You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by am...@apache.org on 2002/01/09 01:51:28 UTC

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/mbeans mbeans-descriptors.xml

amyroh      02/01/08 16:51:28

  Modified:    catalina/src/share/org/apache/catalina/mbeans
                        mbeans-descriptors.xml
  Log:
  Add getParent operation to various MBeans for Catalina tree hierarchy.
  
  Revision  Changes    Path
  1.14      +37 -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.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- mbeans-descriptors.xml	3 Dec 2001 17:33:05 -0000	1.13
  +++ mbeans-descriptors.xml	9 Jan 2002 00:51:28 -0000	1.14
  @@ -6,7 +6,7 @@
   <!--
        Descriptions of JMX MBeans for Catalina
   
  -     $Id: mbeans-descriptors.xml,v 1.13 2001/12/03 17:33:05 amyroh Exp $
  +     $Id: mbeans-descriptors.xml,v 1.14 2002/01/09 00:51:28 amyroh Exp $
    -->
   
   <mbeans-descriptors>
  @@ -217,6 +217,11 @@
   
       <constructor name="HttpConnector"/>
   
  +    <operation   name="getParent"
  +          description="Return the parent (Server) that owns this Connector"
  +               impact="INFO"
  +           returnType="org.apache.catalina.Server"/>
  +           
     </mbean>
   
   
  @@ -304,6 +309,11 @@
   
       <constructor name="HttpConnector"/>
   
  +    <operation   name="getParent"
  +          description="Return the parent (Server) that owns this Connector"
  +               impact="INFO"
  +           returnType="org.apache.catalina.Server"/>
  +
     </mbean>
   
   
  @@ -370,6 +380,11 @@
   
       <constructor name="JDBCRealm"/>
   
  +    <operation   name="getParent"
  +          description="Return the parent (Container) that owns this Realm"
  +               impact="INFO"
  +           returnType="org.apache.catalina.Container"/>
  +
     </mbean>
   
   
  @@ -628,6 +643,11 @@
   
       <constructor name="StandardContext"/>
   
  +    <operation   name="getParent"
  +          description="Return the parent (Host) that owns this Context"
  +               impact="INFO"
  +           returnType="org.apache.catalina.Host"/>
  +           
       <operation   name="addValve"
             description="Add a new Valve to the end of the pipeline associated with this Container"
                  impact="ACTION"
  @@ -689,6 +709,11 @@
   
       <constructor name="StandardEngine"/>
   
  +    <operation   name="getParent"
  +          description="Return the parent (Service) that owns this Engine"
  +               impact="INFO"
  +           returnType="org.apache.catalina.Servive"/>
  +           
       <operation   name="createAccessLogger"
             description="Create a new AccessLogger"
                  impact="ACTION"
  @@ -815,6 +840,11 @@
   
       <constructor name="StandardHost"/>
   
  +    <operation   name="getParent"
  +          description="Return the parent (Engine) that owns this Host"
  +               impact="INFO"
  +           returnType="org.apache.catalina.Engine"/>
  +
       <operation   name="addAlias"
             description="Add an alias name that should be mapped to this same Host"
                  impact="ACTION"
  @@ -1097,10 +1127,16 @@
                  impact="ACTION"
              returnType="org.apache.catalina.Connector[]"/>
   
  +    <operation   name="getParent"
  +          description="Return the parent (Server) that owns this Service"
  +               impact="INFO"
  +           returnType="org.apache.catalina.Server"/>
  +
       <operation   name="removeConnector"
             description="Remove an existing associated Connector"
                  impact="ACTION"
              returnType="void">
  +
         <parameter name="connector"
             description="The Connector to be removed"
                    type="org.apache.catalina.Connector"/>
  
  
  

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