Repository: cxf Updated Branches: refs/heads/master 0d797ec55 -> 33c767136
getTokenFromSTS: removed unused parameter Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/89ae972b Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/89ae972b Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/89ae972b Branch: refs/heads/master Commit: 89ae972bcc621be990531ce809ffa6f6e2c40ab8 Parents: e669509 Author: Andrei Shakirin <[email protected]> Authored: Wed Jan 4 22:09:56 2017 +0100 Committer: Andrei Shakirin <[email protected]> Committed: Wed Jan 4 22:09:56 2017 +0100 ---------------------------------------------------------------------- .../java/org/apache/cxf/ws/security/trust/STSTokenRetriever.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/89ae972b/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSTokenRetriever.java ---------------------------------------------------------------------- diff --git a/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSTokenRetriever.java b/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSTokenRetriever.java index 41556a7..e5eaba4 100644 --- a/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSTokenRetriever.java +++ b/rt/ws/security/src/main/java/org/apache/cxf/ws/security/trust/STSTokenRetriever.java @@ -161,7 +161,7 @@ public final class STSTokenRetriever { // Check to see whether the delegated token needs to be renewed secToken = renewToken(message, secToken, params); } else { - secToken = getTokenFromSTS(message, client, maps, appliesTo, params); + secToken = getTokenFromSTS(client, maps, appliesTo, params); } storeDelegationTokens( message, secToken, onBehalfOfToken, actAsToken, appliesTo, @@ -409,7 +409,7 @@ public final class STSTokenRetriever { } } - private static SecurityToken getTokenFromSTS(Message message, STSClient client, + private static SecurityToken getTokenFromSTS(STSClient client, AddressingProperties maps, String appliesTo, TokenRequestParams params) throws Exception { client.setTrust(params.getTrust10());
