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

2004-01-21 Thread larryi
larryi  2004/01/21 18:34:56

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Port the allowTrace flag from Tomcat 5.
  
  Revision  ChangesPath
  1.81  +5 -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.80
  retrieving revision 1.81
  diff -u -r1.80 -r1.81
  --- mbeans-descriptors.xml12 Dec 2003 02:45:01 -  1.80
  +++ mbeans-descriptors.xml22 Jan 2004 02:34:56 -  1.81
  @@ -243,6 +243,10 @@
 description=The IP address on which to bind
type=java.lang.String/
   
  +attribute   name=allowTrace
  +  description=Allow disabling TRACE method
  + type=boolean/
  +
   attribute   name=bufferSize
 description=The input buffer size we should create on input streams
type=int/
  
  
  

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



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

2003-11-20 Thread remm
remm2003/11/20 02:10:55

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  - Add URIEncoding field.
  
  Revision  ChangesPath
  1.79  +5 -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.78
  retrieving revision 1.79
  diff -u -r1.78 -r1.79
  --- mbeans-descriptors.xml10 Nov 2003 20:00:35 -  1.78
  +++ mbeans-descriptors.xml20 Nov 2003 10:10:55 -  1.79
  @@ -327,6 +327,10 @@
  description=Should Tomcat perform all authentications?
 type=boolean/
   
  +attribute   name=URIEncoding
  +  description=Character encoding used to decode the URI
  + type=java.lang.String/
  +
   attributename=disableUploadTimeout
  description=Should Tomcat ignore setting a timeout for uploads?
 type=boolean/
  
  
  

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



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

2003-11-10 Thread amyroh
amyroh  2003/11/10 12:00:35

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Add MBean description for DatasourceRealm - fixes bugzilla 23853.
  Modified patch from Kyle VanderBeek[EMAIL PROTECTED]
  
  Revision  ChangesPath
  1.78  +53 -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.77
  retrieving revision 1.78
  diff -u -r1.77 -r1.78
  --- mbeans-descriptors.xml19 Aug 2003 00:43:09 -  1.77
  +++ mbeans-descriptors.xml10 Nov 2003 20:00:35 -  1.78
  @@ -334,6 +334,58 @@
 /mbean
   
   
  +  mbean name=DataSourceRealm
  +className=org.apache.catalina.mbeans.ClassNameMBean
  +  description=Implementation of Realm that works with any JNDI configured 
DataSource
  +   domain=Catalina
  +group=Realm
  + type=org.apache.catalina.realm.DataSourceRealm
  +
  +attribute   name=dataSourceName
  +  description=The JNDI named JDBC DataSource for your database
  + type=java.lang.String/
  +
  +attribute   name=debug
  +  description=The debugging detail level for this component
  + type=int/
  +
  +attribute   name=digest
  +  description=Digest algorithm used in storing passwords in a
  +non-plaintext format
  + type=java.lang.String/
  +
  +attribute   name=roleNameCol
  +  description=The column in the user role table that names a role
  + type=java.lang.String/
  +
  +attribute   name=userCredCol
  +  description=The column in the user table that holds the user's
  +credentials
  + type=java.lang.String/
  +
  +attribute   name=userNameCol
  +  description=The column in the user table that holds the user's
  +username
  + type=java.lang.String/
  +
  +attribute   name=userRoleTable
  +  description=The table that holds the relation between user's and
  +roles
  + type=java.lang.String/
  +
  +attribute   name=userTable
  +  description=The table that holds user data
  + type=java.lang.String/
  +
  +
  +operation name=start description=Start impact=ACTION returnType=void /
  +operation name=stop description=Stop impact=ACTION returnType=void /
  +operation name=init description=Init impact=ACTION returnType=void /
  +operation name=destroy description=Destroy impact=ACTION 
returnType=void /
  +
  +  /mbean
  +
  +
 mbean name=DefaultContext
 className=org.apache.catalina.mbeans.DefaultContextMBean
 description=Used to store the default configuration a Host will use
  
  
  

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



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

2003-08-18 Thread amyroh
amyroh  2003/08/18 17:43:09

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Add missing className property for mbean description.
  It seems like it was accidently removed by previous commit.
  Should fix bugzilla 22328.
  
  Revision  ChangesPath
  1.77  +8 -6  
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.76
  retrieving revision 1.77
  diff -u -r1.76 -r1.77
  --- mbeans-descriptors.xml8 Jul 2003 23:12:51 -   1.76
  +++ mbeans-descriptors.xml19 Aug 2003 00:43:09 -  1.77
  @@ -10,11 +10,12 @@
--
   
   mbeans-descriptors
  -  mbean name=AccessLogValve
  - description=Valve that generates a web server access log
  - domain=Catalina
  - group=Valve
  - type=org.apache.catalina.valves.AccessLogValve
  +  mbean  name=AccessLogValve
  + className=org.apache.catalina.mbeans.ClassNameMBean
  +   description=Valve that generates a web server access log
  +   domain=Catalina
  +group=Valve
  + type=org.apache.catalina.valves.AccessLogValve
   
   attribute name=className
  description=Fully qualified class name of the managed object
  @@ -499,6 +500,7 @@
 /mbean
   
 mbean name=ExtendedAccessLogValve
  + className=org.apache.catalina.mbeans.ClassNameMBean
description=Valve that generates a web server access log
domain=Catalina
group=Valve
  
  
  

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



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

2003-02-18 Thread costin
costin  2003/02/18 17:04:45

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Remove processing time, it is not that usefull.
  
  Revision  ChangesPath
  1.75  +1 -5  
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.74
  retrieving revision 1.75
  diff -u -r1.74 -r1.75
  --- mbeans-descriptors.xml13 Feb 2003 19:28:50 -  1.74
  +++ mbeans-descriptors.xml19 Feb 2003 01:04:44 -  1.75
  @@ -2376,10 +2376,6 @@
 description=Number of sessions that expired ( doesn't include explicit 
invalidations )
type=int /
   
  -attribute   name=processingTime
  -  description=Time spent doing housekeeping and expiration
  - type=long /
  -
   attribute   name=duplicates
 description=Number of duplicated session ids generated
type=int /
  
  
  

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




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

2003-02-13 Thread costin
costin  2003/02/13 11:28:50

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Expose few more attributes and operations for monitoring and control ( like 
start/stop on context).
  
  Revision  ChangesPath
  1.74  +136 -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.73
  retrieving revision 1.74
  diff -u -r1.73 -r1.74
  --- mbeans-descriptors.xml28 Nov 2002 02:57:14 -  1.73
  +++ mbeans-descriptors.xml13 Feb 2003 19:28:50 -  1.74
  @@ -2003,6 +2003,10 @@
 description=The pathname to the work directory for this context
type=java.lang.String/
   
  +attribute   name=available
  +  description=Is this context available
  + type=boolean/
  +
   operation   name=addEnvironment
 description=Add an environment entry for this web application
  impact=ACTION
  @@ -2039,6 +2043,24 @@
type=java.lang.String/
   /operation
   
  +operation   name=start
  +  description=Start the webapp
  +   impact=ACTION
  +   returnType=void
  +/operation
  +
  +operation   name=stop
  +  description=Start the webapp
  +   impact=ACTION
  +   returnType=void
  +/operation
  +
  +operation   name=reload
  +  description=Restart the webapp
  +   impact=ACTION
  +   returnType=void
  +/operation
  +
 /mbean
   
   
  @@ -2346,6 +2368,67 @@
 description=Path name of the disk file in which active sessions
type=java.lang.String/
   
  +attribute   name=rejectedSessions
  +  description=Number of sessions we rejected due to maxActive beeing 
reached
  + type=int /
  +
  +attribute   name=expiredSessions
  +  description=Number of sessions that expired ( doesn't include explicit 
invalidations )
  + type=int /
  +
  +attribute   name=processingTime
  +  description=Time spent doing housekeeping and expiration
  + type=long /
  +
  +attribute   name=duplicates
  +  description=Number of duplicated session ids generated
  + type=int /
  +
  +attribute   name=sessionCounter
  +  description=Total number of sessions created by this manager
  + type=int /
  +
  +attribute   name=maxActive
  +  description=Maximum number of active sessions so far
  + type=int /
  +
  +
  +operation   name=listSessionIds
  +  description=Return the list of active session ids
  +   impact=ACTION
  +   returnType=java.lang.String
  +/operation
  +
  +operation   name=getSessionAttribute
  +  description=Return a session attribute
  +   impact=ACTION
  +   returnType=java.lang.String
  +  parameter name=sessionId
  +  description=Id of the session
  + type=java.lang.String/
  +  parameter name=key
  +  description=key of the attribute
  + type=java.lang.String/
  +/operation
  +
  +operation   name=expireSession
  +  description=Expire a session
  +   impact=ACTION
  +   returnType=void
  +  parameter name=sessionId
  +  description=Id of the session
  + type=java.lang.String/
  +/operation
  +
  +operation   name=getLastAccessedTime
  +  description=Get the last access time
  +   impact=ACTION
  +   returnType=java.lang.String
  +  parameter name=sessionId
  +  description=Id of the session
  + type=java.lang.String/
  +/operation
  +
 /mbean
   
   
  @@ -2399,6 +2482,58 @@
   attribute   name=name
 description=Unique name of this Service
type=java.lang.String/
  +
  +  /mbean
  +
  +  mbean name=StandardWrapper
  +className=org.apache.catalina.mbeans.ClassNameMBean
  +  description=Wrapper for a Servlet or JSP
  +   domain=Catalina
  +group=Servlet
  + type=org.apache.catalina.core.StandardWrapper
  +
  +attribute   name=name
  +  description=The name of the servlet
  + type=java.lang.String/
  +attribute   name=jspFile
  +  description=The name of the jsp file - for jsps
  + type=java.lang.String/
  +attribute   name=servletName
  +  description=The name of the servlet
  + type=java.lang.String/
  +attribute   

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

2002-11-27 Thread billbarker
billbarker2002/11/27 18:57:14

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Fix typo in last commit.
  
  Thanks to Jeanfrancois for catching this.
  
  Revision  ChangesPath
  1.73  +2 -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.72
  retrieving revision 1.73
  diff -u -r1.72 -r1.73
  --- mbeans-descriptors.xml27 Nov 2002 07:41:32 -  1.72
  +++ mbeans-descriptors.xml28 Nov 2002 02:57:14 -  1.73
  @@ -320,7 +320,7 @@
 type=boolean/
   
   attributename=disableUploadTimeout
  -   description=Should Tomcat ignore setting a timeout for uploads? /
  +   description=Should Tomcat ignore setting a timeout for uploads? 
 type=boolean/
   
 /mbean
  
  
  

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




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

2002-11-26 Thread billbarker
billbarker2002/11/26 23:41:32

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Adding the 'disableUploadTimeout' attribute to the MBeans.
  
  Revision  ChangesPath
  1.72  +7 -3  
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.71
  retrieving revision 1.72
  diff -u -r1.71 -r1.72
  --- mbeans-descriptors.xml22 Nov 2002 21:50:18 -  1.71
  +++ mbeans-descriptors.xml27 Nov 2002 07:41:32 -  1.72
  @@ -292,11 +292,11 @@
   writeable=false/
   
   attribute   name=proxyName
  -  description=Ther Server name to which we should pretend requests to this 
Connector
  +  description=The Server name to which we should pretend requests to this 
Connector
type=java.lang.String/
   
   attribute   name=proxyPort
  -  description=Ther Server port to which we should pretend requests to this 
Connector
  +  description=The Server port to which we should pretend requests to this 
Connector
type=int/
   
   attribute   name=redirectPort
  @@ -317,6 +317,10 @@
   
   attributename=tomcatAuthentication
  description=Should Tomcat perform all authentications?
  +  type=boolean/
  +
  +attributename=disableUploadTimeout
  +   description=Should Tomcat ignore setting a timeout for uploads? /
 type=boolean/
   
 /mbean
  
  
  

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




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

2002-11-22 Thread amyroh
amyroh  2002/11/22 13:50:18

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Make new rotatable attribute of AccessLogValve visible from admin webapp.
  
  Revision  ChangesPath
  1.71  +18 -13
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.70
  retrieving revision 1.71
  diff -u -r1.70 -r1.71
  --- mbeans-descriptors.xml9 Sep 2002 23:39:03 -   1.70
  +++ mbeans-descriptors.xml22 Nov 2002 21:50:18 -  1.71
  @@ -44,7 +44,12 @@
 description=Resolve hosts
  is=true
type=boolean/
  -
  + 
  +attribute   name=rotatable
  +  description=Rotate log
  +   is=true
  + type=boolean/
  + 
   attribute   name=suffix
 description=The suffix that is added to log file filenames
type=java.lang.String/
  @@ -149,7 +154,7 @@
   
   attribute   name=override
 description=Does this environment entry allow overrides by the
  -   application deployment descriptor
  +  application deployment descriptor
type=boolean/
   
   attribute   name=type
  @@ -279,7 +284,7 @@
   
   attribute   name=port
 description=The port number on which we listen for ajp13 requests
  - type=int/
  +type=int/
   
   attribute   name=protocolHandlerClassName
 description=Coyote Protocol handler class name
  @@ -342,7 +347,7 @@
   
   attribute   name=swallowOutput
 description=Flag to set to cause the system.out and system.err 
  -   to be redirected to the logger when executing a servlet
  +  to be redirected to the logger when executing a servlet
type=boolean/
   
   attribute   name=useNaming
  @@ -1638,26 +1643,26 @@
 mbean name=NamingResources
   className=org.apache.catalina.mbeans.NamingResourcesMBean
 description=Holds and manages the naming resources defined in the
  -   J2EE Enterprise Naming Context and their associated JNDI context
  +  J2EE Enterprise Naming Context and their associated JNDI context
  domain=Catalina
   group=Resources
type=org.apache.catalina.deploy.NamingResources
   
   attribute   name=environments
 description=MBean Names of the set of defined environment entries
  -   for this web application
  +  for this web application
type=java.lang.String[]
   writeable=false/
   
   attribute   name=resources
 description=MBean Names of all the defined resource references
  -   for this application.
  +  for this application.
type=java.lang.String[]
   writeable=false/
   
   attribute   name=resourceLinks
 description=MBean Names of all the defined resource link references
  -   for this application.
  +  for this application.
type=java.lang.String[]
   writeable=false/
   
  @@ -1794,7 +1799,7 @@
 mbean name=NonLoginAuthenticator
   className=org.apache.catalina.mbeans.ClassNameMBean
 description=An Authenticator and Valve implementation that checks
  - only security constraints not involving user authentication
  +only security constraints not involving user authentication
  domain=Catalina
   group=Valve
type=org.apache.catalina.authenticator.NonLoginAuthenticator
  @@ -1953,7 +1958,7 @@
   
   attribute   name=environments
 description=MBean Names of the set of defined environment entries
  -   for this web application
  +  for this web application
type=java.lang.String[]
   writeable=false/
   
  @@ -1976,13 +1981,13 @@
   
   attribute   name=resources
 description=MBean Names of all the defined resource references
  -   for this application.
  +  for this application.
type=java.lang.String[]
   writeable=false/
   
   attribute   name=swallowOutput
 description=Flag to set to cause the system.out and system.err 
  -   to be redirected to the logger when executing a servlet
  +  to be redirected to the logger when executing a servlet
type=boolean/
   
   attribute   name=useNaming
  
  
  

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

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

2002-09-04 Thread amyroh

amyroh  2002/09/04 18:57:19

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Add swallowOutput attribute to Context MBean.
  
  Revision  ChangesPath
  1.68  +6 -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.67
  retrieving revision 1.68
  diff -u -r1.67 -r1.68
  --- mbeans-descriptors.xml16 Aug 2002 00:31:08 -  1.67
  +++ mbeans-descriptors.xml5 Sep 2002 01:57:19 -   1.68
  @@ -1939,6 +1939,11 @@
type=java.lang.String[]
   writeable=false/
   
  +attribute   name=swallowOutput
  +  description=Flag to set to cause the system.out and system.err 
  +   to be redirected to the logger when executing a servlet
  + type=boolean/
  +
   attribute   name=useNaming
 description=Create a JNDI naming context for this application?
  is=true
  
  
  

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




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

2002-08-15 Thread amyroh

amyroh  2002/08/15 17:31:08

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Minor change in format.
  
  Revision  ChangesPath
  1.67  +18 -18
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.66
  retrieving revision 1.67
  diff -u -r1.66 -r1.67
  --- mbeans-descriptors.xml13 Aug 2002 22:37:06 -  1.66
  +++ mbeans-descriptors.xml16 Aug 2002 00:31:08 -  1.67
  @@ -1016,6 +1016,10 @@
 description=The connection URL for the server we will contact
type=java.lang.String/
   
  +attribute   name=contextFactory
  +  description=The JNDI context factory for this Realm
  + type=java.lang.String/
  +
   attribute   name=debug
 description=The debugging detail level for this component
type=int/
  @@ -1029,19 +1033,14 @@
 description=The base element for role searches
type=java.lang.String/
   
  -attribute   name=roleSearch
  -  description=The message format used to select roles for a user
  - type=java.lang.String/
  -
  - attribute   name=userRoleName
  -  description=The name of the attribute in the user's entry containing
  -   roles for that user
  - type=java.lang.String/
  -
   attribute   name=roleName
 description=The name of the attribute containing roles held elsewhere
type=java.lang.String/
   
  +attribute   name=roleSearch
  +  description=The message format used to select roles for a user
  + type=java.lang.String/
  +
   attribute   name=roleSubtree
 description=Should we search the entire subtree for matching
   memberships?
  @@ -1051,11 +1050,6 @@
 description=The base element for user searches
type=java.lang.String/
   
  -attribute   name=userSubtree
  -  description=Should we search the entire subtree for matching
  -   users?
  - type=boolean/
  -
   attribute   name=userPassword
 description=The attribute name used to retrieve the user password
type=java.lang.String/
  @@ -1064,13 +1058,19 @@
 description=The message format used to select a user
type=java.lang.String/
   
  + attribute   name=userRoleName
  +  description=The name of the attribute in the user's entry containing
  +   roles for that user
  + type=java.lang.String/
  +
  attribute   name=userSearch
description=The message format used to search for a user
   type=java.lang.String/
   
  -attribute   name=contextFactory
  -  description=The JNDI context factory for this Realm
  - type=java.lang.String/
  +attribute   name=userSubtree
  +  description=Should we search the entire subtree for matching
  +   users?
  + type=boolean/
   
 /mbean
   
  
  
  

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




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

2002-08-13 Thread amyroh

amyroh  2002/08/13 15:37:07

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Add userSearch editable field in JNDIRealm admin page.
  
  Revision  ChangesPath
  1.66  +23 -19
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.65
  retrieving revision 1.66
  diff -u -r1.65 -r1.66
  --- mbeans-descriptors.xml19 Jul 2002 00:23:17 -  1.65
  +++ mbeans-descriptors.xml13 Aug 2002 22:37:06 -  1.66
  @@ -148,7 +148,7 @@
type=java.lang.String/
   
   attribute   name=override
  -  description=Does this environment entry allow overrides by the 
  +  description=Does this environment entry allow overrides by the
  application deployment descriptor
type=boolean/
   
  @@ -262,11 +262,11 @@
   
   attribute   name=keystoreFile
 description=Pathname to the key store file to be used
  - type=java.lang.String/  
  + type=java.lang.String/
   
   attribute   name=keystorePass
 description=Password for accessing the key store file
  - type=java.lang.String/  
  + type=java.lang.String/
   
   attribute   name=maxProcessors
 description=The maximum number of processors allowed
  @@ -288,11 +288,11 @@
   
   attribute   name=proxyName
 description=Ther Server name to which we should pretend requests to this 
Connector
  - type=java.lang.String/ 
  -  
  + type=java.lang.String/
  +
   attribute   name=proxyPort
 description=Ther Server port to which we should pretend requests to this 
Connector
  - type=int/  
  + type=int/
   
   attribute   name=redirectPort
 description=The redirect port for non-SSL to SSL redirects
  @@ -1052,7 +1052,7 @@
type=java.lang.String/
   
   attribute   name=userSubtree
  -  description=Should we search the entire subtree for matching 
  +  description=Should we search the entire subtree for matching
  users?
type=boolean/
   
  @@ -1064,6 +1064,10 @@
 description=The message format used to select a user
type=java.lang.String/
   
  +   attribute   name=userSearch
  + description=The message format used to search for a user
  +type=java.lang.String/
  +
   attribute   name=contextFactory
 description=The JNDI context factory for this Realm
type=java.lang.String/
  @@ -1346,7 +1350,7 @@
 description=MBean Name of the component to be removed
type=java.lang.String/
   /operation
  -
  +
   operation   name=removeHost
 description=Remove an existing Host
  impact=ACTION
  @@ -1592,26 +1596,26 @@
   
 mbean name=NamingResources
   className=org.apache.catalina.mbeans.NamingResourcesMBean
  -  description=Holds and manages the naming resources defined in the 
  +  description=Holds and manages the naming resources defined in the
  J2EE Enterprise Naming Context and their associated JNDI context
  domain=Catalina
   group=Resources
type=org.apache.catalina.deploy.NamingResources
   
   attribute   name=environments
  -  description=MBean Names of the set of defined environment entries 
  +  description=MBean Names of the set of defined environment entries
  for this web application
type=java.lang.String[]
   writeable=false/
   
   attribute   name=resources
  -  description=MBean Names of all the defined resource references 
  +  description=MBean Names of all the defined resource references
  for this application.
type=java.lang.String[]
   writeable=false/
   
   attribute   name=resourceLinks
  -  description=MBean Names of all the defined resource link references 
  +  description=MBean Names of all the defined resource link references
  for this application.
type=java.lang.String[]
   writeable=false/
  @@ -1907,7 +1911,7 @@
type=java.lang.String/
   
   attribute   name=environments
  -  description=MBean Names of the set of defined environment entries 
  +  description=MBean Names of the set of defined environment entries
  for this web application
 

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

2002-07-15 Thread amyroh

amyroh  2002/07/15 14:05:20

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Add PersistentManager MBean info to mbeans-descripor.xml so it doesn't
  complain in case if you have PersistentManager.
  
  Patch submitted by Bob Herrmann [EMAIL PROTECTED].
  
  Revision  ChangesPath
  1.64  +84 -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.63
  retrieving revision 1.64
  diff -u -r1.63 -r1.64
  --- mbeans-descriptors.xml24 Jun 2002 21:11:42 -  1.63
  +++ mbeans-descriptors.xml15 Jul 2002 21:05:19 -  1.64
  @@ -2126,6 +2126,89 @@
 /mbean
   
   
  +  mbean name=PersistentManager
  +className=org.apache.catalina.mbeans.ClassNameMBean
  +  description=Standard implementation of the Manager interface
  +   domain=Catalina
  +group=Manager
  + type=org.apache.catalina.session.PersistentManager 
  +
  +attribute   name=algorithm
  +  description=The message digest algorithm to be used when generating
  +session identifiers
  + type=java.lang.String/
  +
  +attribute   name=checkInterval
  +  description=The interval (in seconds) between checks for expired
  +sessions
  + 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=distributable
  +  description=The distributable flag for Sessions created by this
  +Manager
  + type=boolean/
  +
  +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/
  +
  +attribute   name=managedResource
  +  description=The managed resource this MBean is associated with
  + type=java.lang.Object/
  +
  +attribute   name=maxActiveSessions
  +  description=The maximum number of active Sessions allowed, or -1
  +for no limit
  + type=int/
  +
  +attribute   name=maxInactiveInterval
  +  description=The default maximum inactive interval for Sessions
  +created by this Manager
  + type=int/
  +
  +attribute name=maxIdleBackup 
  +  description=The time interval (in seconds) since the last access
  +to a session before it is eligible for being
  +persisted to the session store, or -1 to disable
  + type=int/
  +
  +attribute name=maxIdleSwap
  +  description=The time interval (in seconds) since the last access
  +to a session before it should be persisted to the
  +session store, or -1 to disable
  + type=int /
  +
  +attribute name=minIdleSwap 
  +  description=The time interval (in seconds) since the last access
  +to a session before it will be eligible to be
  +persisted to the session store, or -1 to disable
  + type=int /
  +
  +attribute name=saveOnRestart
  +  description=Should all sessions be persisted and reloaded when
  +Tomcat is shut down and restarted?
  + type=boolean /
  +
  +attribute   name=name
  +  description=The descriptive name of this Manager implementation
  +(for logging)
  + type=java.lang.String
  +writeable=false/
  +
  +  /mbean
  +
  +
 mbean name=StandardManager
   className=org.apache.catalina.mbeans.ClassNameMBean
 description=Standard implementation of the Manager interface
  
  
  

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




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

2002-05-30 Thread manveen

manveen 02/05/30 10:03:01

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Added some missing attributes under JNDIRealm.
  
  Revision  ChangesPath
  1.58  +18 -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.57
  retrieving revision 1.58
  diff -u -r1.57 -r1.58
  --- mbeans-descriptors.xml16 May 2002 20:46:00 -  1.57
  +++ mbeans-descriptors.xml30 May 2002 17:03:01 -  1.58
  @@ -6,7 +6,7 @@
   !--
Descriptions of JMX MBeans for Catalina
   
  - $Id: mbeans-descriptors.xml,v 1.57 2002/05/16 20:46:00 amyroh Exp $
  + $Id: mbeans-descriptors.xml,v 1.58 2002/05/30 17:03:01 manveen Exp $
--
   
   mbeans-descriptors
  @@ -1011,13 +1011,30 @@
 description=The message format used to select roles for a user
type=java.lang.String/
   
  +attribute   name=roleName
  +  description=The name of the attribute containing roles held elsewhere
  + type=java.lang.String/
  +
   attribute   name=roleSubtree
 description=Should we search the entire subtree for matching
   memberships?
type=boolean/
   
  +attribute   name=userSubtree
  +  description=Should we search the entire subtree for matching 
  +   users?
  + type=boolean/
  +
  +attribute   name=userPassword
  +  description=The attribute name used to retrieve the user password
  + type=java.lang.String/
  +
   attribute   name=userPattern
 description=The message format used to select a user
  + type=java.lang.String/
  +
  +attribute   name=contextFactory
  +  description=The JNDI context factory for this Realm
type=java.lang.String/
   
 /mbean
  
  
  

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




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

2002-05-30 Thread manveen

manveen 02/05/30 12:43:29

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  add userRoleName attribute to JNDIRealm.
  
  Revision  ChangesPath
  1.59  +6 -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.58
  retrieving revision 1.59
  diff -u -r1.58 -r1.59
  --- mbeans-descriptors.xml30 May 2002 17:03:01 -  1.58
  +++ mbeans-descriptors.xml30 May 2002 19:43:29 -  1.59
  @@ -6,7 +6,7 @@
   !--
Descriptions of JMX MBeans for Catalina
   
  - $Id: mbeans-descriptors.xml,v 1.58 2002/05/30 17:03:01 manveen Exp $
  + $Id: mbeans-descriptors.xml,v 1.59 2002/05/30 19:43:29 manveen Exp $
--
   
   mbeans-descriptors
  @@ -1009,6 +1009,11 @@
   
   attribute   name=roleSearch
 description=The message format used to select roles for a user
  + type=java.lang.String/
  +
  + attribute   name=userRoleName
  +  description=The name of the attribute in the user's entry containing
  +   roles for that user
type=java.lang.String/
   
   attribute   name=roleName
  
  
  

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




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

2002-05-16 Thread amyroh

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  ChangesPath
  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.xml6 May 2002 23:08:31 -   1.56
  +++ mbeans-descriptors.xml16 May 2002 20:46:00 -  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
  +  

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

2002-04-30 Thread amyroh

amyroh  02/04/30 15:14:08

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Add NonLoginAuthenticator MBean to mbeans-descriptors.
  
  Revision  ChangesPath
  1.53  +36 -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.52
  retrieving revision 1.53
  diff -u -r1.52 -r1.53
  --- mbeans-descriptors.xml30 Apr 2002 18:24:08 -  1.52
  +++ mbeans-descriptors.xml30 Apr 2002 22:14:08 -  1.53
  @@ -6,7 +6,7 @@
   !--
Descriptions of JMX MBeans for Catalina
   
  - $Id: mbeans-descriptors.xml,v 1.52 2002/04/30 18:24:08 amyroh Exp $
  + $Id: mbeans-descriptors.xml,v 1.53 2002/04/30 22:14:08 amyroh Exp $
--
   
   mbeans-descriptors
  @@ -1375,6 +1375,41 @@
 description=The comma-delimited set of deny expressions
type=java.lang.String/
   
  +  /mbean
  +
  +
  +  mbean name=NonLoginAuthenticator
  +className=org.apache.catalina.mbeans.ClassNameMBean
  +  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
   
   
  
  
  

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




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

2002-04-30 Thread amyroh

amyroh  02/04/30 15:46:08

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Fix proxyPort type to int.
  
  Revision  ChangesPath
  1.54  +1 -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.53
  retrieving revision 1.54
  diff -u -r1.53 -r1.54
  --- mbeans-descriptors.xml30 Apr 2002 22:14:08 -  1.53
  +++ mbeans-descriptors.xml30 Apr 2002 22:46:07 -  1.54
  @@ -6,7 +6,7 @@
   !--
Descriptions of JMX MBeans for Catalina
   
  - $Id: mbeans-descriptors.xml,v 1.53 2002/04/30 22:14:08 amyroh Exp $
  + $Id: mbeans-descriptors.xml,v 1.54 2002/04/30 22:46:07 amyroh Exp $
--
   
   mbeans-descriptors
  @@ -204,7 +204,7 @@
 
   attribute   name=proxyPort
 description=Ther Server port to which we should pretend requests to this 
Connector
  - type=java.lang.String/  
  + type=int/  
   
   attribute   name=redirectPort
 description=The redirect port for non-SSL to SSL redirects
  
  
  

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




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

2002-03-08 Thread craigmcc

craigmcc02/03/08 16:29:05

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Fix typo.
  
  Revision  ChangesPath
  1.39  +2 -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.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- mbeans-descriptors.xml8 Mar 2002 23:59:26 -   1.38
  +++ mbeans-descriptors.xml9 Mar 2002 00:29:04 -   1.39
  @@ -6,7 +6,7 @@
   !--
Descriptions of JMX MBeans for Catalina
   
  - $Id: mbeans-descriptors.xml,v 1.38 2002/03/08 23:59:26 amyroh Exp $
  + $Id: mbeans-descriptors.xml,v 1.39 2002/03/09 00:29:04 craigmcc Exp $
--
   
   mbeans-descriptors
  @@ -832,7 +832,7 @@
   username
type=java.lang.String/
   
  -attribute   name=userRoleTableremove
  +attribute   name=userRoleTable
 description=The table that holds the relation between user's and
   roles
type=java.lang.String/
  
  
  

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




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

2002-02-14 Thread craigmcc

craigmcc02/02/14 16:19:27

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Add a descriptor for CertificatesValve.
  
  Revision  ChangesPath
  1.31  +20 -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.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- mbeans-descriptors.xml14 Feb 2002 07:47:14 -  1.30
  +++ mbeans-descriptors.xml15 Feb 2002 00:19:27 -  1.31
  @@ -6,7 +6,7 @@
   !--
Descriptions of JMX MBeans for Catalina
   
  - $Id: mbeans-descriptors.xml,v 1.30 2002/02/14 07:47:14 amyroh Exp $
  + $Id: mbeans-descriptors.xml,v 1.31 2002/02/15 00:19:27 craigmcc Exp $
--
   
   mbeans-descriptors
  @@ -148,6 +148,25 @@
   entropy of the initialization of our random number
   generator
type=java.lang.String/
  +  /mbean
  +
  +
  +  mbean name=CertificatesValve
  +className=org.apache.catalina.mbeans.ClassNameMBean
  +  description=Valve that exposes SSL certificate information
  +   domain=Catalina
  +group=Valve
  + type=org.apache.catalina.valves.CertificatesValve
  +
  +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
   
   
  
  
  

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




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

2002-02-11 Thread amyroh

amyroh  02/02/11 17:05:56

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Add Ajp13Connector MBean descriptor.
  
  Revision  ChangesPath
  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.xml10 Feb 2002 08:06:20 -  1.28
  +++ mbeans-descriptors.xml12 Feb 2002 01:05:56 -  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]




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

2002-01-25 Thread craigmcc

craigmcc02/01/25 16:59:43

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Expose the save() operation on the UserDatabase MBean, so that the admin
  app can ask the database to save itself to persistent storage (if needed).
  
  Revision  ChangesPath
  1.23  +7 -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.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- mbeans-descriptors.xml24 Jan 2002 20:40:42 -  1.22
  +++ mbeans-descriptors.xml26 Jan 2002 00:59:42 -  1.23
  @@ -6,7 +6,7 @@
   !--
Descriptions of JMX MBeans for Catalina
   
  - $Id: mbeans-descriptors.xml,v 1.22 2002/01/24 20:40:42 craigmcc Exp $
  + $Id: mbeans-descriptors.xml,v 1.23 2002/01/26 00:59:42 craigmcc Exp $
--
   
   mbeans-descriptors
  @@ -750,6 +750,12 @@
 parameter name=username
 description=User name of the user to remove
type=java.lang.String/
  +/operation
  +
  +operation   name=save
  +  description=Save current users and groups to persistent storage
  +   impact=ACTION
  +   returnType=void
   /operation
   
 /mbean
  
  
  

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




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

2002-01-24 Thread craigmcc

craigmcc02/01/24 12:40:42

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Add definitions of the className attribute so that tools can see it.
  
  Revision  ChangesPath
  1.22  +71 -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.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- mbeans-descriptors.xml24 Jan 2002 20:34:05 -  1.21
  +++ mbeans-descriptors.xml24 Jan 2002 20:40:42 -  1.22
  @@ -6,7 +6,7 @@
   !--
Descriptions of JMX MBeans for Catalina
   
  - $Id: mbeans-descriptors.xml,v 1.21 2002/01/24 20:34:05 craigmcc Exp $
  + $Id: mbeans-descriptors.xml,v 1.22 2002/01/24 20:40:42 craigmcc Exp $
--
   
   mbeans-descriptors
  @@ -19,6 +19,11 @@
   group=Valve
type=org.apache.catalina.valves.AccessLogValve
   
  +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/
  @@ -80,6 +85,11 @@
   group=Logger
type=org.apache.catalina.logger.FileLogger
   
  +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/
  @@ -171,6 +181,11 @@
 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/
  @@ -241,6 +256,11 @@
 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/
  @@ -295,6 +315,11 @@
   group=Realm
type=org.apache.catalina.realm.JDBCRealm
   
  +attribute   name=className
  +  description=Fully qualified class name of the managed object
  + type=java.lang.String
  +writeable=false/
  +
   attribute   name=connectionName
 description=The connection username to use when trying to connect to the 
database
type=java.lang.String/
  @@ -349,6 +374,11 @@
   group=Realm
type=org.apache.catalina.realm.JNDIRealm
   
  +attribute   name=className
  +  description=Fully qualified class name of the managed object
  + type=java.lang.String
  +writeable=false/
  +
   attribute   name=connectionName
 description=The connection username for the server we will contact
type=java.lang.String/
  @@ -612,6 +642,11 @@
   group=Realm
type=org.apache.catalina.realm.MemoryRealm
   
  +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/
  @@ -731,6 +766,11 @@
 description=The comma-delimited set of allow expressions
type=java.lang.String/
   
  +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/
  @@ -753,6 +793,11 @@
 description=The comma-delimited set of allow expressions
type=java.lang.String/
   
  +attribute   name=className
  +  description=Fully qualified class name of the managed object
  + type=java.lang.String
  

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

2002-01-22 Thread amyroh

amyroh  02/01/22 10:24:12

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Fix parameter names to be more meaningful.
  
  Revision  ChangesPath
  1.16  +10 -9 
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.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- mbeans-descriptors.xml18 Jan 2002 21:50:10 -  1.15
  +++ mbeans-descriptors.xml22 Jan 2002 18:24:12 -  1.16
  @@ -6,7 +6,7 @@
   !--
Descriptions of JMX MBeans for Catalina
   
  - $Id: mbeans-descriptors.xml,v 1.15 2002/01/18 21:50:10 craigmcc Exp $
  + $Id: mbeans-descriptors.xml,v 1.16 2002/01/22 18:24:12 amyroh Exp $
--
   
   mbeans-descriptors
  @@ -338,6 +338,7 @@
   
   
 mbean name=MBeanFactory
  +className=org.apache.catalina.mbeans.MBeanFactory
 description=Factory for MBeans and corresponding components
  domain=Catalina
   
  @@ -687,7 +688,7 @@
 description=Associate the specified Loader with this Context
  impact=ACTION
  returnType=void
  -  parameter name=valve
  +  parameter name=loader
 description=MBean Name of the Loader to be associated
type=java.lang.String/
   /operation
  @@ -696,7 +697,7 @@
 description=Associate the specified Logger with this Context
  impact=ACTION
  returnType=void
  -  parameter name=valve
  +  parameter name=logger
 description=MBean Name of the Logger to be associated
type=java.lang.String/
   /operation
  @@ -705,7 +706,7 @@
 description=Associate the specified Manager with this Context
  impact=ACTION
  returnType=void
  -  parameter name=valve
  +  parameter name=manager
 description=MBean Name of the Manager to be associated
type=java.lang.String/
   /operation
  @@ -714,7 +715,7 @@
 description=Associate the specified Realm with this Context
  impact=ACTION
  returnType=void
  -  parameter name=valve
  +  parameter name=realm
 description=MBean Name of the Realm to be associated
type=java.lang.String/
   /operation
  @@ -781,7 +782,7 @@
 description=Associate the specified Logger with this Engine
  impact=ACTION
  returnType=void
  -  parameter name=valve
  +  parameter name=logger
 description=MBean Name of the Logger to be associated
type=java.lang.String/
   /operation
  @@ -790,7 +791,7 @@
 description=Associate the specified Realm with this Engine
  impact=ACTION
  returnType=void
  -  parameter name=valve
  +  parameter name=realm
 description=MBean Name of the Realm to be associated
type=java.lang.String/
   /operation
  @@ -890,7 +891,7 @@
 description=Associate the specified Logger with this Host
  impact=ACTION
  returnType=void
  -  parameter name=valve
  +  parameter name=logger
 description=MBean Name of the Logger to be associated
type=java.lang.String/
   /operation
  @@ -899,7 +900,7 @@
 description=Associate the specified Realm with this Host
  impact=ACTION
  returnType=void
  -  parameter name=valve
  +  parameter name=realm
 description=MBean Name of the Realm to be associated
type=java.lang.String/
   /operation
  
  
  

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




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

2002-01-08 Thread amyroh

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  ChangesPath
  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.xml3 Dec 2001 17:33:05 -   1.13
  +++ mbeans-descriptors.xml9 Jan 2002 00:51:28 -   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:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




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

2001-12-03 Thread amyroh

amyroh  01/12/03 09:33:05

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Added debug mbean attribute to Server MBean.
  
  Revision  ChangesPath
  1.13  +5 -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.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- mbeans-descriptors.xml2001/11/15 02:03:08 1.12
  +++ mbeans-descriptors.xml2001/12/03 17:33:05 1.13
  @@ -6,7 +6,7 @@
   !--
Descriptions of JMX MBeans for Catalina
   
  - $Id: mbeans-descriptors.xml,v 1.12 2001/11/15 02:03:08 craigmcc Exp $
  + $Id: mbeans-descriptors.xml,v 1.13 2001/12/03 17:33:05 amyroh Exp $
--
   
   mbeans-descriptors
  @@ -993,6 +993,10 @@
  domain=Catalina
   group=Server
type=org.apache.catalina.core.StandardServer
  +
  +attribute   name=debug
  +  description=The debugging detail level for this component
  + type=int/
   
   attribute   name=port
 description=TCP port for shutdown messages
  
  
  

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




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

2001-11-14 Thread craigmcc

craigmcc01/11/14 18:03:08

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  Fix a syntax error introduced on a recent change to this file.
  
  Revision  ChangesPath
  1.12  +2 -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.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- mbeans-descriptors.xml2001/11/14 03:51:06 1.11
  +++ mbeans-descriptors.xml2001/11/15 02:03:08 1.12
  @@ -6,7 +6,7 @@
   !--
Descriptions of JMX MBeans for Catalina
   
  - $Id: mbeans-descriptors.xml,v 1.11 2001/11/14 03:51:06 amyroh Exp $
  + $Id: mbeans-descriptors.xml,v 1.12 2001/11/15 02:03:08 craigmcc Exp $
--
   
   mbeans-descriptors
  @@ -692,7 +692,7 @@
   operation   name=createAccessLogger
 description=Create a new AccessLogger
  impact=ACTION
  -   returnType=void/
  +   returnType=void
   /operation
   
   operation   name=createHost
  
  
  

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




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

2001-10-27 Thread remm

remm01/10/26 13:38:23

  Modified:catalina/src/share/org/apache/catalina/mbeans
mbeans-descriptors.xml
  Log:
  - Add the allowChunking flag for the HTTP/1.1 connector.
  
  Revision  ChangesPath
  1.3   +5 -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.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- mbeans-descriptors.xml2001/10/26 20:04:40 1.2
  +++ mbeans-descriptors.xml2001/10/26 20:38:23 1.3
  @@ -6,7 +6,7 @@
   !--
Descriptions of JMX MBeans for Catalina
   
  - $Id: mbeans-descriptors.xml,v 1.2 2001/10/26 20:04:40 craigmcc Exp $
  + $Id: mbeans-descriptors.xml,v 1.3 2001/10/26 20:38:23 remm Exp $
--
   
   mbeans-descriptors
  @@ -203,6 +203,10 @@
   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