costin      2003/03/18 23:29:21

  Modified:    catalina/src/share/org/apache/catalina/mbeans
                        mbeans-descriptors.xml
  Added:       catalina/src/share/org/apache/catalina/authenticator
                        mbeans-descriptors.xml
  Log:
  More move of descriptors to the same package with the described component.
  
  Revision  Changes    Path
  1.1                  
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/authenticator/mbeans-descriptors.xml
  
  Index: mbeans-descriptors.xml
  ===================================================================
  <?xml version="1.0"?>
  <mbeans-descriptors>
  
    <mbean name="BasicAuthenticator"
           description="An Authenticator and Valve implementation of HTTP BASIC 
Authentication"
           domain="Catalina"
           group="Valve"
           type="org.apache.catalina.authenticator.BasicAuthenticator">
      
      <attribute   name="algorithm"
                 description="The message digest algorithm to be used when generating 
session identifiers"
                 type="java.lang.String"/>
        
      <attribute name="cache"
                 description="Should we cache authenticated Principals if the request 
is part of an HTTP session?"
                 type="boolean"/>
        
      <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="entropy"
                 description="A String initialization parameter used to increase the  
entropy of the initialization of our random number generator"
                 type="java.lang.String"/>
    </mbean>
    
    
    <mbean name="DigestAuthenticator"
           description="An Authenticator and Valve implementation of HTTP DIGEST 
Authentication"
           domain="Catalina"
           group="Valve"
           type="org.apache.catalina.authenticator.DigestAuthenticator">
      
      <attribute name="algorithm"
                 description="The message digest algorithm to be used when generating 
session identifiers"
                 type="java.lang.String"/>
        
      <attribute name="cache"
                 description="Should we cache authenticated Principals if the request 
is part of an HTTP session?"
                 type="boolean"/>
  
      <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="entropy"
                 description="A String initialization parameter used to increase the  
entropy of the initialization of our random number generator"
                 type="java.lang.String"/>
    </mbean>
    
    <mbean name="FormAuthenticator"
           description="An Authenticator and Valve implementation of FORM BASED 
Authentication"
           domain="Catalina"
           group="Valve"
           type="org.apache.catalina.authenticator.FormAuthenticator">
      
      <attribute   name="algorithm"
                 description="The message digest algorithm to be used when generating 
session identifiers"
                 type="java.lang.String"/>
        
      <attribute   name="cache"
                 description="Should we cache authenticated Principals if the request 
is part of an HTTP session?"
                 type="boolean"/>
  
      <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="entropy"
                 description="A String initialization parameter used to increase the 
entropy of the initialization of our random number generator"
                 type="java.lang.String"/>
    </mbean>
    
    <mbean name="NonLoginAuthenticator"
           description="An Authenticator and Valve implementation that checks only 
security constraints not involving user authentication"
           domain="Catalina"
           group="Valve"
           type="org.apache.catalina.authenticator.NonLoginAuthenticator">
      
      <attribute name="algorithm"
                 description="The message digest algorithm to be used when generating 
session identifiers"
                 type="java.lang.String"/>
        
      <attribute name="cache"
                 description="Should we cache authenticated Principals if the request 
is part of an HTTP session?"
                 type="boolean"/>
        
      <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="entropy"
                 description="A String initialization parameter used to increase the 
entropy of the initialization of our random number generator"
                 type="java.lang.String"/>
    </mbean>
    
    
    <mbean name="SingleSignOn"
           description="A Valve that supports a 'single signon' user experience"
           domain="Catalina"
           group="Valve"
           type="org.apache.catalina.authenticator.SingleSignOn">
      
      <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"/>
        
    </mbean>
  
  
    <mbean  name="SSLAuthenticator"
           description="An Authenticator and Valve implementation of authentication 
that utilizes SSL certificates to identify client users"
           domain="Catalina"
           group="Valve"
           type="org.apache.catalina.authenticator.SSLAuthenticator">
  
      <attribute name="algorithm"
                 description="The message digest algorithm to be used when generating 
session identifiers"
                 type="java.lang.String"/>
        
      <attribute name="cache"
                 description="Should we cache authenticated Principals if the request 
is part of an HTTP session?"
                 type="boolean"/>
  
      <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="entropy"
                 description="A String initialization parameter used to increase the 
entropy of the initialization of our random number generator"
                 type="java.lang.String"/>
    </mbean>
    
  </mbeans-descriptors>
  
  
  
  1.21      +0 -187    
jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/mbeans/mbeans-descriptors.xml
  
  Index: mbeans-descriptors.xml
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/mbeans/mbeans-descriptors.xml,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- mbeans-descriptors.xml    17 Mar 2003 07:41:08 -0000      1.20
  +++ mbeans-descriptors.xml    19 Mar 2003 07:29:21 -0000      1.21
  @@ -2,41 +2,6 @@
   <mbeans-descriptors>
   
   
  -  <mbean         name="BasicAuthenticator"
  -          description="An Authenticator and Valve implementation of HTTP BASIC
  -                       Authentication"
  -               domain="Catalina"
  -                group="Valve"
  -                 type="org.apache.catalina.authenticator.BasicAuthenticator">
  -
  -    <attribute   name="algorithm"
  -          description="The message digest algorithm to be used when generating
  -                       session identifiers"
  -                 type="java.lang.String"/>
  -
  -    <attribute   name="cache"
  -          description="Should we cache authenticated Principals if the request
  -                       is part of an HTTP session?"
  -                 type="boolean"/>
  -
  -    <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="entropy"
  -          description="A String initialization parameter used to increase the
  -                       entropy of the initialization of our random number
  -                       generator"
  -                 type="java.lang.String"/>
  -  </mbean>
  -
  -
  -
     <mbean         name="ContextConfig"
             description="Startup event listener for a Context that configures the
                          properties of that Context, and the associated defined
  @@ -148,39 +113,6 @@
   
   
   
  -  <mbean         name="DigestAuthenticator"
  -          description="An Authenticator and Valve implementation of HTTP DIGEST
  -                        Authentication"
  -               domain="Catalina"
  -                group="Valve"
  -                 type="org.apache.catalina.authenticator.DigestAuthenticator">
  -
  -    <attribute   name="algorithm"
  -          description="The message digest algorithm to be used when generating
  -                        session identifiers"
  -                 type="java.lang.String"/>
  -
  -    <attribute   name="cache"
  -          description="Should we cache authenticated Principals if the request
  -                       is part of an HTTP session?"
  -                 type="boolean"/>
  -
  -    <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="entropy"
  -          description="A String initialization parameter used to increase the
  -                       entropy of the initialization of our random number
  -                       generator"
  -                 type="java.lang.String"/>
  -  </mbean>
  -
     <mbean         name="EngineConfig"
             description="Startup event listener for a Engine that configures the
                          properties of that Engine, and the associated defined
  @@ -242,39 +174,6 @@
   
     </mbean>
   
  -  <mbean         name="FormAuthenticator"
  -          description="An Authenticator and Valve implementation of FORM BASED
  -                       Authentication"
  -               domain="Catalina"
  -                group="Valve"
  -                 type="org.apache.catalina.authenticator.FormAuthenticator">
  -
  -    <attribute   name="algorithm"
  -          description="The message digest algorithm to be used when generating
  -                       session identifiers"
  -                 type="java.lang.String"/>
  -
  -    <attribute   name="cache"
  -          description="Should we cache authenticated Principals if the request
  -                       is part of an HTTP session?"
  -                 type="boolean"/>
  -
  -    <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="entropy"
  -          description="A String initialization parameter used to increase the
  -                       entropy of the initialization of our random number
  -                       generator"
  -                 type="java.lang.String"/>
  -  </mbean>
  -
   
     <mbean         name="Group"
               className="org.apache.catalina.mbeans.GroupMBean"
  @@ -1452,40 +1351,6 @@
   
     </mbean>
   
  -  <mbean         name="NonLoginAuthenticator"
  -          description="An Authenticator and Valve implementation that checks
  -                       only security constraints not involving user authentication"
  -               domain="Catalina"
  -                group="Valve"
  -                 type="org.apache.catalina.authenticator.NonLoginAuthenticator">
  -
  -    <attribute   name="algorithm"
  -          description="The message digest algorithm to be used when generating
  -                       session identifiers"
  -                 type="java.lang.String"/>
  -
  -    <attribute   name="cache"
  -          description="Should we cache authenticated Principals if the request
  -                       is part of an HTTP session?"
  -                 type="boolean"/>
  -
  -    <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="entropy"
  -          description="A String initialization parameter used to increase the
  -                       entropy of the initialization of our random number
  -                       generator"
  -                 type="java.lang.String"/>
  -  </mbean>
  -
  -
     <mbean         name="Role"
               className="org.apache.catalina.mbeans.RoleMBean"
             description="Security role from a user database"
  @@ -1503,58 +1368,6 @@
   
     </mbean>
   
  -
  -  <mbean         name="SingleSignOn"
  -          description="A Valve that supports a 'single signon' user experience"
  -               domain="Catalina"
  -                group="Valve"
  -                 type="org.apache.catalina.authenticator.SingleSignOn">
  -
  -    <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"/>
  -
  -  </mbean>
  -
  -
  -  <mbean         name="SSLAuthenticator"
  -          description="An Authenticator and Valve implementation of
  -                       authentication that utilizes SSL certificates to
  -                       identify client users"
  -               domain="Catalina"
  -                group="Valve"
  -                 type="org.apache.catalina.authenticator.SSLAuthenticator">
  -
  -    <attribute   name="algorithm"
  -          description="The message digest algorithm to be used when generating
  -                       session identifiers"
  -                 type="java.lang.String"/>
  -
  -    <attribute   name="cache"
  -          description="Should we cache authenticated Principals if the request
  -                       is part of an HTTP session?"
  -                 type="boolean"/>
  -
  -    <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="entropy"
  -          description="A String initialization parameter used to increase the
  -                       entropy of the initialization of our random number
  -                       generator"
  -                 type="java.lang.String"/>
  -  </mbean>
   
   
   
  
  
  

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

Reply via email to