1
0
mirror of synced 2026-05-22 21:33:16 +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
@@ -6,7 +6,7 @@
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="/login.jsp" secured="false" />
<http pattern="/login.jsp" security="none" />
<http entry-point-ref="aep">
<intercept-url pattern="/**" access="ROLE_DEVELOPER,ROLE_USER" />
@@ -10,7 +10,7 @@
Http App Context to test form login, remember-me and concurrent session control.
Needs to be supplemented with authentication provider(s)
-->
<http pattern="/login.jsp" secured="false" />
<http pattern="/login.jsp" security="none" />
<http use-expressions="true">
<intercept-url pattern="/secure/**" access="hasAnyRole('ROLE_DEVELOPER','ROLE_USER')" />