Move to the root the bundles which will be part of v1.4 and v2.2
[lgpl/argeo-commons.git] / security / modules / org.argeo.security.dao.ldap / META-INF / spring / security-ldap-services.xml
diff --git a/security/modules/org.argeo.security.dao.ldap/META-INF/spring/security-ldap-services.xml b/security/modules/org.argeo.security.dao.ldap/META-INF/spring/security-ldap-services.xml
deleted file mode 100644 (file)
index 36dedf3..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<beans xmlns="http://www.springframework.org/schema/beans"
-       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xsi:schemaLocation="
-       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
-
-       <bean id="authenticationManager" class="org.springframework.security.providers.ProviderManager">
-               <property name="providers">
-                       <list>
-                               <ref bean="authByAdapterProvider" />
-                               <ref bean="preAuthProvider" />
-                               <ref bean="anonymousAuthenticationProvider" />
-                               <ref bean="rememberMeAuthenticationProvider" />
-                               <ref bean="ldapAuthenticationProvider" />
-                       </list>
-               </property>
-       </bean>
-
-       <!-- Authentication provider -->
-       <bean id="authByAdapterProvider"
-               class="org.springframework.security.adapters.AuthByAdapterProvider">
-               <description><![CDATA[System authentication]]></description>
-               <property name="key" value="${argeo.security.systemKey}" />
-       </bean>
-
-       <bean id="preAuthProvider"
-               class="org.springframework.security.providers.preauth.PreAuthenticatedAuthenticationProvider">
-               <description><![CDATA[Pre-authentication]]></description>
-               <property name="preAuthenticatedUserDetailsService">
-                       <bean id="userDetailsServiceWrapper"
-                               class="org.springframework.security.userdetails.UserDetailsByNameServiceWrapper">
-                               <property name="userDetailsService" ref="userDetailsManager" />
-                       </bean>
-               </property>
-       </bean>
-
-       <bean id="anonymousAuthenticationProvider"
-               class="org.springframework.security.providers.anonymous.AnonymousAuthenticationProvider">
-               <description><![CDATA[Anonymous authentication]]></description>
-               <property name="key" value="${argeo.security.systemKey}" />
-       </bean>
-
-       <bean id="rememberMeAuthenticationProvider"
-               class="org.springframework.security.providers.rememberme.RememberMeAuthenticationProvider">
-               <description><![CDATA[Remember me authentication]]></description>
-               <property name="key" value="${argeo.security.systemKey}" />
-       </bean>
-
-       <!-- Internal authentication, used by during the general authentication 
-               initialization himself, in order to prevent the following dependency cycle: 
-               Repository.login() <= AuthenticationManager <= LdapAuthenticationProvider 
-               <= Repository.login() in init() -->
-       <bean id="internalAuthenticationManager" class="org.springframework.security.providers.ProviderManager">
-               <property name="providers">
-                       <list>
-                               <ref bean="authByAdapterProvider" />
-                       </list>
-               </property>
-       </bean>
-
-       <bean
-               class="org.argeo.security.core.AuthenticatedApplicationContextInitialization">
-               <description><![CDATA[Executes initialization with a system authentication]]></description>
-               <property name="authenticationManager" ref="internalAuthenticationManager" />
-       </bean>
-</beans>
\ No newline at end of file