From: markt Date: Mon, 8 Aug 2011 10:20:40 +0000 (+0000) Subject: Add missing getter and setter for the alwaysUseSession attribute of the authenticators. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=f6758d2529ca75a87008420ab5ec3c09e3bd216b;p=tomcat7.0 Add missing getter and setter for the alwaysUseSession attribute of the authenticators. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1154902 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/catalina/authenticator/AuthenticatorBase.java b/java/org/apache/catalina/authenticator/AuthenticatorBase.java index d84ae45dd..da01cc805 100644 --- a/java/org/apache/catalina/authenticator/AuthenticatorBase.java +++ b/java/org/apache/catalina/authenticator/AuthenticatorBase.java @@ -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. */ diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index 48e9eff8e..f909a4ccd 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -142,6 +142,10 @@ Prevent spurious log warnings on container stop if a child component has previously failed. (markt) + + Add missing getter and setter for the alwaysUseSession attribute of the + authenticators. (markt) +