Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id AAC2E200B6A for ; Mon, 8 Aug 2016 03:50:23 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id A9560160ABB; Mon, 8 Aug 2016 01:50:23 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id DBE61160AB4 for ; Mon, 8 Aug 2016 03:50:22 +0200 (CEST) Received: (qmail 64770 invoked by uid 500); 8 Aug 2016 01:50:22 -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 64661 invoked by uid 99); 8 Aug 2016 01:50:21 -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, 08 Aug 2016 01:50:21 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B9838E3839; Mon, 8 Aug 2016 01:50:21 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: reta@apache.org To: commits@cxf.apache.org Date: Mon, 08 Aug 2016 01:50:23 -0000 Message-Id: <2ce7e54e5c0b402bab9e06362f4fa8e2@git.apache.org> In-Reply-To: <102427ab420b4332b7b7f282dcf92e09@git.apache.org> References: <102427ab420b4332b7b7f282dcf92e09@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [03/27] cxf git commit: Splitting realm configuration into a separate file archived-at: Mon, 08 Aug 2016 01:50:23 -0000 Splitting realm configuration into a separate file Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/78e7e8dd Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/78e7e8dd Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/78e7e8dd Branch: refs/heads/master-jaxrs-2.1 Commit: 78e7e8ddf00c6961c7f21196d9c13a749699f24d Parents: c2af959 Author: Colm O hEigeartaigh Authored: Wed Aug 3 15:16:02 2016 +0100 Committer: Colm O hEigeartaigh Committed: Wed Aug 3 15:16:02 2016 +0100 ---------------------------------------------------------------------- .../cxf/sts/token/realm/RealmProperties.java | 17 ++++++++++ .../systest/sts/deployment/cxf-transport.xml | 13 ++------ .../cxf/systest/sts/deployment/realms.xml | 33 ++++++++++++++++++++ .../sts/deployment/stax-cxf-transport.xml | 13 ++------ 4 files changed, 56 insertions(+), 20 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/78e7e8dd/services/sts/sts-core/src/main/java/org/apache/cxf/sts/token/realm/RealmProperties.java ---------------------------------------------------------------------- diff --git a/services/sts/sts-core/src/main/java/org/apache/cxf/sts/token/realm/RealmProperties.java b/services/sts/sts-core/src/main/java/org/apache/cxf/sts/token/realm/RealmProperties.java index dfe65c6..8909248 100644 --- a/services/sts/sts-core/src/main/java/org/apache/cxf/sts/token/realm/RealmProperties.java +++ b/services/sts/sts-core/src/main/java/org/apache/cxf/sts/token/realm/RealmProperties.java @@ -41,6 +41,7 @@ public class RealmProperties { private static final Logger LOG = LogUtils.getL7dLogger(RealmProperties.class); + private String name; private String issuer; private String signatureAlias; private Crypto signatureCrypto; @@ -58,6 +59,22 @@ public class RealmProperties { } /** + * Get the name of this realm + * @return realmA + */ + public String getName() { + return name; + } + + /** + * Set the name of this realm + * @param name the name of this realm + */ + public void setName(String name) { + this.name = name; + } + + /** * Set the issuer of this realm * @param issuer the issuer of this realm */ http://git-wip-us.apache.org/repos/asf/cxf/blob/78e7e8dd/services/sts/systests/basic/src/test/resources/org/apache/cxf/systest/sts/deployment/cxf-transport.xml ---------------------------------------------------------------------- diff --git a/services/sts/systests/basic/src/test/resources/org/apache/cxf/systest/sts/deployment/cxf-transport.xml b/services/sts/systests/basic/src/test/resources/org/apache/cxf/systest/sts/deployment/cxf-transport.xml index b2b3404..8d721d9 100644 --- a/services/sts/systests/basic/src/test/resources/org/apache/cxf/systest/sts/deployment/cxf-transport.xml +++ b/services/sts/systests/basic/src/test/resources/org/apache/cxf/systest/sts/deployment/cxf-transport.xml @@ -24,6 +24,9 @@ + + + @@ -96,16 +99,6 @@ https://localhost:(\d)*/doubleit/services/doubleittransport.* - - - - - - - - - - http://git-wip-us.apache.org/repos/asf/cxf/blob/78e7e8dd/services/sts/systests/basic/src/test/resources/org/apache/cxf/systest/sts/deployment/realms.xml ---------------------------------------------------------------------- diff --git a/services/sts/systests/basic/src/test/resources/org/apache/cxf/systest/sts/deployment/realms.xml b/services/sts/systests/basic/src/test/resources/org/apache/cxf/systest/sts/deployment/realms.xml new file mode 100644 index 0000000..4aee41d --- /dev/null +++ b/services/sts/systests/basic/src/test/resources/org/apache/cxf/systest/sts/deployment/realms.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + http://git-wip-us.apache.org/repos/asf/cxf/blob/78e7e8dd/services/sts/systests/basic/src/test/resources/org/apache/cxf/systest/sts/deployment/stax-cxf-transport.xml ---------------------------------------------------------------------- diff --git a/services/sts/systests/basic/src/test/resources/org/apache/cxf/systest/sts/deployment/stax-cxf-transport.xml b/services/sts/systests/basic/src/test/resources/org/apache/cxf/systest/sts/deployment/stax-cxf-transport.xml index 43c75c7..8405022 100644 --- a/services/sts/systests/basic/src/test/resources/org/apache/cxf/systest/sts/deployment/stax-cxf-transport.xml +++ b/services/sts/systests/basic/src/test/resources/org/apache/cxf/systest/sts/deployment/stax-cxf-transport.xml @@ -24,6 +24,9 @@ + + + @@ -84,16 +87,6 @@ https://localhost:(\d)*/doubleit/services/doubleittransport.* - - - - - - - - - -