Repository: cxf Updated Branches: refs/heads/3.0.x-fixes 483fafaed -> 71c65e8cc
[CXF-6487] One more minor update Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/71c65e8c Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/71c65e8c Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/71c65e8c Branch: refs/heads/3.0.x-fixes Commit: 71c65e8ccda8483006844f14a638258155fc5edf Parents: 483fafa Author: Sergey Beryozkin <[email protected]> Authored: Fri Jul 10 17:21:06 2015 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Fri Jul 10 17:21:44 2015 +0100 ---------------------------------------------------------------------- .../java/org/apache/cxf/rs/security/oidc/rp/UserInfoClient.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/71c65e8c/rt/rs/security/sso/oidc/src/main/java/org/apache/cxf/rs/security/oidc/rp/UserInfoClient.java ---------------------------------------------------------------------- diff --git a/rt/rs/security/sso/oidc/src/main/java/org/apache/cxf/rs/security/oidc/rp/UserInfoClient.java b/rt/rs/security/sso/oidc/src/main/java/org/apache/cxf/rs/security/oidc/rp/UserInfoClient.java index 706368b..b9281b8 100644 --- a/rt/rs/security/sso/oidc/src/main/java/org/apache/cxf/rs/security/oidc/rp/UserInfoClient.java +++ b/rt/rs/security/sso/oidc/src/main/java/org/apache/cxf/rs/security/oidc/rp/UserInfoClient.java @@ -43,7 +43,7 @@ public class UserInfoClient extends IdTokenReader { } } public UserInfo getUserInfoFromJwt(String profileJwtToken, IdToken idToken) { - JwtToken jwt = getUserInfoJwt(profileJwtToken, idToken); + JwtToken jwt = getUserInfoJwt(profileJwtToken); return getUserInfoFromJwt(jwt, idToken); } public UserInfo getUserInfoFromJwt(JwtToken jwt, IdToken idToken) { @@ -51,7 +51,7 @@ public class UserInfoClient extends IdTokenReader { validateUserInfo(profile, idToken); return profile; } - public JwtToken getUserInfoJwt(String profileJwtToken, IdToken idToken) { + public JwtToken getUserInfoJwt(String profileJwtToken) { return getJwtToken(profileJwtToken, encryptedOnly); } public void validateUserInfo(UserInfo profile, IdToken idToken) {
