[java-identity-provider] branch main updated: CSRFTokenManager needs init/destroy method decls.

Scott Cantor cantor.2 at osu.edu
Thu Oct 20 16:31:24 UTC 2022


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

scantor 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=bb27360b8681875b2e5f55f50b1443dcd58c6b53

The following commit(s) were added to refs/heads/main by this push:
     new bb27360b8 CSRFTokenManager needs init/destroy method decls.
bb27360b8 is described below

commit bb27360b8681875b2e5f55f50b1443dcd58c6b53
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Oct 20 12:31:21 2022 -0400

    CSRFTokenManager needs init/destroy method decls.
---
 .../src/main/resources/net/shibboleth/idp/conf/webflow-config.xml    | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/webflow-config.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/webflow-config.xml
index b7e430bac..a5831dcbb 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/webflow-config.xml
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/conf/webflow-config.xml
@@ -217,8 +217,9 @@
           p:viewRequiresCSRFTokenPredicate-ref="shibboleth.DefaultViewRequiresCSRFTokenPredicate"
           p:eventRequiresCSRFTokenValidationPredicate-ref="shibboleth.DefaultEventRequiresCSRFTokenValidationPredicate"/>
     
-   	<bean id="shibboleth.CSRFTokenManager" class="net.shibboleth.idp.ui.csrf.CSRFTokenManager"
-       p:csrfParameterName="%{idp.csrf.token.parameter:csrf_token}"/>
+   	<bean id="shibboleth.CSRFTokenManager" init-method="initialize" destroy-method="destroy"
+        class="net.shibboleth.idp.ui.csrf.CSRFTokenManager"
+        p:csrfParameterName="%{idp.csrf.token.parameter:csrf_token}"/>
    	
 	<bean id="shibboleth.DefaultViewRequiresCSRFTokenPredicate" 
 		class="net.shibboleth.idp.ui.csrf.impl.DefaultViewRequiresCSRFTokenPredicate"/>

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


More information about the commits mailing list