[java-plugin-shibd-oidc] branch main updated: Javadoc

Codeberg noreply at shibboleth.net
Mon Apr 13 09:37:35 UTC 2026


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

codeberg pushed a commit to branch main
in repository java-plugin-shibd-oidc.

View the commit online:
https://codeberg.org/Shibboleth/java-plugin-shibd-oidc/commit/262f12fc105aea26cd6d85580b61ca599a408c5d

The following commit(s) were added to refs/heads/main by this push:
     new 262f12f  Javadoc
262f12f is described below

commit 262f12fc105aea26cd6d85580b61ca599a408c5d
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Mon Apr 13 10:37:26 2026 +0100

    Javadoc
---
 .../shibboleth/sp/oidc/profile/impl/ResolveStateCookie.java  | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/sp-oidc-impl/src/main/java/net/shibboleth/sp/oidc/profile/impl/ResolveStateCookie.java b/sp-oidc-impl/src/main/java/net/shibboleth/sp/oidc/profile/impl/ResolveStateCookie.java
index 5dafa83..cfcb356 100644
--- a/sp-oidc-impl/src/main/java/net/shibboleth/sp/oidc/profile/impl/ResolveStateCookie.java
+++ b/sp-oidc-impl/src/main/java/net/shibboleth/sp/oidc/profile/impl/ResolveStateCookie.java
@@ -70,9 +70,9 @@ public class ResolveStateCookie extends AbstractApplicationAction {
     @NonnullAfterInit private Function<ProfileRequestContext,String> stateTokenLookupStrategy;
     
     /** 
-     * A consumer to set the cookie value into the appropriate context in the tree. The return boolean indicates
-     * if the consumer function was successful or not. An unsuccessful outcome may trigger an error depending on the
-     * {@link #errorFatal} flag.
+     * A consumer (as a function) to set the cookie value into the appropriate context in the tree. The return boolean 
+     * indicates if the consumer function was successful or not. An unsuccessful outcome may trigger an error depending 
+     * on the {@link #errorFatal} flag.
      */
     @Nullable private BiFunction<ProfileRequestContext, String, Boolean> cookieValueConsumerStrategy;
     
@@ -101,7 +101,7 @@ public class ResolveStateCookie extends AbstractApplicationAction {
     /**
      * Set the consumer function strategy to use to set the cookie value into the context tree. The return value 
      * indicates if the consumer function was successful or not. An unsuccessful outcome may trigger an error 
-     * depending on the errorFatal flag.     * 
+     * depending on the errorFatal flag.
      * 
      * @param strategy The strategy to set.
      */
@@ -138,14 +138,14 @@ public class ResolveStateCookie extends AbstractApplicationAction {
     }
     
     /**
-     * Sets the lookup strategy for obtaining the request message's ID.
+     * Sets the lookup strategy for obtaining the state token.
      * 
      * @param strategy lookup strategy
      */
     public void setStateTokenLookupStrategy(@Nonnull final Function<ProfileRequestContext,String> strategy) {
         checkSetterPreconditions();
         
-        stateTokenLookupStrategy = Constraint.isNotNull(strategy, "Request ID lookup strategy cannot be null");
+        stateTokenLookupStrategy = Constraint.isNotNull(strategy, "State token lookup strategy cannot be null");
     }
     
     /** {@inheritDoc} */

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


More information about the commits mailing list