From b78bd3ed4f858b5d223572b07030091dd1bf1c32 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Wed, 19 Mar 2008 16:02:52 +0000 Subject: [PATCH] SEC-719: Change default value of useAuthTypeAsCredentials to true to prevent tests breaking --- .../security/ui/portlet/PortletProcessingInterceptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portlet/src/main/java/org/springframework/security/ui/portlet/PortletProcessingInterceptor.java b/portlet/src/main/java/org/springframework/security/ui/portlet/PortletProcessingInterceptor.java index 624fe60cb1..2af5c568dd 100644 --- a/portlet/src/main/java/org/springframework/security/ui/portlet/PortletProcessingInterceptor.java +++ b/portlet/src/main/java/org/springframework/security/ui/portlet/PortletProcessingInterceptor.java @@ -95,7 +95,7 @@ public class PortletProcessingInterceptor implements HandlerInterceptor, Initial private AuthenticationDetailsSource authenticationDetailsSource; - private boolean useAuthTypeAsCredentials = false; + private boolean useAuthTypeAsCredentials = true; public PortletProcessingInterceptor() { authenticationDetailsSource = new AuthenticationDetailsSourceImpl();