[java-identity-provider] 01/02: Fix toString to handle both id and flowId.

Scott Cantor cantor.2 at osu.edu
Fri Mar 21 17:17:30 UTC 2025


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=14766dcf30e42bc50fdd64aae25d423b9812a1b0

commit 14766dcf30e42bc50fdd64aae25d423b9812a1b0
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Mar 20 14:08:26 2025 -0400

    Fix toString to handle both id and flowId.
---
 .../shibboleth/idp/authn/SubjectCanonicalizationFlowDescriptor.java  | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/idp-authn-api/src/main/java/net/shibboleth/idp/authn/SubjectCanonicalizationFlowDescriptor.java b/idp-authn-api/src/main/java/net/shibboleth/idp/authn/SubjectCanonicalizationFlowDescriptor.java
index c797cb1a9..08b0eb2ea 100644
--- a/idp-authn-api/src/main/java/net/shibboleth/idp/authn/SubjectCanonicalizationFlowDescriptor.java
+++ b/idp-authn-api/src/main/java/net/shibboleth/idp/authn/SubjectCanonicalizationFlowDescriptor.java
@@ -145,7 +145,10 @@ public class SubjectCanonicalizationFlowDescriptor extends AbstractIdentifiableI
     /** {@inheritDoc} */
     @Override
     public String toString() {
-        return MoreObjects.toStringHelper(this).add("flowId", getId()).toString();
+        return MoreObjects.toStringHelper(this)
+                .add("id", getId())
+                .add("flowId", getFlowId())
+                .toString();
     }
 
 }
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list