[java-identity-provider] 11/19: IDP-1793 Use Suppliers for HttpRequest/Response

Rod Widdowson rdw at steadingsoftware.com
Wed Aug 10 13:17:03 UTC 2022


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

rdw pushed a commit to branch maint-4
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=de891bd7ab9aa03da4c02e77ffee8ab4dca3c912

commit de891bd7ab9aa03da4c02e77ffee8ab4dca3c912
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Tue Aug 2 19:20:35 2022 +0100

    IDP-1793  Use Suppliers for HttpRequest/Response
    
    https://shibboleth.atlassian.net/browse/IDP-1793
    
    org.opensaml.saml.saml2.wssecurity.messaging.impl.WSSecuritySAML20AssertionTokenSecurityHandler
    
    Gains a setter/getter for a Supplier for the HttpServletRequest
    and loses the setter for the raw object
---
 .../net/shibboleth/idp/flows/saml/saml2/idwsf-ssos-security-beans.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/saml/saml2/idwsf-ssos-security-beans.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/saml/saml2/idwsf-ssos-security-beans.xml
index c4db6a691..cc9d70a5d 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/saml/saml2/idwsf-ssos-security-beans.xml
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/flows/saml/saml2/idwsf-ssos-security-beans.xml
@@ -20,7 +20,7 @@
             c:executionDirection="INBOUND">
         <constructor-arg name="messageHandler">
             <bean class="org.opensaml.saml.common.binding.security.impl.SAMLMDClientCertAuthSecurityHandler" scope="prototype"
-                    p:httpServletRequestSuplier-ref="shibboleth.HttpServletRequestSupplier"
+                    p:httpServletRequestSupplier-ref="shibboleth.HttpServletRequestSupplier"
                     p:entityContextClass="org.opensaml.saml.common.messaging.context.SAMLPresenterEntityContext" />
         </constructor-arg>
         <property name="activationCondition">
@@ -92,7 +92,7 @@
         <constructor-arg name="messageHandler">
             <bean class="org.opensaml.saml.saml2.wssecurity.messaging.impl.WSSecuritySAML20AssertionTokenSecurityHandler" scope="prototype"
                     p:invalidFatal="true" 
-                    p:httpServletRequest-ref="shibboleth.HttpServletRequest" 
+                    p:httpServletRequestSupplier-ref="shibboleth.HttpServletRequestSupplier"
                     p:assertionValidator-ref="shibboleth.Delegation.SAML2AssertionTokenValidator" />
         </constructor-arg>
         <property name="activationCondition">

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


More information about the commits mailing list