[java-oidc-common] branch main updated: Add a feature flag for disallowing essential ACR claim requests.
Scott Cantor
cantor.2 at osu.edu
Tue Jun 10 15:00:52 UTC 2025
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-oidc-common.
View the commit online:
http://git.shibboleth.net/view/?p=java-oidc-common.git;a=commit;h=3c305eb02d2253c2989a506d07a27840ef3ebdd5
The following commit(s) were added to refs/heads/main by this push:
new 3c305eb Add a feature flag for disallowing essential ACR claim requests.
3c305eb is described below
commit 3c305eb02d2253c2989a506d07a27840ef3ebdd5
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Jun 10 11:00:49 2025 -0400
Add a feature flag for disallowing essential ACR claim requests.
---
.../oidc/profile/config/OIDCAuthenticationProfileConfiguration.java | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/config/OIDCAuthenticationProfileConfiguration.java b/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/config/OIDCAuthenticationProfileConfiguration.java
index 8f2b807..a7c0efa 100644
--- a/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/config/OIDCAuthenticationProfileConfiguration.java
+++ b/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/config/OIDCAuthenticationProfileConfiguration.java
@@ -33,7 +33,10 @@ public interface OIDCAuthenticationProfileConfiguration extends OAuth2Authorizat
/** ID for this profile configuration. */
@Nonnull @NotEmpty public static final String PROFILE_ID = "http://shibboleth.net/ns/profiles/oidc/sso/browser";
-
+
+ /** Bit constant for essential ACR request feature. */
+ static final int FEATURE_ESSENTIAL_ACR_REQUEST= 0x1;
+
/**
* Should OpenID specific authentication request parameters should be passed in a single, self contained, JWT?
*
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list