[java-idp-plugin-oidc-rp] branch main updated: Fix Javadoc
Phil Smart
philip.smart at jisc.ac.uk
Thu May 22 13:08:37 UTC 2025
This is an automated email from the git hooks/post-receive script.
philsmart pushed a commit to branch main
in repository java-idp-plugin-oidc-rp.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-oidc-rp.git;a=commit;h=5235518442c816de0ecb268377c8352b09a3a773
The following commit(s) were added to refs/heads/main by this push:
new 5235518 Fix Javadoc
5235518 is described below
commit 5235518442c816de0ecb268377c8352b09a3a773
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Thu May 22 14:08:35 2025 +0100
Fix Javadoc
---
.../rp/impl/InitializeOAuth2ClientAuthenticationMethodHandler.java | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/InitializeOAuth2ClientAuthenticationMethodHandler.java b/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/InitializeOAuth2ClientAuthenticationMethodHandler.java
index cb61a3f..703c8e8 100644
--- a/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/InitializeOAuth2ClientAuthenticationMethodHandler.java
+++ b/idp-oidc-rp-impl/src/main/java/net/shibboleth/idp/plugin/authn/oidc/rp/impl/InitializeOAuth2ClientAuthenticationMethodHandler.java
@@ -436,12 +436,14 @@ public class InitializeOAuth2ClientAuthenticationMethodHandler extends AbstractM
* @param messageContext the message context
*
* @return the constructed JWT claims set
+ *
+ * @throws MessageHandlerException on error constructing the JWT
*/
- @Nonnull private JWTClaimsSet buildClientAuthenticationJwtClaims(@Nonnull final MessageContext context)
+ @Nonnull private JWTClaimsSet buildClientAuthenticationJwtClaims(@Nonnull final MessageContext messageContext)
throws MessageHandlerException{
String audience;
- if (tokenEndpointAsAudience.test(PRC_LOOKUP.apply(context))) {
+ if (tokenEndpointAsAudience.test(PRC_LOOKUP.apply(messageContext))) {
audience = providerMetadata.getTokenEndpointURI().toString();
} else {
final var localPeerEntityCtx = peerEntityContext;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list