[java-oidc-common] branch main updated: Added constant for INVALID_SCOPE: it's needed at least by OP when validating scopes.
Henri Mikkonen
henri.mikkonen at iki.fi
Fri Nov 4 13:13:52 UTC 2022
This is an automated email from the git hooks/post-receive script.
hjmikkon 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=e2946e9d35652f61e1c32f52095d6f7d1b79bd1b
The following commit(s) were added to refs/heads/main by this push:
new e2946e9 Added constant for INVALID_SCOPE: it's needed at least by OP when validating scopes.
e2946e9 is described below
commit e2946e9d35652f61e1c32f52095d6f7d1b79bd1b
Author: Henri Mikkonen <henri.mikkonen at iki.fi>
AuthorDate: Fri Nov 4 15:13:04 2022 +0200
Added constant for INVALID_SCOPE: it's needed at least by OP when validating scopes.
---
.../main/java/net/shibboleth/oidc/profile/core/OidcEventIds.java | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/core/OidcEventIds.java b/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/core/OidcEventIds.java
index d05aead..a3460cb 100644
--- a/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/core/OidcEventIds.java
+++ b/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/core/OidcEventIds.java
@@ -117,7 +117,12 @@ public final class OidcEventIds {
*/
@Nonnull @NotEmpty public static final String INVALID_PKCE_TRANSFORMATION_METHOD =
"PKCEVerifierTransformAlgorithmNotSupported";
-
+
+ /**
+ * The scope is invalid.
+ */
+ @Nonnull @NotEmpty public static final String INVALID_SCOPE = "InvalidScope";
+
/**
* Constructor.
*/
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list