remm        2003/11/29 13:09:12

  Modified:    catalina/src/share/org/apache/catalina/core
                        mbeans-descriptors.xml
  Log:
  - Add additional fields and ops on the Context. I think all containers should
    likely have them.
  - A lot of JMX stuff will need to be added (I think that's because Costin
    isn't around: that stuff didn't get worked on enough) :)
  
  Revision  Changes    Path
  1.25      +26 -0     
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core/mbeans-descriptors.xml
  
  Index: mbeans-descriptors.xml
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core/mbeans-descriptors.xml,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- mbeans-descriptors.xml    29 Nov 2003 18:38:54 -0000      1.24
  +++ mbeans-descriptors.xml    29 Nov 2003 21:09:11 -0000      1.25
  @@ -199,6 +199,10 @@
                  description="Associated loader."
                  type="org.apache.catalina.Loader" />
         
  +    <attribute name="logger"
  +               description="Associated logger."
  +               type="org.apache.catalina.Logger" />
  +      
       <attribute name="managedResource"
                  description="The managed resource this MBean is associated with"
                  type="java.lang.Object"/>
  @@ -231,6 +235,10 @@
                  description="Access to tomcat internals"
                  type="boolean"/>
         
  +    <attribute name="realm"
  +               description="Associated realm."
  +               type="org.apache.catalina.Realm" />
  +      
       <attribute name="reloadable"
                  description="The reloadable flag for this web application"
                  type="boolean"/>
  @@ -317,6 +325,15 @@
                    type="java.lang.String"/>
       </operation>
       
  +    <operation   name="addValve"
  +               description="Add a valve to this Context"
  +               impact="ACTION"
  +               returnType="void">
  +      <parameter name="valve"
  +                 description="New valve to be added"
  +                 type="org.apache.catalina.Valve"/>
  +    </operation>
  +    
       <operation   name="removeEnvironment"
                  description="Remove any environment entry with the specified name"
                  impact="ACTION"
  @@ -333,6 +350,15 @@
         <parameter name="resourceName"
                    description="Name of the resource reference to remove"
                    type="java.lang.String"/>
  +    </operation>
  +    
  +    <operation   name="removeValve"
  +               description="Remove a valve from this Context"
  +               impact="ACTION"
  +               returnType="void">
  +      <parameter name="valve"
  +                 description="New valve to be removed"
  +                 type="org.apache.catalina.Valve"/>
       </operation>
       
       <operation   name="setRealm"
  
  
  

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

Reply via email to