[java-idp-plugin-oidc-rp] branch main updated: JCOMOIDC-89 - Add a new CredentialFactoryBean type which allows null objects from createInstance

Phil Smart philip.smart at jisc.ac.uk
Wed Oct 25 09:16:20 UTC 2023


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

philsmart pushed a commit to branch main
in repository java-idp-plugin-oidc-rp.

View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-oidc-rp.git;a=commit;h=5f47e08205fb0bd826b3c36d8b2423efb95bbb7a

The following commit(s) were added to refs/heads/main by this push:
     new 5f47e08  JCOMOIDC-89 - Add a new CredentialFactoryBean type which allows null     objects from createInstance
5f47e08 is described below

commit 5f47e08205fb0bd826b3c36d8b2423efb95bbb7a
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Wed Oct 25 10:16:08 2023 +0100

    JCOMOIDC-89 - Add a new CredentialFactoryBean type which allows null
        objects from createInstance
    
         - use throwIfBeanIsNull in favour of the deprecated
    failIfResourceIsNull.
    
    https://shibboleth.atlassian.net/browse/JCOMOIDC-89
---
 .../idp/plugin/authn/oidc/rp/conf/authn/oidc-credentials.xml        | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/idp-oidc-rp-impl/src/main/resources/net/shibboleth/idp/plugin/authn/oidc/rp/conf/authn/oidc-credentials.xml b/idp-oidc-rp-impl/src/main/resources/net/shibboleth/idp/plugin/authn/oidc/rp/conf/authn/oidc-credentials.xml
index a8e186b..69720cb 100644
--- a/idp-oidc-rp-impl/src/main/resources/net/shibboleth/idp/plugin/authn/oidc/rp/conf/authn/oidc-credentials.xml
+++ b/idp-oidc-rp-impl/src/main/resources/net/shibboleth/idp/plugin/authn/oidc/rp/conf/authn/oidc-credentials.xml
@@ -14,13 +14,13 @@
     -->
     
     <bean id="shibboleth.oidc.DefaultRSSigningCredential" parent="shibboleth.oidc.JWKCredential"
-        p:resource="%{idp.signing.oidc.rs.key:#{null}}" p:failIfResourceIsNull="false" />
+        p:resource="%{idp.signing.oidc.rs.key:#{null}}" p:throwIfBeanIsNull="false" />
 
     <bean id="shibboleth.oidc.DefaultESSigningCredential" parent="shibboleth.oidc.JWKCredential"
-        p:resource="%{idp.signing.oidc.es.key:#{null}}" p:failIfResourceIsNull="false" />
+        p:resource="%{idp.signing.oidc.es.key:#{null}}" p:throwIfBeanIsNull="false" />
 
     <bean id="shibboleth.oidc.DefaultRSAEncryptionCredential" parent="shibboleth.oidc.JWKCredential"
-        p:resource="%{idp.signing.oidc.rsa.enc.key:#{null}}" p:failIfResourceIsNull="false" />
+        p:resource="%{idp.signing.oidc.rsa.enc.key:#{null}}" p:throwIfBeanIsNull="false" />
 
     <!--
     Lists ALL of your OP's response signing credentials for the default security configuration. 

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


More information about the commits mailing list