You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kk...@apache.org on 2014/06/11 13:19:45 UTC

svn commit: r1601855 - /tomcat/trunk/java/org/apache/catalina/realm/package.html

Author: kkolinko
Date: Wed Jun 11 11:19:45 2014
New Revision: 1601855

URL: http://svn.apache.org/r1601855
Log:
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

Modified:
    tomcat/trunk/java/org/apache/catalina/realm/package.html

Modified: tomcat/trunk/java/org/apache/catalina/realm/package.html
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/realm/package.html?rev=1601855&r1=1601854&r2=1601855&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/realm/package.html (original)
+++ tomcat/trunk/java/org/apache/catalina/realm/package.html Wed Jun 11 11:19:45 2014
@@ -25,56 +25,6 @@ questions when a web application uses co
 in the Servlet API Specification.</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-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org