[java-oidfed-common] branch main updated (e9f96a5 -> 4edf026)

Codeberg noreply at shibboleth.net
Fri May 22 10:52:47 UTC 2026


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

codeberg pushed a change to branch main
in repository java-oidfed-common.

    from e9f96a5  Modified the metadata cache tests to deal with un-precise system clocks.
     new 9b72407  Switched entity-statement content-type validation into ignoring parameters.
     new 81b2781  Include oidfed-common-conf-impl into the distribution package.
     new 9d1ae1d  Initial version of the 'oidfed/resolve-trust-chains' flow
     new e3b03bb  Move generic oidfed configuration files from java-idp-plugin-oidc-op-oidfed.
     new 4edf026  Initial version of the oidfed/test-trust-chain-resolution admin flow

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../context/RelyingPartyTrustChainContext.java     | 280 +++++++++++
 .../oidfed/profile/context/VerifiedTrustChain.java |  76 +++
 .../META-INF/net.shibboleth.idp/postconfig.xml     |  17 +
 .../test-trust-chain-resolution-beans.xml          |  61 +++
 .../test-trust-chain-resolution-flow.xml           |  56 +++
 .../resolve-trust-chains-beans.xml                 |  70 +++
 .../resolve-trust-chains-flow.xml                  |  52 ++
 .../admin/oidfed/test-trust-chain-resolution.vm    |  50 ++
 .../flow/TestTrustChainResolutionFlowTest.java     | 142 ++++++
 .../src/main/assembly/assembly-tgz.xml             |  14 +
 oidfed-common-impl/pom.xml                         |  10 +
 .../cli/TestTrustChainResolutionArguments.java     | 149 ++++++
 ...DefaultEntityConfigurationFetchingStrategy.java |   4 +-
 .../DefaultSignedKeysetFetchingStrategy.java       |   4 +-
 ...ultResolveEntityTrustChainFetchingStrategy.java |   3 +-
 ...efaultSubordinateStatementFetchingStrategy.java |   3 +-
 .../DefaultTrustMarkFetchingStrategy.java          |   3 +-
 .../DefaultTrustMarkStatusFetchingStrategy.java    |   3 +-
 .../impl/AbstractTrustChainResolutionAction.java   | 388 +++++++++++++++
 .../oidfed/profile/impl/CallResolveEntityApi.java  | 534 +++++++++++++++++++++
 .../oidfed/profile/impl/ResolveTrustChains.java    | 263 ++++++++++
 ...mbinedMetadataFromTrustChainLookupStrategy.java |  86 ++++
 .../DefaultMetadataValidationCondition.java        |  82 ++++
 .../DefaultTrustChainIDsLookupStrategy.java        |  43 ++
 ...ultTrustChainMetadataPolicyMergingStrategy.java | 145 ++++++
 .../oidfed/bin/test-trust-chain-resolution.bat     |   4 +
 .../oidfed/bin/test-trust-chain-resolution.sh      |   9 +
 .../oidfed/oidfed-entity-configuration-claims.xml  |  17 +-
 .../oidfed-entity-configuration-metadata.json      |   4 -
 .../oidfed/conf/oidfed/oidfed-trust-anchors.json   |   1 +
 .../conf/oidfed/oidfed-trustchain-resolver.xml     |  25 +-
 .../net/shibboleth/oidfed/module.properties        |  27 ++
 32 files changed, 2597 insertions(+), 28 deletions(-)
 create mode 100644 oidfed-common-api/src/main/java/net/shibboleth/oidfed/profile/context/RelyingPartyTrustChainContext.java
 create mode 100644 oidfed-common-api/src/main/java/net/shibboleth/oidfed/profile/context/VerifiedTrustChain.java
 create mode 100644 oidfed-common-conf-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/admin/oidfed/test-trust-chain-resolution/test-trust-chain-resolution-beans.xml
 create mode 100644 oidfed-common-conf-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/admin/oidfed/test-trust-chain-resolution/test-trust-chain-resolution-flow.xml
 create mode 100644 oidfed-common-conf-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oidfed/resolve-trust-chains/resolve-trust-chains-beans.xml
 create mode 100644 oidfed-common-conf-impl/src/main/resources/META-INF/net/shibboleth/idp/flows/oidfed/resolve-trust-chains/resolve-trust-chains-flow.xml
 create mode 100644 oidfed-common-conf-impl/src/main/resources/META-INF/net/shibboleth/idp/views/admin/oidfed/test-trust-chain-resolution.vm
 create mode 100644 oidfed-common-conf-impl/src/test/java/net/shibboleth/oidfed/flow/TestTrustChainResolutionFlowTest.java
 create mode 100644 oidfed-common-impl/src/main/java/net/shibboleth/oidfed/cli/TestTrustChainResolutionArguments.java
 create mode 100644 oidfed-common-impl/src/main/java/net/shibboleth/oidfed/profile/impl/AbstractTrustChainResolutionAction.java
 create mode 100644 oidfed-common-impl/src/main/java/net/shibboleth/oidfed/profile/impl/CallResolveEntityApi.java
 create mode 100644 oidfed-common-impl/src/main/java/net/shibboleth/oidfed/profile/impl/ResolveTrustChains.java
 create mode 100644 oidfed-common-impl/src/main/java/net/shibboleth/oidfed/profile/navigate/DefaultCombinedMetadataFromTrustChainLookupStrategy.java
 create mode 100644 oidfed-common-impl/src/main/java/net/shibboleth/oidfed/profile/navigate/DefaultMetadataValidationCondition.java
 create mode 100644 oidfed-common-impl/src/main/java/net/shibboleth/oidfed/profile/navigate/DefaultTrustChainIDsLookupStrategy.java
 create mode 100644 oidfed-common-impl/src/main/java/net/shibboleth/oidfed/profile/navigate/DefaultTrustChainMetadataPolicyMergingStrategy.java
 create mode 100644 oidfed-common-impl/src/main/resources/net/shibboleth/oidfed/bin/test-trust-chain-resolution.bat
 create mode 100644 oidfed-common-impl/src/main/resources/net/shibboleth/oidfed/bin/test-trust-chain-resolution.sh
 copy oidfed-common-conf-impl/src/test/resources/net/shibboleth/idp/module/conf/oidfed/oidfed-trustchain-resolver.xml => oidfed-common-impl/src/main/resources/net/shibboleth/oidfed/conf/oidfed/oidfed-entity-configuration-claims.xml (51%)
 copy {oidfed-common-conf-impl/src/test/resources/net/shibboleth/idp/module => oidfed-common-impl/src/main/resources/net/shibboleth/oidfed}/conf/oidfed/oidfed-entity-configuration-metadata.json (65%)
 create mode 100644 oidfed-common-impl/src/main/resources/net/shibboleth/oidfed/conf/oidfed/oidfed-trust-anchors.json
 copy {oidfed-common-conf-impl/src/test/resources/net/shibboleth/idp/module => oidfed-common-impl/src/main/resources/net/shibboleth/oidfed}/conf/oidfed/oidfed-trustchain-resolver.xml (51%)

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


More information about the commits mailing list