diff --git a/cas-client-core/src/main/java/org/jasig/cas/client/validation/AbstractTicketValidationFilter.java b/cas-client-core/src/main/java/org/jasig/cas/client/validation/AbstractTicketValidationFilter.java index e9e1c5c..87e3589 100644 --- a/cas-client-core/src/main/java/org/jasig/cas/client/validation/AbstractTicketValidationFilter.java +++ b/cas-client-core/src/main/java/org/jasig/cas/client/validation/AbstractTicketValidationFilter.java @@ -38,10 +38,12 @@ import java.io.IOException; *

* This filter can be configured with the following values: *

* * @author Scott Battaglia @@ -56,13 +58,17 @@ public abstract class AbstractTicketValidationFilter extends AbstractCasFilter { /** * Specify whether the filter should redirect the user agent after a * successful validation to remove the ticket parameter from the query - * string. + * string. Will be forced to true when {@link #useSession} is false. */ - private boolean redirectAfterValidation = false; + private boolean redirectAfterValidation = true; /** Determines whether an exception is thrown when there is a ticket validation failure. */ private boolean exceptionOnValidationFailure = true; + /** + * Specify whether the Assertion should be stored in a session + * attribute {@link AbstractCasFilter#CONST_CAS_ASSERTION} + */ private boolean useSession = true; /**