From a65b5a9ed8e9588b0e663816fef5d4c6dfd8fb06 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Thu, 20 Mar 2008 14:56:02 +0000 Subject: [PATCH] Corrected separators between http method strings in rnc file. --- .../security/config/spring-security-2.0.rnc | 2 +- .../security/config/spring-security-2.0.xsd | 16 +++++++++++----- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/core/src/main/resources/org/springframework/security/config/spring-security-2.0.rnc b/core/src/main/resources/org/springframework/security/config/spring-security-2.0.rnc index 5935d23a94..b7932df546 100644 --- a/core/src/main/resources/org/springframework/security/config/spring-security-2.0.rnc +++ b/core/src/main/resources/org/springframework/security/config/spring-security-2.0.rnc @@ -200,7 +200,7 @@ intercept-url.attlist &= attribute access {xsd:string}? intercept-url.attlist &= ## The HTTP Method for which the access configuration attributes should apply. If not specified, the attributes will apply to any method. - attribute method {"GET", "DELETE", "HEAD", "OPTIONS", "POST", "PUT", "TRACE"}? + attribute method {"GET" | "DELETE" | "HEAD" | "OPTIONS" | "POST" | "PUT" | "TRACE"}? intercept-url.attlist &= ## The filter list for the path. Currently can be set to "none" to remove a path from having any filters applied. The full filter stack (consisting of all defined filters, will be applied to any other paths). diff --git a/core/src/main/resources/org/springframework/security/config/spring-security-2.0.xsd b/core/src/main/resources/org/springframework/security/config/spring-security-2.0.xsd index 3e7fac7395..dc723cb9b6 100644 --- a/core/src/main/resources/org/springframework/security/config/spring-security-2.0.xsd +++ b/core/src/main/resources/org/springframework/security/config/spring-security-2.0.xsd @@ -260,7 +260,7 @@ - + @@ -924,7 +924,7 @@ - + @@ -940,7 +940,7 @@ - + Creates an in-memory UserDetailsService from a properties file or a list of "user" child elements. @@ -1000,7 +1000,7 @@ - + Causes creation of a JDBC-based UserDetailsService. @@ -1021,7 +1021,13 @@ - + + + + + + +