Add missing getter and setter for the alwaysUseSession attribute of the authenticators.
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 8 Aug 2011 10:20:40 +0000 (10:20 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 8 Aug 2011 10:20:40 +0000 (10:20 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1154902 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/authenticator/AuthenticatorBase.java
webapps/docs/changelog.xml

index d84ae45..da01cc8 100644 (file)
@@ -204,6 +204,16 @@ public abstract class AuthenticatorBase extends ValveBase
     // ------------------------------------------------------------- Properties
 
 
+    public boolean getAlwaysUseSession() {
+        return alwaysUseSession;
+    }
+
+
+    public void setAlwaysUseSession(boolean alwaysUseSession) {
+        this.alwaysUseSession = alwaysUseSession;
+    }
+
+
     /**
      * Return the cache authenticated Principals flag.
      */
index 48e9eff..f909a4c 100644 (file)
         Prevent spurious log warnings on container stop if a child component has
         previously failed. (markt)
       </fix>
+      <fix>
+        Add missing getter and setter for the alwaysUseSession attribute of the
+        authenticators. (markt)
+      </fix>
     </changelog>
   </subsection>
   <subsection name="Coyote">