Correct a Javadoc mix-up
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 1 Apr 2011 17:19:39 +0000 (17:19 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Fri, 1 Apr 2011 17:19:39 +0000 (17:19 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1087819 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/Realm.java
webapps/docs/changelog.xml

index f03f4b6..2adf5f8 100644 (file)
@@ -108,8 +108,8 @@ public interface Realm {
 
 
     /**
-     * Return the Principal associated with the specified chain of X509
-     * client certificates.  If there is none, return <code>null</code>.
+     * Return the Principal associated with the specified {@link GSSContext}.
+     * If there is none, return <code>null</code>.
      *
      * @param gssContext The gssContext processed by the {@link Authenticator}.
      * @param storeCreds Should the realm attempt to store the delegated
@@ -119,10 +119,10 @@ public interface Realm {
     
     
     /**
-     * Return the Principal associated with the specified {@link GSSContext}.
-     * If there is none, return <code>null</code>.
+     * Return the Principal associated with the specified chain of X509
+     * client certificates.  If there is none, return <code>null</code>.
      *
-     * @param gssContext Array of client certificates, with the first one in
+     * @param certs Array of client certificates, with the first one in
      *  the array being the certificate of the client itself.
      */
     public Principal authenticate(X509Certificate certs[]);
index 53dc624..e7025c1 100644 (file)
   General, Catalina, Coyote, Jasper, Cluster, Web applications, Extras, Tribes,
   Other
 -->
+<section name="Tomcat 7.0.13 (markt)">
+  <subsection name="Catalina">
+    <changelog>
+      <fix>
+        Correct mix-up in Realm Javadoc. (markt)
+      </fix>
+    </changelog>
+  </subsection>
+</section>
 <section name="Tomcat 7.0.12 (markt)">
   <subsection name="Catalina">
     <changelog>