Author: kkolinko
Date: Wed Jun 11 11:24:41 2014
New Revision: 1601857

URL: http://svn.apache.org/r1601857
Log:
CTR: docs
Remove obsolete documentation from realm package javadoc.
The text is something very old that talks about "debug" attribute and that 
there are two standard realms, JDBCRealm and MemoryRealm.
The up-to-date documentation is maintained in docs/config/realm.html
Merged r1601856 from tomcat/tc7.0.x/trunk.

Modified:
    tomcat/tc6.0.x/trunk/   (props changed)
    tomcat/tc6.0.x/trunk/java/org/apache/catalina/realm/package.html

Propchange: tomcat/tc6.0.x/trunk/
------------------------------------------------------------------------------
  Merged /tomcat/trunk:r1601855
  Merged /tomcat/tc7.0.x/trunk:r1601856

Modified: tomcat/tc6.0.x/trunk/java/org/apache/catalina/realm/package.html
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/catalina/realm/package.html?rev=1601857&r1=1601856&r2=1601857&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/java/org/apache/catalina/realm/package.html (original)
+++ tomcat/tc6.0.x/trunk/java/org/apache/catalina/realm/package.html Wed Jun 11 
11:24:41 2014
@@ -25,56 +25,6 @@ questions when a web application uses co
 in the Servlet API Specification, version 2.2.</p>
 
 <p>The implementations share a common base class that supports basic
-functionality for all of the standard <code>Realm</code> implementations,
-and can be configured by setting the following properties (default values
-are in square brackets):</p>
-<ul>
-<li><b>debug</b> - Debugging detail level for this component. [0]</li>
-</ul>
-
-<p>The standard <code>Realm</code> implementations that are currently
-available include the following (with additional configuration properties
-as specified):</p>
-<ul>
-<li><b>JDBCRealm</b> - Implementation of <code>Realm</code> that operates
-    from data stored in a relational database that is accessed via a JDBC
-    driver.  The name of the driver, database connection information, and
-    the names of the relevant tables and columns are configured with the
-    following additional properties:
-    <ul>
-    <li><b>connectionURL</b> - The URL to use when connecting to this database.
-        [REQUIRED - NO DEFAULT]</li>
-    <li><b>driverName</b> - Fully qualified Java class name of the JDBC driver
-        to be used.  [REQUIRED - NO DEFAULT]</li>
-    <li><b>roleNameCol</b> - Name of the database column that contains role
-        names.  [REQUIRED - NO DEFAULT]</li>
-    <li><b>userCredCol</b> - Name of the database column that contains the
-        user's credentials (i.e. password) in cleartext.  [REQUIRED -
-        NO DEFAULT]</li>
-    <li><b>userNameCol</b> - Name of the database column that contains the
-        user's logon username.  [REQUIRED - NO DEFAULT]</li>
-    <li><b>userRoleTable</b> - Name of the database table containing user
-        role information.  This table must include the columns specified by
-        the <code>userNameCol</code> and <code>roleNameCol</code> properties.
-        [REQUIRED - NO DEFAULT]</li>
-    <li><b>userTable</b> - Name of the database table containing user
-        information.  This table must include the columns specified by the
-        <code>userNameCol</code> and <code>userCredCol</code> properties.
-        [REQUIRED - NO DEFAULT]</li>
-    </ul>
-    </li>
-<li><b>MemoryRealm</b> - Implementation of <code>Realm</code> that uses the
-    contents of a simple XML file (<code>conf/tomcat-users.xml</code>) as the
-    list of valid users and their roles.  This implementation is primarily to
-    demonstrate that the authentication technology functions correctly, and is
-    not anticipated as adequate for general purpose use.  This component
-    supports the following additional properties:
-    <ul>
-    <li><b>pathname</b> - Pathname of the XML file containing our user and
-        role information.  If a relative pathname is specified, it is resolved
-        against the pathname specified by the "catalina.home" system property.
-        [conf/tomcat-users.xml]</li>
-    </ul>
-</ul>
+functionality for all of the standard <code>Realm</code> implementations.</p>
 
 </body>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to