Repository: cxf Updated Branches: refs/heads/3.0.x-fixes 1caca0f66 -> e8c388af3
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/e8c388af Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/e8c388af Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/e8c388af Branch: refs/heads/3.0.x-fixes Commit: e8c388af3c3e7cc705693b650d45abe1f46ccda7 Parents: 1caca0f Author: Sergey Beryozkin <[email protected]> Authored: Fri Jul 24 22:36:33 2015 +0300 Committer: Sergey Beryozkin <[email protected]> Committed: Fri Jul 24 22:39:47 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/e8c388af/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 a17b096..a48ead9 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 @@ -51,7 +51,7 @@ public class JAASLoginInterceptor extends AbstractPhaseInterceptor<Message> { private String roleClassifierType = ROLE_CLASSIFIER_PREFIX; private boolean reportFault; private boolean useDoAs = true; - private boolean allowNamedPrincipals = true; + private boolean allowNamedPrincipals; public JAASLoginInterceptor() { super(Phase.UNMARSHAL);
