Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3ABA418D9E for ; Thu, 19 Nov 2015 13:49:24 +0000 (UTC) Received: (qmail 7881 invoked by uid 500); 19 Nov 2015 13:49:24 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 7820 invoked by uid 500); 19 Nov 2015 13:49:23 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 7811 invoked by uid 99); 19 Nov 2015 13:49:23 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Nov 2015 13:49:23 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B2E13E17CB; Thu, 19 Nov 2015 13:49:23 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sergeyb@apache.org To: commits@cxf.apache.org Message-Id: <292426d95c274e0dae9843d8342849df@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: Sorry, 1 more nonce update Date: Thu, 19 Nov 2015 13:49:23 +0000 (UTC) Repository: cxf Updated Branches: refs/heads/3.1.x-fixes 20076a8c3 -> 4b577dc98 Sorry, 1 more nonce update Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/4b577dc9 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/4b577dc9 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/4b577dc9 Branch: refs/heads/3.1.x-fixes Commit: 4b577dc98cc61e4aead2f0bdff6d017c8a7679df Parents: 20076a8 Author: Sergey Beryozkin Authored: Thu Nov 19 13:48:30 2015 +0000 Committer: Sergey Beryozkin Committed: Thu Nov 19 13:49:11 2015 +0000 ---------------------------------------------------------------------- .../cxf/rs/security/oauth2/provider/JoseSessionTokenProvider.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/4b577dc9/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/provider/JoseSessionTokenProvider.java ---------------------------------------------------------------------- diff --git a/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/provider/JoseSessionTokenProvider.java b/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/provider/JoseSessionTokenProvider.java index a6a1c4c..fd25fa7 100644 --- a/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/provider/JoseSessionTokenProvider.java +++ b/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/provider/JoseSessionTokenProvider.java @@ -164,7 +164,7 @@ public class JoseSessionTokenProvider implements SessionAuthenticityTokenProvide state.setRedirectUri(parts[5]); } if (!StringUtils.isEmpty(parts[6])) { - state.setRedirectUri(parts[6]); + state.setNonce(parts[6]); } return state; }