[java-oidc-common] branch dev/JCOMOIDC-139 updated: JCOMOIDC-140 - Add disallowed features bit constants
Phil Smart
philip.smart at jisc.ac.uk
Wed Oct 15 13:25:37 UTC 2025
This is an automated email from the git hooks/post-receive script.
philsmart pushed a commit to branch dev/JCOMOIDC-139
in repository java-oidc-common.
View the commit online:
http://git.shibboleth.net/view/?p=java-oidc-common.git;a=commit;h=98631e12a7932506924cb8871e24a17ac54892a9
The following commit(s) were added to refs/heads/dev/JCOMOIDC-139 by this push:
new 98631e1 JCOMOIDC-140 - Add disallowed features bit constants
98631e1 is described below
commit 98631e12a7932506924cb8871e24a17ac54892a9
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Wed Oct 15 14:25:35 2025 +0100
JCOMOIDC-140 - Add disallowed features bit constants
- Add SCOPE feature flag
https://shibboleth.atlassian.net/browse/JCOMOIDC-140
---
.../shibboleth/oidc/profile/config/OIDCAuthorizationConfiguration.java | 3 +++
1 file changed, 3 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 821ea0e..5ce8dc7 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
@@ -52,6 +52,9 @@ public interface OIDCAuthorizationConfiguration extends OIDCAuthenticationProfil
/** Bit constant for Resource Indicator feature. */
static final int FEATURE_RESOURCE_INDICATOR = 0x8;
+
+ /** Bit constant for scope feature. */
+ static final int FEATURE_SCOPE = 0x10;
/**
* 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