1 <?xml version="1.0" encoding="UTF-8"?>
3 <beans:beans xmlns:beans="http://www.springframework.org/schema/beans"
4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5 xmlns:aop="http://www.springframework.org/schema/aop"
6 xmlns:context="http://www.springframework.org/schema/context"
7 xmlns="http://www.springframework.org/schema/security"
9 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
10 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
11 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
12 http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-2.0.4.xsd">
13 <http auto-config="true">
14 <intercept-url pattern="/**/*" access="ROLE_TECHNICIAN"/>
17 <authentication-provider>
19 <user name="modhu" password="modhu" authorities="ROLE_USER, ROLE_ADMIN, ROLE_TECHNICIAN" />
20 <user name="imyousuf" password="imyousuf" authorities="ROLE_USER" />
22 </authentication-provider>