Author: markt
Date: Mon Aug 8 10:20:40 2011
New Revision: 1154902
URL: http://svn.apache.org/viewvc?rev=1154902&view=rev
Log:
Add missing getter and setter for the alwaysUseSession attribute of the
authenticators.
Modified:
tomcat/trunk/java/org/apache/catalina/authenticator/AuthenticatorBase.java
tomcat/trunk/webapps/docs/changelog.xml
Modified:
tomcat/trunk/java/org/apache/catalina/authenticator/AuthenticatorBase.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/authenticator/AuthenticatorBase.java?rev=1154902&r1=1154901&r2=1154902&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/authenticator/AuthenticatorBase.java
(original)
+++ tomcat/trunk/java/org/apache/catalina/authenticator/AuthenticatorBase.java
Mon Aug 8 10:20:40 2011
@@ -204,6 +204,16 @@ public abstract class AuthenticatorBase
// ------------------------------------------------------------- Properties
+ public boolean getAlwaysUseSession() {
+ return alwaysUseSession;
+ }
+
+
+ public void setAlwaysUseSession(boolean alwaysUseSession) {
+ this.alwaysUseSession = alwaysUseSession;
+ }
+
+
/**
* Return the cache authenticated Principals flag.
*/
Modified: tomcat/trunk/webapps/docs/changelog.xml
URL:
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1154902&r1=1154901&r2=1154902&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Mon Aug 8 10:20:40 2011
@@ -142,6 +142,10 @@
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">
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]