From 741db24905158cf9f83e15200961caccad40d037 Mon Sep 17 00:00:00 2001
From: markt
null
+ * will return BASIC, CLIENT_CERT, DIGEST, FORM, or null
* if there is no authenticated user.Principal returned by the
diff --git a/java/org/apache/catalina/authenticator/SSLAuthenticator.java b/java/org/apache/catalina/authenticator/SSLAuthenticator.java
index 5c9a6665f..9cfc6cb46 100644
--- a/java/org/apache/catalina/authenticator/SSLAuthenticator.java
+++ b/java/org/apache/catalina/authenticator/SSLAuthenticator.java
@@ -102,7 +102,7 @@ public class SSLAuthenticator
// NOTE: We don't try to reauthenticate using any existing SSO session,
// because that will only work if the original authentication was
- // BASIC or FORM, which are less secure than the CLIENT-CERT auth-type
+ // BASIC or FORM, which are less secure than the CLIENT_CERT auth-type
// specified for this webapp
//
// Uncomment below to allow previous FORM or BASIC authentications
diff --git a/java/org/apache/catalina/authenticator/SingleSignOn.java b/java/org/apache/catalina/authenticator/SingleSignOn.java
index e399f4e2f..00c212a36 100644
--- a/java/org/apache/catalina/authenticator/SingleSignOn.java
+++ b/java/org/apache/catalina/authenticator/SingleSignOn.java
@@ -616,7 +616,7 @@ public class SingleSignOn
*
* The purpose of this method is to allow an SSO entry that was
* established without a username/password combination (i.e. established
- * following DIGEST or CLIENT-CERT authentication) to be updated with
+ * following DIGEST or CLIENT_CERT authentication) to be updated with
* a username and password if one becomes available through a subsequent
* BASIC or FORM authentication. The SSO entry will then be usable for
* reauthentication.
@@ -630,7 +630,7 @@ public class SingleSignOn
* @param ssoId identifier of Single sign to be updated
* @param principal the Principal returned by the latest
* call to Realm.authenticate.
- * @param authType the type of authenticator used (BASIC, CLIENT-CERT,
+ * @param authType the type of authenticator used (BASIC, CLIENT_CERT,
* DIGEST or FORM)
* @param username the username (if any) used for the authentication
* @param password the password (if any) used for the authentication
diff --git a/java/org/apache/catalina/authenticator/SingleSignOnEntry.java b/java/org/apache/catalina/authenticator/SingleSignOnEntry.java
index 7cf68acb2..af2a02c77 100644
--- a/java/org/apache/catalina/authenticator/SingleSignOnEntry.java
+++ b/java/org/apache/catalina/authenticator/SingleSignOnEntry.java
@@ -56,7 +56,7 @@ public class SingleSignOnEntry
*
* @param principal the Principal returned by the latest
* call to Realm.authenticate.
- * @param authType the type of authenticator used (BASIC, CLIENT-CERT,
+ * @param authType the type of authenticator used (BASIC, CLIENT_CERT,
* DIGEST or FORM)
* @param username the username (if any) used for the authentication
* @param password the password (if any) used for the authentication
@@ -119,7 +119,7 @@ public class SingleSignOnEntry
* Gets the name of the authentication type originally used to authenticate
* the user associated with the SSO.
*
- * @return "BASIC", "CLIENT-CERT", "DIGEST", "FORM" or "NONE"
+ * @return "BASIC", "CLIENT_CERT", "DIGEST", "FORM" or "NONE"
*/
public String getAuthType() {
return (this.authType);
@@ -170,7 +170,7 @@ public class SingleSignOnEntry
*
* @param principal the Principal returned by the latest
* call to Realm.authenticate.
- * @param authType the type of authenticator used (BASIC, CLIENT-CERT,
+ * @param authType the type of authenticator used (BASIC, CLIENT_CERT,
* DIGEST or FORM)
* @param username the username (if any) used for the authentication
* @param password the password (if any) used for the authentication
diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 81fd38aab..595a2551d 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -35,6 +35,12 @@
created during a secure request. Patch provided by Chris Halstead.
(markt)
+