[java-plugin-shibd-saml] branch main updated: Remove unused action bean setting.
Codeberg
noreply at shibboleth.net
Mon Apr 6 16:50:54 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-saml.
View the commit online:
https://codeberg.org/Shibboleth/java-plugin-shibd-saml/commit/3d55e170195f58abb4e345351f6ec1bf3babcc76
The following commit(s) were added to refs/heads/main by this push:
new 3d55e17 Remove unused action bean setting.
3d55e17 is described below
commit 3d55e170195f58abb4e345351f6ec1bf3babcc76
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Apr 6 12:50:42 2026 -0400
Remove unused action bean setting.
---
.../sp/saml/saml2/profile/impl/AddAuthnRequest.java | 17 -----------------
1 file changed, 17 deletions(-)
diff --git a/sp-saml-impl/src/main/java/net/shibboleth/sp/saml/saml2/profile/impl/AddAuthnRequest.java b/sp-saml-impl/src/main/java/net/shibboleth/sp/saml/saml2/profile/impl/AddAuthnRequest.java
index 565d788..66d030a 100644
--- a/sp-saml-impl/src/main/java/net/shibboleth/sp/saml/saml2/profile/impl/AddAuthnRequest.java
+++ b/sp-saml-impl/src/main/java/net/shibboleth/sp/saml/saml2/profile/impl/AddAuthnRequest.java
@@ -46,7 +46,6 @@ import org.opensaml.core.xml.io.MarshallingException;
import org.opensaml.core.xml.io.UnmarshallingException;
import org.opensaml.core.xml.util.XMLObjectSupport;
import org.opensaml.messaging.context.MessageContext;
-import org.opensaml.messaging.context.navigate.ChildContextLookup;
import org.opensaml.profile.action.ActionSupport;
import org.opensaml.profile.action.EventIds;
import org.opensaml.profile.context.ProfileRequestContext;
@@ -95,9 +94,6 @@ public class AddAuthnRequest extends AbstractApplicationAction {
/** Overwrite an existing message? */
private boolean overwriteExisting;
- /** Strategy used to locate {@link RelyingPartyContext} if required. */
- @Nullable private Function<ProfileRequestContext,RelyingPartyContext> relyingPartyContextLookupStrategy;
-
/** Strategy used to locate the {@link IdentifierGenerationStrategy} to use. */
@Nonnull private Function<ProfileRequestContext,IdentifierGenerationStrategy> idGeneratorLookupStrategy;
@@ -128,7 +124,6 @@ public class AddAuthnRequest extends AbstractApplicationAction {
idGeneratorLookupStrategy = new IdentifierGenerationStrategyLookupFunction();
issuerLookupStrategy = new IssuerLookupFunction();
- relyingPartyContextLookupStrategy = new ChildContextLookup<>(RelyingPartyContext.class);
inboundBindingMap = CollectionSupport.emptyMap();
}
@@ -142,18 +137,6 @@ public class AddAuthnRequest extends AbstractApplicationAction {
checkSetterPreconditions();
overwriteExisting = flag;
}
-
- /**
- * Set lookup strategy to locate {@link RelyingPartyContext}, only relevant when
- * also including {@link Scoping} element.
- *
- * @param strategy lookup strategy
- */
- public void setRelyingPartyContextLookupStrategy(
- @Nullable final Function<ProfileRequestContext,RelyingPartyContext> strategy) {
- checkSetterPreconditions();
- relyingPartyContextLookupStrategy = strategy;
- }
/**
* Set the strategy used to locate the {@link IdentifierGenerationStrategy} to use.
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list