[java-oidfed-common] branch main updated: Add missing 'federation_' prefix to the 'trust_mark_endpoint'.
Codeberg
noreply at shibboleth.net
Mon Aug 24 15:34:45 UTC 2026
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository java-oidfed-common.
View the commit online:
https://codeberg.org/Shibboleth/java-oidfed-common/commit/96f1976840e0154b313ebba4b999b90ae2602634
The following commit(s) were added to refs/heads/main by this push:
new 96f1976 Add missing 'federation_' prefix to the 'trust_mark_endpoint'.
96f1976 is described below
commit 96f1976840e0154b313ebba4b999b90ae2602634
Author: Henri Mikkonen <henri.mikkonen at iki.fi>
AuthorDate: Mon Aug 24 18:34:20 2026 +0300
Add missing 'federation_' prefix to the 'trust_mark_endpoint'.
---
.../java/net/shibboleth/oidfed/flow/AbstractFederationFlowTest.java | 2 +-
.../profile/impl/DefaultTrustMarkFromMetadataCacheFetchingFunction.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/AbstractFederationFlowTest.java b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/AbstractFederationFlowTest.java
index e8e49b4..486b78b 100644
--- a/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/AbstractFederationFlowTest.java
+++ b/oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/AbstractFederationFlowTest.java
@@ -349,7 +349,7 @@ public class AbstractFederationFlowTest extends AbstractFlowTest {
.claim("jwks", new JWKSet(trustMarkIssuerKey).toJSONObject(true))
.claim("authority_hints", authorityHints == null || authorityHints.length == 0 ?
new String[] { anchorId } : authorityHints)
- .claim("metadata", Map.of("federation_entity", Map.of("trust_mark_endpoint",
+ .claim("metadata", Map.of("federation_entity", Map.of("federation_trust_mark_endpoint",
trustMarkEndpoint, "federation_trust_mark_status_endpoint", trustMarkStatusEndpoint)))
.build();
final EntityStatement<?> rpConfiguration =
diff --git a/oidfed-common-impl/src/main/java/net/shibboleth/oidfed/profile/impl/DefaultTrustMarkFromMetadataCacheFetchingFunction.java b/oidfed-common-impl/src/main/java/net/shibboleth/oidfed/profile/impl/DefaultTrustMarkFromMetadataCacheFetchingFunction.java
index 79e225e..6e2bfcf 100644
--- a/oidfed-common-impl/src/main/java/net/shibboleth/oidfed/profile/impl/DefaultTrustMarkFromMetadataCacheFetchingFunction.java
+++ b/oidfed-common-impl/src/main/java/net/shibboleth/oidfed/profile/impl/DefaultTrustMarkFromMetadataCacheFetchingFunction.java
@@ -167,7 +167,7 @@ public class DefaultTrustMarkFromMetadataCacheFetchingFunction extends AbstractI
final URI uri = Optional.ofNullable(configuration.getParsedPayload().getMetadata())
.map(metadata -> metadata.getFederationEntityMetadata())
- .map(map -> map.get("trust_mark_endpoint"))
+ .map(map -> map.get("federation_trust_mark_endpoint"))
.filter(String.class::isInstance)
.map(String.class::cast)
.map(URI::create)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list