@ -83,17 +83,17 @@
@@ -83,17 +83,17 @@
</property>
</bean>
<bean id= "accessDecisionManager" class= "org.springframework.security.vote.AffirmativeBased" >
<bean id= "accessDecisionManager" class= "org.springframework.security.access .vote.AffirmativeBased" >
<property name= "allowIfAllAbstainDecisions" value= "false" />
<property name= "decisionVoters" >
<list >
<bean class= "org.springframework.security.vote.RoleVoter" />
<bean class= "org.springframework.security.vote.AuthenticatedVoter" />
<bean class= "org.springframework.security.access .vote.RoleVoter" />
<bean class= "org.springframework.security.access .vote.AuthenticatedVoter" />
</list>
</property>
</bean>
<bean id= "filterInvocationInterceptor" class= "org.springframework.security.intercept.web .FilterSecurityInterceptor" >
<bean id= "filterInvocationInterceptor" class= "org.springframework.security.web. intercept.FilterSecurityInterceptor" >
<property name= "authenticationManager" ref= "authenticationManager" />
<property name= "accessDecisionManager" ref= "accessDecisionManager" />
<property name= "objectDefinitionSource" >
@ -107,31 +107,31 @@
@@ -107,31 +107,31 @@
</property>
</bean>
<bean id= "rememberMeServices" class= "org.springframework.security.ui.rememberme.TokenBasedRememberMeServices" >
<bean id= "rememberMeServices" class= "org.springframework.security.web.a uthent ication .rememberme.TokenBasedRememberMeServices" >
<property name= "userDetailsService" ref= "userDetailsService" />
<property name= "key" value= "changeThis" />
</bean>
<bean id= "authenticationManager" class= "org.springframework.security.providers .ProviderManager" >
<bean id= "authenticationManager" class= "org.springframework.security.authentication .ProviderManager" >
<property name= "providers" >
<list >
<ref local= "daoAuthenticationProvider" />
<bean class= "org.springframework.security.providers.anonymous .AnonymousAuthenticationProvider" >
<bean class= "org.springframework.security.authentication .AnonymousAuthenticationProvider" >
<property name= "key" value= "changeThis" />
</bean>
<bean class= "org.springframework.security.providers .rememberme.RememberMeAuthenticationProvider" >
<bean class= "org.springframework.security.web.authentication .rememberme.RememberMeAuthenticationProvider" >
<property name= "key" value= "changeThis" />
</bean>
</list>
</property>
</bean>
<bean id= "daoAuthenticationProvider" class= "org.springframework.security.providers .dao.DaoAuthenticationProvider" >
<bean id= "daoAuthenticationProvider" class= "org.springframework.security.authentication .dao.DaoAuthenticationProvider" >
<property name= "userDetailsService" ref= "userDetailsService" />
</bean>
<!-- UserDetailsService is the most commonly frequently Acegi Security interface implemented by end users -->
<bean id= "userDetailsService" class= "org.springframework.security.userdetails.memory.InMemoryDaoImpl" >
<bean id= "userDetailsService" class= "org.springframework.security.core .userdetails.memory.InMemoryDaoImpl" >
<property name= "userProperties" >
<bean class= "org.springframework.beans.factory.config.PropertiesFactoryBean" >
<property name= "location" value= "/WEB-INF/users.properties" />
@ -140,21 +140,21 @@
@@ -140,21 +140,21 @@
</bean>
<!-- This bean is optional; it isn't used by any other bean as it only listens and logs -->
<bean id= "loggerListener" class= "org.springframework.security.event. authentication.LoggerListener" />
<bean id= "loggerListener" class= "org.springframework.security.authentication.event .LoggerListener" />
<bean id= "daacc" class= "org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" />
<bean id= "attributes" class= "org.springframework.security.annotation.SecurityAnnotationAttributes" />
<bean id= "attributes" class= "org.springframework.security.access .annotation.SecurityAnnotationAttributes" />
<bean id= "objectDefinition Source" class= "org.springframework.security.intercept.method.MethodDefinitionAttributes" >
<bean id= "securityMetadata Source" class= "org.springframework.security.access .intercept.method.MethodDefinitionAttributes" >
<property name= "attributes" > <ref local= "attributes" /> </property>
</bean>
<bean id= "securityInterceptor" class= "org.springframework.security.intercept.method.aopalliance.MethodSecurityInterceptor" >
<property name= "authenticationManager" > <ref local= "authenticationManager" /> </property>
<property name= "accessDecisionManager" > <ref local= "accessDecisionManager" /> </property>
<property name= "objectDefinition Source" >
<ref local= "objectDefinition Source" />
<property name= "securityMetadata Source" >
<ref local= "securityMetadata Source" />
</property>
</bean>