Repository: cxf Updated Branches: refs/heads/master 81f3a848e -> 84c8ce83f
Disabling JAASLogingInterceptor allowNamedPrincipals by default Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/84c8ce83 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/84c8ce83 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/84c8ce83 Branch: refs/heads/master Commit: 84c8ce83f5eb9a37784629f856d7d8a94b26ce52 Parents: 81f3a84 Author: Sergey Beryozkin <[email protected]> Authored: Fri Jul 24 22:36:33 2015 +0300 Committer: Sergey Beryozkin <[email protected]> Committed: Fri Jul 24 22:36:33 2015 +0300 ---------------------------------------------------------------------- .../org/apache/cxf/interceptor/security/JAASLoginInterceptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/84c8ce83/core/src/main/java/org/apache/cxf/interceptor/security/JAASLoginInterceptor.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/cxf/interceptor/security/JAASLoginInterceptor.java b/core/src/main/java/org/apache/cxf/interceptor/security/JAASLoginInterceptor.java index 384284c..fa40793 100644 --- a/core/src/main/java/org/apache/cxf/interceptor/security/JAASLoginInterceptor.java +++ b/core/src/main/java/org/apache/cxf/interceptor/security/JAASLoginInterceptor.java @@ -57,7 +57,7 @@ public class JAASLoginInterceptor extends AbstractPhaseInterceptor<Message> { private boolean useDoAs = true; private List<CallbackHandlerProvider> callbackHandlerProviders; private boolean allowAnonymous = true; - private boolean allowNamedPrincipals = true; + private boolean allowNamedPrincipals; public JAASLoginInterceptor() { this(Phase.UNMARSHAL);
