Author: kkolinko Date: Sat Sep 27 14:35:35 2014 New Revision: 1627972 URL: http://svn.apache.org/r1627972 Log: s/PBE/SecretKey/ Correct one place missed when doing rename in r1627617 and improve javadoc formatting.
Modified: tomcat/trunk/java/org/apache/catalina/realm/RealmBase.java Modified: tomcat/trunk/java/org/apache/catalina/realm/RealmBase.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/realm/RealmBase.java?rev=1627972&r1=1627971&r2=1627972&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/catalina/realm/RealmBase.java (original) +++ tomcat/trunk/java/org/apache/catalina/realm/RealmBase.java Sat Sep 27 14:35:35 2014 @@ -1426,7 +1426,8 @@ public abstract class RealmBase extends /** * Generate a stored credential string for the given password and associated - * parameters. The following parameters are supported: + * parameters. + * <p>The following parameters are supported:</p> * <ul> * <li><b>-a</b> - The algorithm to use to generate the stored * credential. If not specified a default of SHA-512 will be @@ -1448,13 +1449,13 @@ public abstract class RealmBase extends * tested in turn and the first one to accept the specified * algorithm will be used.</li> * </ul> - * This generation process currently supports the following + * <p>This generation process currently supports the following * CredentialHandlers, the correct one being selected based on the algorithm - * specified: + * specified:</p> * <ul> - * <li>MessageDigestCredentialHandler</li> - * <li>PBECredentialHandler</li> - * </li> + * <li>{@link MessageDigestCredentialHandler}</li> + * <li>{@link SecretKeyCredentialHandler}</li> + * </ul> */ public static void main(String args[]) { --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org