[java-oidc-common] 01/20: JCOMOIDC-140 - Add disallowed features bit constants

Codeberg noreply at shibboleth.net
Tue Feb 17 20:14:36 UTC 2026


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

codeberg pushed a commit to branch dev/JCOMOIDC-139
in repository java-oidc-common.

View the commit online:
https://codeberg.org/Shibboleth/java-oidc-common/commit/8a09186516d5f0be3b37ede5542feb3209b707ca

commit 8a09186516d5f0be3b37ede5542feb3209b707ca
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Fri Oct 3 14:13:07 2025 +0100

    JCOMOIDC-140 - Add disallowed features bit constants
    
     - Added FEATURE_LOGIN_HINT, and FEATURE_FORCEAUTHN.
    
     https://shibboleth.atlassian.net/browse/JCOMOIDC-140
---
 .../oidc/profile/config/OIDCAuthorizationConfiguration.java         | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/config/OIDCAuthorizationConfiguration.java b/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/config/OIDCAuthorizationConfiguration.java
index b955ffdb..3cd37a3c 100644
--- a/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/config/OIDCAuthorizationConfiguration.java
+++ b/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/config/OIDCAuthorizationConfiguration.java
@@ -43,6 +43,12 @@ public interface OIDCAuthorizationConfiguration extends OIDCAuthenticationProfil
 
     /** Bit constant for essential ACR request feature. */
     static final int FEATURE_ESSENTIAL_ACR_REQUEST= 0x1;
+    
+    /** Bit constant for the login hint feature. */
+    static final int FEATURE_LOGIN_HINT = 0x2;
+    
+    /** Bit constant for ForceAuthn feature. */
+    static final int FEATURE_FORCEAUTHN = 0x4;
 
     /**
      * Get whether all acr claim requests should be treated as Essential.

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


More information about the commits mailing list