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 3D99A184B5 for ; Wed, 8 Jul 2015 14:34:26 +0000 (UTC) Received: (qmail 18802 invoked by uid 500); 8 Jul 2015 14:34:26 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 18736 invoked by uid 500); 8 Jul 2015 14:34:26 -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 18727 invoked by uid 99); 8 Jul 2015 14:34:25 -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; Wed, 08 Jul 2015 14:34:25 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D4A6EDFAF3; Wed, 8 Jul 2015 14:34:25 +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: <4d6d76d2283147568bae8ccaf262c337@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: [CXF-6489] Adding ClientSecretVerifier setter Date: Wed, 8 Jul 2015 14:34:25 +0000 (UTC) Repository: cxf Updated Branches: refs/heads/3.0.x-fixes b712dee4d -> b80d2be84 [CXF-6489] Adding ClientSecretVerifier setter Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/b80d2be8 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/b80d2be8 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/b80d2be8 Branch: refs/heads/3.0.x-fixes Commit: b80d2be84c186df87f667f268e641ce7098553c8 Parents: b712dee Author: Sergey Beryozkin Authored: Wed Jul 8 15:32:20 2015 +0100 Committer: Sergey Beryozkin Committed: Wed Jul 8 15:33:53 2015 +0100 ---------------------------------------------------------------------- .../cxf/rs/security/oauth2/services/AbstractTokenService.java | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/b80d2be8/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/services/AbstractTokenService.java ---------------------------------------------------------------------- diff --git a/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/services/AbstractTokenService.java b/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/services/AbstractTokenService.java index 23d8053..29eadcb 100644 --- a/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/services/AbstractTokenService.java +++ b/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/services/AbstractTokenService.java @@ -260,4 +260,8 @@ public class AbstractTokenService extends AbstractOAuthService { public void setClientIdProvider(ClientIdProvider clientIdProvider) { this.clientIdProvider = clientIdProvider; } + + public void setClientSecretVerifier(ClientSecretVerifier clientSecretVerifier) { + this.clientSecretVerifier = clientSecretVerifier; + } }