[java-idp-plugin-oidc-rp] branch main updated: Disambiguate method call for newer IdP API.

Codeberg noreply at shibboleth.net
Fri May 15 16:46:28 UTC 2026


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

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

View the commit online:
https://codeberg.org/Shibboleth/java-idp-plugin-oidc-rp/commit/fec74d8aa10cd701e33808b25de766d6549c7aab

The following commit(s) were added to refs/heads/main by this push:
     new fec74d8  Disambiguate method call for newer IdP API.
fec74d8 is described below

commit fec74d8aa10cd701e33808b25de766d6549c7aab
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Fri May 15 12:46:17 2026 -0400

    Disambiguate method call for newer IdP API.
---
 .../idp/plugin/authn/oidc/rp/impl/ValidateOIDCAuthentication.java      | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/ValidateOIDCAuthentication.java b/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/ValidateOIDCAuthentication.java
index eeabee8..aab7163 100644
--- a/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/ValidateOIDCAuthentication.java
+++ b/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/ValidateOIDCAuthentication.java
@@ -522,7 +522,8 @@ public class ValidateOIDCAuthentication extends AbstractValidationAction {
             assert rpc != null;
             final var ac = attributeContext = rpc.ensureSubcontext(AttributeContext.class);
             assert ac != null;            
-            ac.setUnfilteredIdPAttributes(toMapMergeDuplicates(mapped.values()).values()).setIdPAttributes(null);
+            ac.setUnfilteredIdPAttributes(toMapMergeDuplicates(mapped.values()).values())
+                .setIdPAttributes((Collection<IdPAttribute>) null);
             filterAttributes(profileRequestContext);
         }
     }

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


More information about the commits mailing list