1
0
mirror of synced 2026-08-05 17:57:15 +00:00

SEC-1171: Changed attribute name/value from secured="false" to security="none" to allow future extension by adding extra options (e.g. contextOnly to provide security context information during the request).

This commit is contained in:
Luke Taylor
2010-07-20 19:46:47 +01:00
parent a4fd191499
commit c1c8fd1874
13 changed files with 293 additions and 285 deletions
@@ -10,10 +10,10 @@
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd">
<http pattern="/openidlogin.jsp*" secured="false" />
<http pattern="/images/*" secured="false" />
<http pattern="/css/*" secured="false" />
<http pattern="/js/*" secured="false" />
<http pattern="/openidlogin.jsp*" security="none" />
<http pattern="/images/*" security="none" />
<http pattern="/css/*" security="none" />
<http pattern="/js/*" security="none" />
<http>
<intercept-url pattern="/**" access="ROLE_USER"/>