[java-plugin-shibd] branch main updated: Add subclass for OpenSAML servlet request validation action.
Codeberg
noreply at shibboleth.net
Thu May 21 16:53: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.
View the commit online:
https://codeberg.org/Shibboleth/java-plugin-shibd/commit/bda4e80e6b40b056a92eecfcd2ab9d30895e4263
The following commit(s) were added to refs/heads/main by this push:
new bda4e80 Add subclass for OpenSAML servlet request validation action.
bda4e80 is described below
commit bda4e80e6b40b056a92eecfcd2ab9d30895e4263
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Thu May 21 12:53:25 2026 -0400
Add subclass for OpenSAML servlet request validation action.
---
.../net/shibboleth/sp/profile/impl/DecodeMessage.java | 4 ++--
...codeMessage.java => ValidateHttpServletRequest.java} | 17 ++++-------------
2 files changed, 6 insertions(+), 15 deletions(-)
diff --git a/sp-server-impl/src/main/java/net/shibboleth/sp/profile/impl/DecodeMessage.java b/sp-server-impl/src/main/java/net/shibboleth/sp/profile/impl/DecodeMessage.java
index bf5c03e..068e424 100644
--- a/sp-server-impl/src/main/java/net/shibboleth/sp/profile/impl/DecodeMessage.java
+++ b/sp-server-impl/src/main/java/net/shibboleth/sp/profile/impl/DecodeMessage.java
@@ -24,8 +24,8 @@ import net.shibboleth.sp.messaging.RemotedHttpServletRequest;
import net.shibboleth.sp.messaging.RemotedHttpServletRequestResponseContext;
/**
- * Subclass of OpenSAML {@link DecodeMessage} action that wraps the execute step to
- * stash off the {@link RemotedHttpServletRequest} from the {@link AgentRequestContext}
+ * Subclass of OpenSAML {@link org.opensaml.profile.action.impl.DecodeMessage} action that wraps the
+ * execute step to stash off the {@link RemotedHttpServletRequest} from the {@link AgentRequestContext}
* for access by the {@link MessageDecoder}.
*/
public class DecodeMessage extends org.opensaml.profile.action.impl.DecodeMessage {
diff --git a/sp-server-impl/src/main/java/net/shibboleth/sp/profile/impl/DecodeMessage.java b/sp-server-impl/src/main/java/net/shibboleth/sp/profile/impl/ValidateHttpServletRequest.java
similarity index 76%
copy from sp-server-impl/src/main/java/net/shibboleth/sp/profile/impl/DecodeMessage.java
copy to sp-server-impl/src/main/java/net/shibboleth/sp/profile/impl/ValidateHttpServletRequest.java
index bf5c03e..2bba647 100644
--- a/sp-server-impl/src/main/java/net/shibboleth/sp/profile/impl/DecodeMessage.java
+++ b/sp-server-impl/src/main/java/net/shibboleth/sp/profile/impl/ValidateHttpServletRequest.java
@@ -24,21 +24,12 @@ import net.shibboleth.sp.messaging.RemotedHttpServletRequest;
import net.shibboleth.sp.messaging.RemotedHttpServletRequestResponseContext;
/**
- * Subclass of OpenSAML {@link DecodeMessage} action that wraps the execute step to
- * stash off the {@link RemotedHttpServletRequest} from the {@link AgentRequestContext}
+ * Subclass of OpenSAML {@link org.opensaml.profile.action.impl.ValidateHttpServletRequest} action that wraps
+ * the execute step to stash off the {@link RemotedHttpServletRequest} from the {@link AgentRequestContext}
* for access by the {@link MessageDecoder}.
*/
-public class DecodeMessage extends org.opensaml.profile.action.impl.DecodeMessage {
+public class ValidateHttpServletRequest extends org.opensaml.profile.action.impl.ValidateHttpServletRequest {
- /**
- * Constructor.
- *
- * @param messageDecoder the {@link MessageDecoder} used for the incoming request
- */
- public DecodeMessage(@Nonnull final MessageDecoder messageDecoder) {
- super(messageDecoder);
- }
-
/** {@inheritDoc} */
@Override
protected void doExecute(@Nonnull final ProfileRequestContext profileRequestContext) {
@@ -53,5 +44,5 @@ public class DecodeMessage extends org.opensaml.profile.action.impl.DecodeMessag
RemotedHttpServletRequestResponseContext.clearCurrent();
}
}
-
+
}
\ 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