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 957AD180FF for ; Mon, 28 Dec 2015 15:05:42 +0000 (UTC) Received: (qmail 63317 invoked by uid 500); 28 Dec 2015 15:05:42 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 63261 invoked by uid 500); 28 Dec 2015 15:05:42 -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 63250 invoked by uid 99); 28 Dec 2015 15:05:42 -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; Mon, 28 Dec 2015 15:05:42 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3745FE03E1; Mon, 28 Dec 2015 15:05:42 +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: <60dc93ed68304d5eb98d6ac2179efd56@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cxf-fediz git commit: Updating ClientRegistrationService Date: Mon, 28 Dec 2015 15:05:42 +0000 (UTC) Repository: cxf-fediz Updated Branches: refs/heads/master acf4dee19 -> 35ab83126 Updating ClientRegistrationService Project: http://git-wip-us.apache.org/repos/asf/cxf-fediz/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf-fediz/commit/35ab8312 Tree: http://git-wip-us.apache.org/repos/asf/cxf-fediz/tree/35ab8312 Diff: http://git-wip-us.apache.org/repos/asf/cxf-fediz/diff/35ab8312 Branch: refs/heads/master Commit: 35ab83126ece138f3bda4e09e7480719df6d8305 Parents: acf4dee Author: Sergey Beryozkin Authored: Mon Dec 28 15:05:25 2015 +0000 Committer: Sergey Beryozkin Committed: Mon Dec 28 15:05:25 2015 +0000 ---------------------------------------------------------------------- .../apache/cxf/fediz/service/oidc/ClientRegistrationService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/35ab8312/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/ClientRegistrationService.java ---------------------------------------------------------------------- diff --git a/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/ClientRegistrationService.java b/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/ClientRegistrationService.java index 2398537..da6b96b 100644 --- a/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/ClientRegistrationService.java +++ b/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/ClientRegistrationService.java @@ -143,7 +143,7 @@ public class ClientRegistrationService { } public void init() { - for (Client c : manager.getClients()) { + for (Client c : manager.getClients(null)) { String userName = c.getResourceOwnerSubject().getLogin(); getClientRegistrations(userName).add(c); }