You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2015/12/15 18:25:03 UTC

cxf-fediz git commit: Preferring the local/configured issuer as it was done before

Repository: cxf-fediz
Updated Branches:
  refs/heads/master d56d64742 -> 5d7f9d5be


Preferring the local/configured issuer as it was done before


Project: http://git-wip-us.apache.org/repos/asf/cxf-fediz/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf-fediz/commit/5d7f9d5b
Tree: http://git-wip-us.apache.org/repos/asf/cxf-fediz/tree/5d7f9d5b
Diff: http://git-wip-us.apache.org/repos/asf/cxf-fediz/diff/5d7f9d5b

Branch: refs/heads/master
Commit: 5d7f9d5be7ba313a09a10199613e70b09ff0cc47
Parents: d56d647
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Tue Dec 15 17:24:47 2015 +0000
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Tue Dec 15 17:24:47 2015 +0000

----------------------------------------------------------------------
 .../org/apache/cxf/fediz/service/oidc/SamlTokenConverter.java   | 5 -----
 1 file changed, 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/5d7f9d5b/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/SamlTokenConverter.java
----------------------------------------------------------------------
diff --git a/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/SamlTokenConverter.java b/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/SamlTokenConverter.java
index 2d0e31d..fe55736 100644
--- a/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/SamlTokenConverter.java
+++ b/services/oidc/src/main/java/org/apache/cxf/fediz/service/oidc/SamlTokenConverter.java
@@ -53,11 +53,6 @@ public class SamlTokenConverter {
         
         Assertion saml2Assertion = getSaml2Assertion(samlToken);
         if (saml2Assertion != null) {
-            // Issuer
-            Issuer assertionIssuer = saml2Assertion.getIssuer();
-            if (assertionIssuer != null) {
-                idToken.setIssuer(assertionIssuer.getValue());
-            }
             // issueInstant
             DateTime issueInstant = saml2Assertion.getIssueInstant();
             if (issueInstant != null) {