[java-oidc-common] branch main updated: Fix error message
Phil Smart
philip.smart at jisc.ac.uk
Wed Jun 4 11:18:26 UTC 2025
This is an automated email from the git hooks/post-receive script.
philsmart 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=3d56a8343da4d114db04eaf5919a9b77c7a3e670
The following commit(s) were added to refs/heads/main by this push:
new 3d56a83 Fix error message
3d56a83 is described below
commit 3d56a8343da4d114db04eaf5919a9b77c7a3e670
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Wed Jun 4 12:18:23 2025 +0100
Fix error message
---
.../impl/AbstractOAuth2ClientAuthenticableProfileConfiguration.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/oidc-common-profile-impl/src/main/java/net/shibboleth/oidc/profile/oauth2/config/impl/AbstractOAuth2ClientAuthenticableProfileConfiguration.java b/oidc-common-profile-impl/src/main/java/net/shibboleth/oidc/profile/oauth2/config/impl/AbstractOAuth2ClientAuthenticableProfileConfiguration.java
index 1c21556..6dc3d00 100644
--- a/oidc-common-profile-impl/src/main/java/net/shibboleth/oidc/profile/oauth2/config/impl/AbstractOAuth2ClientAuthenticableProfileConfiguration.java
+++ b/oidc-common-profile-impl/src/main/java/net/shibboleth/oidc/profile/oauth2/config/impl/AbstractOAuth2ClientAuthenticableProfileConfiguration.java
@@ -692,6 +692,6 @@ public abstract class AbstractOAuth2ClientAuthenticableProfileConfiguration
*/
public void setClientAuthenticationJWTType(@Nonnull @NotEmpty final String type) {
clientAuthenticationJWTTypeLookupStrategy =
- FunctionSupport.constant(Constraint.isNotEmpty(type, "Collection of methods cannot be null"));
+ FunctionSupport.constant(Constraint.isNotEmpty(type, "Client authentication JWT typ can not be null"));
}
}
\ No newline at end of file
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list