[java-identity-provider] 01/02: IDP-1793 Use Suppliers for HttpRequest/Response
Rod Widdowson
rdw at steadingsoftware.com
Sun Aug 14 15:24:54 UTC 2022
This is an automated email from the git hooks/post-receive script.
rdw pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=932659a28704d8c08061e366916691fc141dbd5d
commit 932659a28704d8c08061e366916691fc141dbd5d
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Sun Aug 7 20:06:45 2022 +0100
IDP-1793 Use Suppliers for HttpRequest/Response
https://shibboleth.atlassian.net/browse/IDP-1793
org.opensaml.storage.impl.client.ClientStorageService
Gains a setter/getter for a Supplier for the HttpServletRequest
and loses the setter for the raw object.
---
.../src/main/resources/net/shibboleth/idp/conf/global-system.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/global-system.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/global-system.xml
index fb144e78d..439aad8f7 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/global-system.xml
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/global-system.xml
@@ -235,14 +235,14 @@
<bean id="shibboleth.ClientSessionStorageService" lazy-init="true"
class="org.opensaml.storage.impl.client.ClientStorageService"
- p:httpServletRequest-ref="shibboleth.HttpServletRequest"
+ p:httpServletRequestSupplier-ref="shibboleth.HttpServletRequestSupplier"
p:cookieManager-ref="shibboleth.CookieManager"
p:storageName="%{idp.storage.clientSessionStorageName:shib_idp_session_ss}"
p:dataSealer-ref="shibboleth.DataSealer" />
<bean id="shibboleth.ClientPersistentStorageService" lazy-init="true"
class="org.opensaml.storage.impl.client.ClientStorageService"
- p:httpServletRequest-ref="shibboleth.HttpServletRequest"
+ p:httpServletRequestSupplier-ref="shibboleth.HttpServletRequestSupplier"
p:cookieManager-ref="shibboleth.PersistentCookieManager"
p:storageName="%{idp.storage.clientPersistentStorageName:shib_idp_persistent_ss}"
p:dataSealer-ref="shibboleth.DataSealer"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list