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 D49661848B for ; Thu, 27 Aug 2015 16:28:27 +0000 (UTC) Received: (qmail 85238 invoked by uid 500); 27 Aug 2015 16:28:27 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 85168 invoked by uid 500); 27 Aug 2015 16:28:27 -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 85158 invoked by uid 99); 27 Aug 2015 16:28:27 -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, 27 Aug 2015 16:28:27 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8D530DFBE6; Thu, 27 Aug 2015 16:28:27 +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 Date: Thu, 27 Aug 2015 16:28:28 -0000 Message-Id: <9e96374aa34b4ac2a642ef41237448be@git.apache.org> In-Reply-To: <45a938236eff4f949f26d09a481033ac@git.apache.org> References: <45a938236eff4f949f26d09a481033ac@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/4] cxf git commit: [CXF-6562] ResourceOwnerGrantHandler: add getter for loginHandler [CXF-6562] ResourceOwnerGrantHandler: add getter for loginHandler Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/62ebe027 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/62ebe027 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/62ebe027 Branch: refs/heads/master Commit: 62ebe027a7d0e24f4eca5da0fff93bcdea692776 Parents: e407bc9 Author: Karl von Randow Authored: Thu Aug 27 11:47:36 2015 +1200 Committer: Karl von Randow Committed: Thu Aug 27 11:47:36 2015 +1200 ---------------------------------------------------------------------- .../security/oauth2/grants/owner/ResourceOwnerGrantHandler.java | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/62ebe027/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/grants/owner/ResourceOwnerGrantHandler.java ---------------------------------------------------------------------- diff --git a/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/grants/owner/ResourceOwnerGrantHandler.java b/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/grants/owner/ResourceOwnerGrantHandler.java index 875823b..d7f6c33 100644 --- a/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/grants/owner/ResourceOwnerGrantHandler.java +++ b/rt/rs/security/oauth-parent/oauth2/src/main/java/org/apache/cxf/rs/security/oauth2/grants/owner/ResourceOwnerGrantHandler.java @@ -58,6 +58,10 @@ public class ResourceOwnerGrantHandler extends AbstractGrantHandler { subject, params); } + + public ResourceOwnerLoginHandler getLoginHandler() { + return this.loginHandler; + } public void setLoginHandler(ResourceOwnerLoginHandler loginHandler) { this.loginHandler = loginHandler;