Author: jdonnerstag
Date: Wed Dec 23 09:44:56 2009
New Revision: 893451

URL: http://svn.apache.org/viewvc?rev=893451&view=rev
Log: (empty)

Modified:
    
wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/AuthenticatedWebSession.java

Modified: 
wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/AuthenticatedWebSession.java
URL: 
http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/AuthenticatedWebSession.java?rev=893451&r1=893450&r2=893451&view=diff
==============================================================================
--- 
wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/AuthenticatedWebSession.java
 (original)
+++ 
wicket/branches/wicket-1.4.x/wicket-auth-roles/src/main/java/org/apache/wicket/authentication/AuthenticatedWebSession.java
 Wed Dec 23 09:44:56 2009
@@ -120,11 +120,14 @@
         * cookie but something else that safely identifies the user. This 
method is meant to support
         * these use cases.
         * 
+        * It is protected (and not public) to enforce that cookie based 
authentication gets implemented
+        * in a subclass (like you need to subclass authenticate() for 'normal' 
authentication).
+        * 
         * @see #authenticate(String, String)
         * 
         * @param value
         */
-       public final void signIn(boolean value)
+       protected final void signIn(boolean value)
        {
                signedIn = value;
        }


Reply via email to