SEC-562: Repackaging portlet module which was missed.

This commit is contained in:
Luke Taylor 2007-09-22 21:37:44 +00:00
parent 757b153430
commit 9e17d95501
26 changed files with 16 additions and 16 deletions

View File

@ -3,7 +3,7 @@
<beans> <beans>
<bean id="filterChainProxy" class="org.acegisecurity.util.FilterChainProxy"> <bean id="filterChainProxy" class="org.springframework.security.util.FilterChainProxy">
<property name="filterInvocationDefinitionSource"> <property name="filterInvocationDefinitionSource">
<value> <value>
CONVERT_URL_TO_LOWERCASE_BEFORE_COMPARISON CONVERT_URL_TO_LOWERCASE_BEFORE_COMPARISON
@ -15,14 +15,14 @@
</bean> </bean>
<!-- The first item in the Chain: httpSessionContextIntegrationFilter --> <!-- The first item in the Chain: httpSessionContextIntegrationFilter -->
<bean id="httpSessionContextIntegrationFilter" class="org.acegisecurity.context.HttpSessionContextIntegrationFilter"> <bean id="httpSessionContextIntegrationFilter" class="org.springframework.security.context.HttpSessionContextIntegrationFilter">
<property name="context"> <property name="context">
<value>org.acegisecurity.context.SecurityContextImpl</value> <value>org.springframework.security.context.SecurityContextImpl</value>
</property> </property>
</bean> </bean>
<!-- the second item in the chain: exceptionTranslationFilter --> <!-- the second item in the chain: exceptionTranslationFilter -->
<bean id="exceptionTranslationFilter" class="org.acegisecurity.ui.ExceptionTranslationFilter"> <bean id="exceptionTranslationFilter" class="org.springframework.security.ui.ExceptionTranslationFilter">
<property name="authenticationEntryPoint" ref="ntlmEntryPoint"/> <property name="authenticationEntryPoint" ref="ntlmEntryPoint"/>
</bean> </bean>
@ -35,7 +35,7 @@
<property name="authenticationManager" ref="providerManager"/> <property name="authenticationManager" ref="providerManager"/>
</bean> </bean>
<bean id="providerManager" class="org.acegisecurity.providers.ProviderManager"> <bean id="providerManager" class="org.springframework.security.providers.ProviderManager">
<property name="providers"> <property name="providers">
<list> <list>
<ref local="daoAuthenticationProvider"/> <ref local="daoAuthenticationProvider"/>
@ -43,21 +43,21 @@
</property> </property>
</bean> </bean>
<bean id="daoAuthenticationProvider" class="org.acegisecurity.providers.dao.DaoAuthenticationProvider"> <bean id="daoAuthenticationProvider" class="org.springframework.security.providers.dao.DaoAuthenticationProvider">
<property name="userDetailsService"> <property name="userDetailsService">
<ref local="memoryUserDetailsService"/> <ref local="memoryUserDetailsService"/>
</property> </property>
</bean> </bean>
<!-- NOTE: You will need to write a custom UserDetailsService in most cases --> <!-- NOTE: You will need to write a custom UserDetailsService in most cases -->
<bean id="memoryUserDetailsService" class="org.acegisecurity.userdetails.memory.InMemoryDaoImpl"> <bean id="memoryUserDetailsService" class="org.springframework.security.userdetails.memory.InMemoryDaoImpl">
<property name="userMap"> <property name="userMap">
<value>jdoe=PASSWORD,ROLE_USER</value> <value>jdoe=PASSWORD,ROLE_USER</value>
</property> </property>
</bean> </bean>
<!-- the fourth item in the chain: filterSecurityInterceptor --> <!-- the fourth item in the chain: filterSecurityInterceptor -->
<bean id="filterSecurityInterceptor" class="org.acegisecurity.intercept.web.FilterSecurityInterceptor"> <bean id="filterSecurityInterceptor" class="org.springframework.security.intercept.web.FilterSecurityInterceptor">
<property name="authenticationManager"><ref local="providerManager"/></property> <property name="authenticationManager"><ref local="providerManager"/></property>
<property name="accessDecisionManager"><ref local="accessDecisionManager"/></property> <property name="accessDecisionManager"><ref local="accessDecisionManager"/></property>
<property name="objectDefinitionSource"> <property name="objectDefinitionSource">
@ -70,7 +70,7 @@
</bean> </bean>
<!-- authenticationManager defined above --> <!-- authenticationManager defined above -->
<bean id="accessDecisionManager" class="org.acegisecurity.vote.UnanimousBased"> <bean id="accessDecisionManager" class="org.springframework.security.vote.UnanimousBased">
<property name="allowIfAllAbstainDecisions"> <property name="allowIfAllAbstainDecisions">
<value>false</value> <value>false</value>
</property> </property>
@ -81,7 +81,7 @@
</property> </property>
</bean> </bean>
<bean id="roleVoter" class="org.acegisecurity.vote.RoleVoter"/> <bean id="roleVoter" class="org.springframework.security.vote.RoleVoter"/>
<bean id="ntlmEntryPoint" class="org.springframework.security.ui.ntlm.NtlmProcessingFilterEntryPoint"> <bean id="ntlmEntryPoint" class="org.springframework.security.ui.ntlm.NtlmProcessingFilterEntryPoint">
<property name="authenticationFailureUrl" value="/login_error.jsp"/> <property name="authenticationFailureUrl" value="/login_error.jsp"/>
@ -90,6 +90,6 @@
<!-- Done with the chain --> <!-- Done with the chain -->
<!-- This bean automatically receives AuthenticationEvent messages from DaoAuthenticationProvider --> <!-- This bean automatically receives AuthenticationEvent messages from DaoAuthenticationProvider -->
<bean id="loggerListener" class="org.acegisecurity.event.authentication.LoggerListener"/> <bean id="loggerListener" class="org.springframework.security.event.authentication.LoggerListener"/>
</beans> </beans>

View File

@ -18,10 +18,10 @@
<!-- 2. Setup the Acegi Filter Chain Proxy --> <!-- 2. Setup the Acegi Filter Chain Proxy -->
<filter> <filter>
<filter-name>Acegi Filter Chain Proxy</filter-name> <filter-name>Acegi Filter Chain Proxy</filter-name>
<filter-class>org.acegisecurity.util.FilterToBeanProxy</filter-class> <filter-class>org.springframework.security.FilterToBeanProxy</filter-class>
<init-param> <init-param>
<param-name>targetClass</param-name> <param-name>targetClass</param-name>
<param-value>org.acegisecurity.util.FilterChainProxy</param-value> <param-value>org.springframework.security.util.FilterChainProxy</param-value>
</init-param> </init-param>
</filter> </filter>
@ -43,7 +43,7 @@
<!-- c) Setup ACEGI to subscribe to http session events in the web context --> <!-- c) Setup ACEGI to subscribe to http session events in the web context -->
<listener> <listener>
<listener-class>org.acegisecurity.ui.session.HttpSessionEventPublisher</listener-class> <listener-class>org.springframework.acegisecurityrk.acegisecurity.ui.session.HttpSessionEventPublisher</listener-class>
</listener> </listener>
<welcome-file-list> <welcome-file-list>