From 7622a2f7914d0aacafd258d7b291a8d0c4d7961a Mon Sep 17 00:00:00 2001 From: Ben Alex Date: Fri, 11 Nov 2005 21:36:30 +0000 Subject: [PATCH] SEC-95: General fixes reported by Mathias Bogaert. --- doc/xdocs/upgrade/upgrade-080-090.html | 31 +++++++++++++++++--------- 1 file changed, 21 insertions(+), 10 deletions(-) diff --git a/doc/xdocs/upgrade/upgrade-080-090.html b/doc/xdocs/upgrade/upgrade-080-090.html index aaeff8edb8..69a77a7ef1 100644 --- a/doc/xdocs/upgrade/upgrade-080-090.html +++ b/doc/xdocs/upgrade/upgrade-080-090.html @@ -40,15 +40,15 @@ applications:
and change:
- <bean id="httpSessionContextIntegrationFilter" class="net.sf.acegisecurity.context.HttpSessionContextIntegrationFilter">
- <property name="context"><value>net.sf.acegisecurity.context.security.SecureContextImpl</value></property>
- </bean>
+ <bean id="httpSessionContextIntegrationFilter" class="net.sf.acegisecurity.context.HttpSessionContextIntegrationFilter">
+ <property name="context"><value>net.sf.acegisecurity.context.security.SecureContextImpl</value></property>
+ </bean>
to:
- <bean id="httpSessionContextIntegrationFilter" class="net.sf.acegisecurity.context.HttpSessionContextIntegrationFilter">
- <property name="context"><value>net.sf.acegisecurity.context.SecurityContextImpl</value></property>
- </bean>
+ <bean id="httpSessionContextIntegrationFilter" class="net.sf.acegisecurity.context.HttpSessionContextIntegrationFilter">
+ <property name="context"><value>net.sf.acegisecurity.context.SecurityContextImpl</value></property>
+ </bean>

@@ -74,16 +74,27 @@ applications:
For example, change:
- <bean id="loggerListener" class="net.sf.acegisecurity.providers.dao.event.LoggerListener"/>
+ <bean id="loggerListener" class="net.sf.acegisecurity.providers.dao.event.LoggerListener"/>
to:
- <bean id="loggerListener" class="net.sf.acegisecurity.providers.dao.event.authorization.LoggerListener"/> + <bean id="loggerListener" class="net.sf.acegisecurity.event.authentication.LoggerListener"/>

-
  • Users of the <authz:authentication> JSP tag will generally need to set the operation - property equal to "username", as reflection is now used to retrieve the property displayed.
  • +
  • Users of the <authz:authentication> JSP tag will generally need to set the operation + property equal to "username", as reflection is now used to retrieve the property displayed.

  • + +
  • + Users of net.sf.acegisecurity.wrapper.ContextHolderAwareRequestFilter should note that it has been + renamed to net.sf.acegisecurity.wrapper.SecurityContextHolderAwareRequestFilter.

    +
  • + +
  • + The concurrent session support handling has changed. Please refer to the Reference Guide to + review the new configuration requirements.

    +
  • +