21 lines
790 B
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
2013-07-14 14:45:56 +03:00
<beans:beans xmlns="http://www.springframework.org/schema/security" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans"
xsi:schemaLocation="
2013-06-02 19:27:41 +03:00
http://www.springframework.org/schema/security
2016-12-05 13:11:56 +02:00
http://www.springframework.org/schema/security/spring-security-4.2.xsd
2013-06-02 19:27:41 +03:00
http://www.springframework.org/schema/beans
2016-12-05 13:11:56 +02:00
http://www.springframework.org/schema/beans/spring-beans-4.3.xsd"
2015-07-23 16:54:23 +03:00
>
2013-07-14 14:45:56 +03:00
<http use-expressions="true">
2015-07-23 16:54:23 +03:00
<intercept-url pattern="/**" access="isAuthenticated()"/>
<http-basic/>
2013-07-14 14:45:56 +03:00
</http>
2013-07-14 14:45:56 +03:00
<authentication-manager>
2015-07-23 16:54:23 +03:00
<authentication-provider ref="customAuthenticationProvider"/>
2013-07-14 14:45:56 +03:00
</authentication-manager>
</beans:beans>