Move to the root the bundles which will be part of v1.4 and v2.2
[lgpl/argeo-commons.git] / security / plugins / org.argeo.security.equinox / META-INF / spring / loginModules.xml
diff --git a/security/plugins/org.argeo.security.equinox/META-INF/spring/loginModules.xml b/security/plugins/org.argeo.security.equinox/META-INF/spring/loginModules.xml
deleted file mode 100644 (file)
index 7a3e802..0000000
+++ /dev/null
@@ -1,39 +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" xmlns:p="http://www.springframework.org/schema/p"
-       xsi:schemaLocation="http://www.springframework.org/schema/beans
-        http://www.springframework.org/schema/beans/spring-beans.xsd">
-
-       <bean
-               class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
-               <property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />
-               <property name="locations">
-                       <value>osgibundle:security.properties</value>
-               </property>
-       </bean>
-
-       <bean id="springLoginModule" class="org.argeo.security.equinox.SpringLoginModule"
-               scope="prototype">
-               <property name="authenticationManager" ref="authenticationManager" />
-               <property name="availableLocales" value="${argeo.i18n.availableLocales}"/>
-       </bean>
-
-       <bean id="springLoginModuleRemote" class="org.argeo.security.equinox.SpringLoginModule"
-               scope="prototype">
-               <property name="remote" value="true" />
-               <property name="authenticationManager" ref="authenticationManager" />
-       </bean>
-
-       <bean id="anonymousSpringLoginModule" class="org.argeo.security.equinox.SpringLoginModule"
-               scope="prototype">
-               <property name="anonymous" value="true" />
-               <property name="anonymousRole" value="${argeo.security.anonymousRole}" />
-               <property name="key" value="${argeo.security.systemKey}" />
-               <property name="authenticationManager" ref="authenticationManager" />
-       </bean>
-
-       <bean id="osSpringLoginModule" class="org.argeo.security.equinox.OsSpringLoginModule"
-               scope="prototype">
-               <property name="authenticationManager" ref="authenticationManager" />
-       </bean>
-</beans>