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 3FC1F17E23 for ; Tue, 26 Jan 2016 16:02:15 +0000 (UTC) Received: (qmail 18721 invoked by uid 500); 26 Jan 2016 16:02:15 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 18659 invoked by uid 500); 26 Jan 2016 16:02:15 -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 18650 invoked by uid 99); 26 Jan 2016 16:02:15 -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; Tue, 26 Jan 2016 16:02:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id EA719DFF96; Tue, 26 Jan 2016 16:02:14 +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: X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: Fixing 3.1.x build failure Date: Tue, 26 Jan 2016 16:02:14 +0000 (UTC) Repository: cxf Updated Branches: refs/heads/3.1.x-fixes 1308529e8 -> 2ba960917 Fixing 3.1.x build failure Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/2ba96091 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/2ba96091 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/2ba96091 Branch: refs/heads/3.1.x-fixes Commit: 2ba96091771fd8a15852b39373a22b4973d26ca1 Parents: 1308529 Author: Sergey Beryozkin Authored: Tue Jan 26 16:01:55 2016 +0000 Committer: Sergey Beryozkin Committed: Tue Jan 26 16:01:55 2016 +0000 ---------------------------------------------------------------------- .../cxf/systest/jaxrs/security/oauth2/OAuthDataProviderImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/2ba96091/systests/rs-security/src/test/java/org/apache/cxf/systest/jaxrs/security/oauth2/OAuthDataProviderImpl.java ---------------------------------------------------------------------- diff --git a/systests/rs-security/src/test/java/org/apache/cxf/systest/jaxrs/security/oauth2/OAuthDataProviderImpl.java b/systests/rs-security/src/test/java/org/apache/cxf/systest/jaxrs/security/oauth2/OAuthDataProviderImpl.java index 47b2fce..bb48bf0 100644 --- a/systests/rs-security/src/test/java/org/apache/cxf/systest/jaxrs/security/oauth2/OAuthDataProviderImpl.java +++ b/systests/rs-security/src/test/java/org/apache/cxf/systest/jaxrs/security/oauth2/OAuthDataProviderImpl.java @@ -120,13 +120,13 @@ public class OAuthDataProviderImpl implements OAuthDataProvider { } @Override - public List getAccessTokens(Client client) throws OAuthServiceException { + public List getAccessTokens(Client client, UserSubject sub) throws OAuthServiceException { // TODO Auto-generated method stub return null; } @Override - public List getRefreshTokens(Client client) throws OAuthServiceException { + public List getRefreshTokens(Client client, UserSubject sub) throws OAuthServiceException { // TODO Auto-generated method stub return null; }