From commits-return-45608-apmail-cxf-commits-archive=cxf.apache.org@cxf.apache.org Fri Mar 24 09:56:32 2017 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 1CC18195F0 for ; Fri, 24 Mar 2017 09:56:32 +0000 (UTC) Received: (qmail 13253 invoked by uid 500); 24 Mar 2017 09:56:32 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 13194 invoked by uid 500); 24 Mar 2017 09:56:32 -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 13185 invoked by uid 99); 24 Mar 2017 09:56:32 -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; Fri, 24 Mar 2017 09:56:31 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id DE79CDFFDA; Fri, 24 Mar 2017 09:56:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: coheigea@apache.org To: commits@cxf.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: CXF-4692 - Allow customization of Request Security Token Response Date: Fri, 24 Mar 2017 09:56:31 +0000 (UTC) Repository: cxf Updated Branches: refs/heads/master 4f98bea0d -> 4824bfe59 CXF-4692 - Allow customization of Request Security Token Response Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/4824bfe5 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/4824bfe5 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/4824bfe5 Branch: refs/heads/master Commit: 4824bfe59878dd9dbbd2a067e8772b1971897cfc Parents: 4f98bea Author: Colm O hEigeartaigh Authored: Fri Mar 24 09:56:11 2017 +0000 Committer: Colm O hEigeartaigh Committed: Fri Mar 24 09:56:11 2017 +0000 ---------------------------------------------------------------------- .../java/org/apache/cxf/sts/operation/TokenCancelOperation.java | 2 +- .../java/org/apache/cxf/sts/operation/TokenIssueOperation.java | 2 +- .../java/org/apache/cxf/sts/operation/TokenRenewOperation.java | 2 +- .../java/org/apache/cxf/sts/operation/TokenValidateOperation.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/4824bfe5/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenCancelOperation.java ---------------------------------------------------------------------- diff --git a/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenCancelOperation.java b/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenCancelOperation.java index 3dea28a..c9ea448 100644 --- a/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenCancelOperation.java +++ b/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenCancelOperation.java @@ -151,7 +151,7 @@ public class TokenCancelOperation extends AbstractOperation implements CancelOpe } - private RequestSecurityTokenResponseType createResponse( + protected RequestSecurityTokenResponseType createResponse( TokenRequirements tokenRequirements ) throws WSSecurityException { RequestSecurityTokenResponseType response = http://git-wip-us.apache.org/repos/asf/cxf/blob/4824bfe5/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenIssueOperation.java ---------------------------------------------------------------------- diff --git a/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenIssueOperation.java b/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenIssueOperation.java index d38eecf..5e98bef 100644 --- a/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenIssueOperation.java +++ b/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenIssueOperation.java @@ -253,7 +253,7 @@ public class TokenIssueOperation extends AbstractOperation implements IssueOpera validateTarget, tokenPrincipal, tokenRoles); } - private RequestSecurityTokenResponseType createResponse( + protected RequestSecurityTokenResponseType createResponse( EncryptionProperties encryptionProperties, TokenProviderResponse tokenResponse, TokenRequirements tokenRequirements, http://git-wip-us.apache.org/repos/asf/cxf/blob/4824bfe5/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenRenewOperation.java ---------------------------------------------------------------------- diff --git a/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenRenewOperation.java b/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenRenewOperation.java index 472e94d..4c1e92b 100644 --- a/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenRenewOperation.java +++ b/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenRenewOperation.java @@ -200,7 +200,7 @@ public class TokenRenewOperation extends AbstractOperation implements RenewOpera } } - private RequestSecurityTokenResponseType createResponse( + protected RequestSecurityTokenResponseType createResponse( EncryptionProperties encryptionProperties, TokenRenewerResponse tokenRenewerResponse, TokenRequirements tokenRequirements, http://git-wip-us.apache.org/repos/asf/cxf/blob/4824bfe5/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenValidateOperation.java ---------------------------------------------------------------------- diff --git a/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenValidateOperation.java b/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenValidateOperation.java index b0b9e19..045772b 100644 --- a/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenValidateOperation.java +++ b/services/sts/sts-core/src/main/java/org/apache/cxf/sts/operation/TokenValidateOperation.java @@ -184,7 +184,7 @@ public class TokenValidateOperation extends AbstractOperation implements Validat } } - private RequestSecurityTokenResponseType createResponse( + protected RequestSecurityTokenResponseType createResponse( TokenValidatorResponse tokenResponse, TokenProviderResponse tokenProviderResponse, TokenRequirements tokenRequirements