[java-idp-oidc] branch main updated: JOIDC-132 - Improve customization methods for the configuration flow

Henri Mikkonen henri.mikkonen at iki.fi
Fri Nov 4 13:22:05 UTC 2022


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

hjmikkon pushed a commit to branch main
in repository java-idp-oidc.

View the commit online:
http://git.shibboleth.net/view/?p=java-idp-oidc.git;a=commit;h=8a8cccf2b240bffde2ed307b236c290a351b281d

The following commit(s) were added to refs/heads/main by this push:
     new 8a8cccf2 JOIDC-132 - Improve customization methods for the configuration flow
8a8cccf2 is described below

commit 8a8cccf2b240bffde2ed307b236c290a351b281d
Author: Henri Mikkonen <henri.mikkonen at iki.fi>
AuthorDate: Fri Nov 4 15:20:55 2022 +0200

    JOIDC-132 - Improve customization methods for the configuration flow
    
    https://shibboleth.atlassian.net/browse/JOIDC-132
    
    New abstract bean 'shibboleth.oidc.discovery.FunctionMetadataValueResolver'
---
 .../src/main/resources/META-INF/net.shibboleth.idp/postconfig.xml      | 3 +++
 idp-oidc-extension-impl/src/test/resources/conf/global.xml             | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/idp-oidc-extension-impl/src/main/resources/META-INF/net.shibboleth.idp/postconfig.xml b/idp-oidc-extension-impl/src/main/resources/META-INF/net.shibboleth.idp/postconfig.xml
index 5eb8e817..da6825b3 100644
--- a/idp-oidc-extension-impl/src/main/resources/META-INF/net.shibboleth.idp/postconfig.xml
+++ b/idp-oidc-extension-impl/src/main/resources/META-INF/net.shibboleth.idp/postconfig.xml
@@ -586,4 +586,7 @@
         class="net.shibboleth.idp.plugin.oidc.op.metadata.impl.AlgorithmInfoMetadataValueResolver"
         p:resolveEncryptionAlgs="true" p:resolveKeyTransportEncAlgs="true" />
 
+    <bean id="shibboleth.oidc.discovery.FunctionMetadataValueResolver"
+        class="net.shibboleth.idp.plugin.oidc.op.metadata.impl.FunctionMetadataValueResolver" abstract="true" />
+
 </beans>
diff --git a/idp-oidc-extension-impl/src/test/resources/conf/global.xml b/idp-oidc-extension-impl/src/test/resources/conf/global.xml
index 1fad6f00..6ae6e990 100644
--- a/idp-oidc-extension-impl/src/test/resources/conf/global.xml
+++ b/idp-oidc-extension-impl/src/test/resources/conf/global.xml
@@ -92,7 +92,7 @@
         <property name="sourceMap">
             <map merge="true">
                 <entry key="STATIC_TEST_ATTRIBUTE">
-                    <bean class="net.shibboleth.idp.plugin.oidc.op.metadata.impl.FunctionMetadataValueResolver">
+                    <bean parent="shibboleth.oidc.discovery.FunctionMetadataValueResolver">
                         <property name="resolverFunction">
                             <bean parent="shibboleth.Functions.Constant" c:target="TestValue"/>
                         </property>

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


More information about the commits mailing list