Branch: refs/heads/elytron
Home: https://github.com/jbossws/jbossws-common
Commit: 9aa4e3e1dcda130cb9058efb2a22fa25c800e3f3
https://github.com/jbossws/jbossws-common/commit/9aa4e3e1dcda130cb9058efb...
Author: Jim Ma <ema(a)redhat.com>
Date: 2016-11-09 (Wed, 09 Nov 2016)
Changed paths:
M src/main/java/org/jboss/ws/common/Messages.java
M src/main/java/org/jboss/ws/common/deployment/AbstractDefaultEndpoint.java
Log Message:
-----------
Throw exception when the security domain is configured with Elytron
Branch: refs/heads/master
Home: https://github.com/jbossws/jbossws-cxf
Commit: 358f72e0fa0f6fdf8990210daf55fbb313c7a158
https://github.com/jbossws/jbossws-cxf/commit/358f72e0fa0f6fdf8990210daf5...
Author: Philippe Marschall <philippe.marschall(a)gmail.com>
Date: 2016-11-03 (Thu, 03 Nov 2016)
Changed paths:
M modules/server/src/main/java/org/jboss/wsf/stack/cxf/security/authentication/SubjectCreatingPolicyInterceptor.java
Log Message:
-----------
[JBWS-4031] Avoid array allocation in SubjectCreatingPolicyInterceptor
SubjectCreatingPolicyInterceptor#getPrincipal(Principal, Subject)
converts a Set to an array just to get the first element. This is
unnecessary and can easily be done with an Iterator which avoids the
array creation.