diff --git a/core/convert_schema.sh b/core/convert_schema.sh new file mode 100755 index 0000000000..c2b5d0fd45 --- /dev/null +++ b/core/convert_schema.sh @@ -0,0 +1,11 @@ +#! /bin/sh + +pushd src/main/resources/org/springframework/security/config/ + +echo "Converting rnc file to xsd ..." +java -jar ~/bin/trang.jar spring-security-2.0.6.rnc spring-security-2.0.6.xsd + +echo "Applying XSL transformation to xsd ..." +xsltproc --output spring-security-2.0.6.xsd spring-security.xsl spring-security-2.0.6.xsd + +popd \ No newline at end of file diff --git a/core/src/main/java/org/springframework/security/config/Elements.java b/core/src/main/java/org/springframework/security/config/Elements.java index e7d1ba2834..bb6afd81bb 100644 --- a/core/src/main/java/org/springframework/security/config/Elements.java +++ b/core/src/main/java/org/springframework/security/config/Elements.java @@ -10,34 +10,35 @@ abstract class Elements { public static final String AUTHENTICATION_MANAGER = "authentication-manager"; public static final String USER_SERVICE = "user-service"; - public static final String JDBC_USER_SERVICE = "jdbc-user-service"; - public static final String FILTER_CHAIN_MAP = "filter-chain-map"; - public static final String INTERCEPT_METHODS = "intercept-methods"; - public static final String INTERCEPT_URL = "intercept-url"; - public static final String AUTHENTICATION_PROVIDER = "authentication-provider"; - public static final String HTTP = "http"; - public static final String LDAP_PROVIDER = "ldap-authentication-provider"; - public static final String LDAP_SERVER = "ldap-server"; + public static final String JDBC_USER_SERVICE = "jdbc-user-service"; + public static final String FILTER_CHAIN_MAP = "filter-chain-map"; + public static final String INTERCEPT_METHODS = "intercept-methods"; + public static final String INTERCEPT_URL = "intercept-url"; + public static final String AUTHENTICATION_PROVIDER = "authentication-provider"; + public static final String HTTP = "http"; + public static final String LDAP_PROVIDER = "ldap-authentication-provider"; + public static final String LDAP_SERVER = "ldap-server"; public static final String LDAP_USER_SERVICE = "ldap-user-service"; public static final String PROTECT_POINTCUT = "protect-pointcut"; public static final String PROTECT = "protect"; - public static final String CONCURRENT_SESSIONS = "concurrent-session-control"; - public static final String LOGOUT = "logout"; - public static final String FORM_LOGIN = "form-login"; - public static final String OPENID_LOGIN = "openid-login"; - public static final String BASIC_AUTH = "http-basic"; - public static final String REMEMBER_ME = "remember-me"; - public static final String ANONYMOUS = "anonymous"; - public static final String FILTER_CHAIN = "filter-chain"; - public static final String GLOBAL_METHOD_SECURITY = "global-method-security"; - public static final String PASSWORD_ENCODER = "password-encoder"; - public static final String SALT_SOURCE = "salt-source"; - public static final String PORT_MAPPINGS = "port-mappings"; + public static final String CONCURRENT_SESSIONS = "concurrent-session-control"; + public static final String LOGOUT = "logout"; + public static final String FORM_LOGIN = "form-login"; + public static final String OPENID_LOGIN = "openid-login"; + public static final String BASIC_AUTH = "http-basic"; + public static final String REMEMBER_ME = "remember-me"; + public static final String ANONYMOUS = "anonymous"; + public static final String FILTER_CHAIN = "filter-chain"; + public static final String GLOBAL_METHOD_SECURITY = "global-method-security"; + public static final String PASSWORD_ENCODER = "password-encoder"; + public static final String SALT_SOURCE = "salt-source"; + public static final String PORT_MAPPINGS = "port-mappings"; public static final String PORT_MAPPING = "port-mapping"; public static final String CUSTOM_FILTER = "custom-filter"; public static final String CUSTOM_AUTH_PROVIDER = "custom-authentication-provider"; - public static final String CUSTOM_AFTER_INVOCATION_PROVIDER = "custom-after-invocation-provider"; + public static final String CUSTOM_AFTER_INVOCATION_PROVIDER = "custom-after-invocation-provider"; public static final String X509 = "x509"; - public static final String FILTER_INVOCATION_DEFINITION_SOURCE = "filter-invocation-definition-source"; + public static final String FILTER_INVOCATION_DEFINITION_SOURCE = "filter-invocation-definition-source"; public static final String LDAP_PASSWORD_COMPARE = "password-compare"; + public static final String HTTP_FIREWALL = "http-firewall"; } diff --git a/core/src/main/java/org/springframework/security/config/HttpFirewallBeanDefinitionParser.java b/core/src/main/java/org/springframework/security/config/HttpFirewallBeanDefinitionParser.java new file mode 100644 index 0000000000..9b909a948e --- /dev/null +++ b/core/src/main/java/org/springframework/security/config/HttpFirewallBeanDefinitionParser.java @@ -0,0 +1,31 @@ +package org.springframework.security.config; + +import org.springframework.beans.factory.config.BeanDefinition; +import org.springframework.beans.factory.support.BeanDefinitionBuilder; +import org.springframework.beans.factory.xml.BeanDefinitionParser; +import org.springframework.beans.factory.xml.ParserContext; +import org.springframework.util.StringUtils; +import org.w3c.dom.Element; + +/** + * Injects the supplied {@code HttpFirewall} bean reference into the {@code FilterChainProxy}. + * + * @author Luke Taylor + */ +public class HttpFirewallBeanDefinitionParser implements BeanDefinitionParser { + + public BeanDefinition parse(Element element, ParserContext pc) { + String ref = element.getAttribute("ref"); + + if (!StringUtils.hasText(ref)) { + pc.getReaderContext().error("ref attribute is required", pc.extractSource(element)); + } + + BeanDefinitionBuilder injector = BeanDefinitionBuilder.rootBeanDefinition(HttpFirewallInjectionBeanPostProcessor.class); + injector.addConstructorArg(ref); + + pc.getReaderContext().registerWithGeneratedName(injector.getBeanDefinition()); + + return null; + } +} diff --git a/core/src/main/java/org/springframework/security/config/HttpFirewallInjectionBeanPostProcessor.java b/core/src/main/java/org/springframework/security/config/HttpFirewallInjectionBeanPostProcessor.java new file mode 100644 index 0000000000..39bce3e626 --- /dev/null +++ b/core/src/main/java/org/springframework/security/config/HttpFirewallInjectionBeanPostProcessor.java @@ -0,0 +1,40 @@ +package org.springframework.security.config; + +import org.springframework.beans.BeansException; +import org.springframework.beans.factory.BeanFactory; +import org.springframework.beans.factory.BeanFactoryAware; +import org.springframework.beans.factory.config.BeanPostProcessor; +import org.springframework.beans.factory.config.ConfigurableListableBeanFactory; +import org.springframework.security.config.BeanIds; +import org.springframework.security.util.FilterChainProxy; +import org.springframework.security.firewall.HttpFirewall; + +/** + * @author Luke Taylor + */ +public class HttpFirewallInjectionBeanPostProcessor implements BeanPostProcessor, BeanFactoryAware { + private ConfigurableListableBeanFactory beanFactory; + private String ref; + + public HttpFirewallInjectionBeanPostProcessor(String ref) { + this.ref = ref; + } + + public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException { + if (BeanIds.FILTER_CHAIN_PROXY.equals(beanName)) { + HttpFirewall fw = (HttpFirewall) beanFactory.getBean(ref); + ((FilterChainProxy)bean).setFirewall(fw); + } + + return bean; + } + + public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException { + return bean; + } + + + public void setBeanFactory(BeanFactory beanFactory) throws BeansException { + this.beanFactory = (ConfigurableListableBeanFactory) beanFactory; + } +} diff --git a/core/src/main/java/org/springframework/security/config/SecurityNamespaceHandler.java b/core/src/main/java/org/springframework/security/config/SecurityNamespaceHandler.java index 3f5339323d..001991c974 100644 --- a/core/src/main/java/org/springframework/security/config/SecurityNamespaceHandler.java +++ b/core/src/main/java/org/springframework/security/config/SecurityNamespaceHandler.java @@ -24,6 +24,7 @@ public class SecurityNamespaceHandler extends NamespaceHandlerSupport { registerBeanDefinitionParser(Elements.GLOBAL_METHOD_SECURITY, new GlobalMethodSecurityBeanDefinitionParser()); registerBeanDefinitionParser(Elements.AUTHENTICATION_MANAGER, new AuthenticationManagerBeanDefinitionParser()); registerBeanDefinitionParser(Elements.FILTER_INVOCATION_DEFINITION_SOURCE, new FilterInvocationDefinitionSourceBeanDefinitionParser()); + registerBeanDefinitionParser(Elements.HTTP_FIREWALL, new HttpFirewallBeanDefinitionParser()); // Decorators registerBeanDefinitionDecorator(Elements.INTERCEPT_METHODS, new InterceptMethodsBeanDefinitionDecorator()); diff --git a/core/src/main/java/org/springframework/security/util/FilterChainProxy.java b/core/src/main/java/org/springframework/security/util/FilterChainProxy.java index 8b05cd145a..b38e67826d 100644 --- a/core/src/main/java/org/springframework/security/util/FilterChainProxy.java +++ b/core/src/main/java/org/springframework/security/util/FilterChainProxy.java @@ -340,6 +340,10 @@ public class FilterChainProxy implements Filter, InitializingBean, ApplicationCo return matcher; } + public void setFirewall(HttpFirewall firewall) { + this.firewall = firewall; + } + /** * If set to 'true', the query string will be stripped from the request URL before * attempting to find a matching filter chain. This is the default value. diff --git a/core/src/main/java/org/springframework/security/util/InMemoryXmlApplicationContext.java b/core/src/main/java/org/springframework/security/util/InMemoryXmlApplicationContext.java index 8f1083906a..8c983162a4 100644 --- a/core/src/main/java/org/springframework/security/util/InMemoryXmlApplicationContext.java +++ b/core/src/main/java/org/springframework/security/util/InMemoryXmlApplicationContext.java @@ -15,7 +15,7 @@ public class InMemoryXmlApplicationContext extends AbstractXmlApplicationContext " xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'\n" + " xsi:schemaLocation='http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd\n" + "http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd\n" + - "http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-2.0.2.xsd'>\n"; + "http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-2.0.6.xsd'>\n"; private static final String BEANS_CLOSE = "\n"; Resource inMemoryXml; diff --git a/core/src/main/resources/META-INF/spring.schemas b/core/src/main/resources/META-INF/spring.schemas index 5bf71855e0..4b8c8f3ddd 100644 --- a/core/src/main/resources/META-INF/spring.schemas +++ b/core/src/main/resources/META-INF/spring.schemas @@ -1,5 +1,6 @@ -http\://www.springframework.org/schema/security/spring-security.xsd=org/springframework/security/config/spring-security-2.0.4.xsd +http\://www.springframework.org/schema/security/spring-security.xsd=org/springframework/security/config/spring-security-2.0.6.xsd http\://www.springframework.org/schema/security/spring-security-2.0.xsd=org/springframework/security/config/spring-security-2.0.xsd http\://www.springframework.org/schema/security/spring-security-2.0.1.xsd=org/springframework/security/config/spring-security-2.0.1.xsd http\://www.springframework.org/schema/security/spring-security-2.0.2.xsd=org/springframework/security/config/spring-security-2.0.2.xsd http\://www.springframework.org/schema/security/spring-security-2.0.4.xsd=org/springframework/security/config/spring-security-2.0.4.xsd +http\://www.springframework.org/schema/security/spring-security-2.0.6.xsd=org/springframework/security/config/spring-security-2.0.6.xsd diff --git a/core/src/main/resources/org/springframework/security/config/spring-security-2.0.4.rnc b/core/src/main/resources/org/springframework/security/config/spring-security-2.0.6.rnc similarity index 90% rename from core/src/main/resources/org/springframework/security/config/spring-security-2.0.4.rnc rename to core/src/main/resources/org/springframework/security/config/spring-security-2.0.6.rnc index ba53ea0f10..23da5206e6 100644 --- a/core/src/main/resources/org/springframework/security/config/spring-security-2.0.4.rnc +++ b/core/src/main/resources/org/springframework/security/config/spring-security-2.0.6.rnc @@ -8,7 +8,7 @@ start = http | ldap-server | authentication-provider | ldap-authentication-provi hash = ## Defines the hashing algorithm used on user passwords. We recommend strongly against using MD4, as it is a very weak hashing algorithm. attribute hash {"plaintext" | "sha" | "sha-256" | "md5" | "md4" | "{sha}" | "{ssha}"} -base64 = +base64 = ## Whether a string should be base64 encoded attribute base64 {"true" | "false"} path-type = @@ -20,9 +20,9 @@ port = url = ## Specifies a URL. attribute url { xsd:string } -id = +id = ## A bean identifier, used for referring to the bean elsewhere in the context. - attribute id {xsd:ID} + attribute id {xsd:ID} ref = ## Defines a reference to a Spring bean Id. attribute ref {xsd:string} @@ -35,26 +35,26 @@ user-service-ref = ## A reference to a user-service (or UserDetailsService bean) Id attribute user-service-ref {xsd:string} -data-source-ref = +data-source-ref = ## A reference to a DataSource bean - attribute data-source-ref {xsd:string} - -password-encoder = + attribute data-source-ref {xsd:string} + +password-encoder = ## element which defines a password encoding strategy. Used by an authentication provider to convert submitted passwords to hashed versions, for example. - element password-encoder {password-encoder.attlist, salt-source?} + element password-encoder {password-encoder.attlist, salt-source?} password-encoder.attlist &= ref | (hash? & base64?) - + salt-source = ## Password salting strategy. A system-wide constant or a property from the UserDetails object can be used. element salt-source {user-property | system-wide} user-property = - ## A property of the UserDetails object which will be used as salt by a password encoder. Typically something like "username" might be used. + ## A property of the UserDetails object which will be used as salt by a password encoder. Typically something like "username" might be used. attribute user-property {xsd:string} system-wide = - ## A single value that will be used as the salt for a password encoder. + ## A single value that will be used as the salt for a password encoder. attribute system-wide {xsd:string} - + boolean = "true" | "false" role-prefix = @@ -63,16 +63,16 @@ role-prefix = ldap-server = - ## Defines an LDAP server location or starts an embedded server. The url indicates the location of a remote server. If no url is given, an embedded server will be started, listening on the supplied port number. The port is optional and defaults to 33389. A Spring LDAP ContextSource bean will be registered for the server with the id supplied. + ## Defines an LDAP server location or starts an embedded server. The url indicates the location of a remote server. If no url is given, an embedded server will be started, listening on the supplied port number. The port is optional and defaults to 33389. A Spring LDAP ContextSource bean will be registered for the server with the id supplied. element ldap-server {ldap-server.attlist} ldap-server.attlist &= id? ldap-server.attlist &= (url | port)? ldap-server.attlist &= - ## Username (DN) of the "manager" user identity which will be used to authenticate to a (non-embedded) LDAP server. If omitted, anonymous access will be used. + ## Username (DN) of the "manager" user identity which will be used to authenticate to a (non-embedded) LDAP server. If omitted, anonymous access will be used. attribute manager-dn {xsd:string}? ldap-server.attlist &= ## The password for the manager DN. - attribute manager-password {xsd:string}? + attribute manager-password {xsd:string}? ldap-server.attlist &= ## Explicitly specifies an ldif file resource to load into an embedded LDAP server attribute ldif { xsd:string }? @@ -81,14 +81,14 @@ ldap-server.attlist &= attribute root { xsd:string }? ldap-server-ref-attribute = - ## The optional server to use. If omitted, and a default LDAP server is registered (using with no Id), that server will be used. + ## The optional server to use. If omitted, and a default LDAP server is registered (using with no Id), that server will be used. attribute server-ref {xsd:string} -group-search-filter-attribute = +group-search-filter-attribute = ## Group search filter. Defaults to (uniqueMember={0}). The substituted parameter is the DN of the user. attribute group-search-filter {xsd:string} -group-search-base-attribute = +group-search-base-attribute = ## Search base for group membership searches. Defaults to "" (searching from the root). attribute group-search-base {xsd:string} user-search-filter-attribute = @@ -100,14 +100,14 @@ user-search-base-attribute = group-role-attribute-attribute = ## The LDAP attribute name which contains the role name which will be used within Spring Security. Defaults to "cn". attribute group-role-attribute {xsd:string} -user-details-class-attribute = +user-details-class-attribute = ## Allows the objectClass of the user entry to be specified. If set, the framework will attempt to load standard attributes for the defined class into the returned UserDetails object attribute user-details-class {"person" | "inetOrgPerson"} ldap-user-service = element ldap-user-service {ldap-us.attlist} -ldap-us.attlist &= id? +ldap-us.attlist &= id? ldap-us.attlist &= ldap-server-ref-attribute? ldap-us.attlist &= @@ -138,7 +138,7 @@ ldap-ap.attlist &= user-search-filter-attribute? ldap-ap.attlist &= group-search-base-attribute? -ldap-ap.attlist &= +ldap-ap.attlist &= group-search-filter-attribute? ldap-ap.attlist &= group-role-attribute-attribute? @@ -153,7 +153,7 @@ ldap-ap.attlist &= password-compare-element = ## Specifies that an LDAP provider should use an LDAP compare operation of the user's password to authenticate the user element password-compare {password-compare.attlist, password-encoder?} - + password-compare.attlist &= ## The attribute in the directory which contains the user password. Defaults to "userPassword". attribute password-attribute {xsd:string}? @@ -181,7 +181,7 @@ protect.attlist &= global-method-security = ## Provides method security for all beans registered in the Spring application context. Specifically, beans will be scanned for Spring Security annotations and/or matches with the ordered list of "protect-pointcut" sub-elements. Where there is a match, the beans will automatically be proxied and security authorization applied to the methods accordingly. If you use and enable all three sources of method security metadata (ie "protect-pointcut" declarations, @Secured and also JSR 250 security annotations), the metadata sources will be queried in that order. In practical terms, this enables you to use XML to override method security metadata expressed by way of @Secured annotations, with @Secured annotations overriding method security metadata expressed by JSR 250 annotations. It is perfectly acceptable to mix and match, with a given Java type using a combination of XML, @Secured and JSR 250 to express method security metadata (albeit on different methods). - element global-method-security {global-method-security.attlist, protect-pointcut*} + element global-method-security {global-method-security.attlist, protect-pointcut*} global-method-security.attlist &= ## Specifies whether the use of Spring Security's @Secured annotations should be enabled for this application context. Please ensure you have the spring-security-tiger-xxx.jar on the classpath. Defaults to "disabled". attribute secured-annotations {"disabled" | "enabled" }? @@ -206,6 +206,9 @@ protect-pointcut.attlist &= ## Access configuration attributes list that applies to all methods matching the pointcut, e.g. "ROLE_A,ROLE_B" attribute access {xsd:string} +http-firewall = + ## Allows a custom instance of HttpFirewall to be injected into the FilterChainProxy created by the namespace. + element http-firewall {ref} http = ## Container element for HTTP security configuration @@ -265,16 +268,16 @@ intercept-url.attlist &= attribute requires-channel {"http" | "https" | "any"}? logout = - ## Incorporates a logout processing filter. Most web applications require a logout filter, although you may not require one if you write a controller to provider similar logic. + ## Incorporates a logout processing filter. Most web applications require a logout filter, although you may not require one if you write a controller to provider similar logic. element logout {logout.attlist, empty} logout.attlist &= - ## Specifies the URL that will cause a logout. Spring Security will initialize a filter that responds to this particular URL. Defaults to /j_spring_security_logout if unspecified. + ## Specifies the URL that will cause a logout. Spring Security will initialize a filter that responds to this particular URL. Defaults to /j_spring_security_logout if unspecified. attribute logout-url {xsd:string}? logout.attlist &= - ## Specifies the URL to display once the user has logged out. If not specified, defaults to /. + ## Specifies the URL to display once the user has logged out. If not specified, defaults to /. attribute logout-success-url {xsd:string}? logout.attlist &= - ## Specifies whether a logout also causes HttpSession invalidation, which is generally desirable. If unspecified, defaults to true. + ## Specifies whether a logout also causes HttpSession invalidation, which is generally desirable. If unspecified, defaults to true. attribute invalidate-session {boolean}? form-login = @@ -287,8 +290,8 @@ form-login.attlist &= ## The URL that will be redirected to after successful authentication, if the user's previous action could not be resumed. This generally happens if the user visits a login page without having first requested a secured operation that triggers authentication. If unspecified, defaults to the root of the application. attribute default-target-url {xsd:string}? form-login.attlist &= - ## Whether the user should always be redirected to the default-target-url after login. - attribute always-use-default-target {boolean}? + ## Whether the user should always be redirected to the default-target-url after login. + attribute always-use-default-target {boolean}? form-login.attlist &= ## The URL for the login page. If no login URL is specified, Spring Security will automatically create a login URL at /spring_security_login and a corresponding filter to render that login URL when requested. attribute login-page {xsd:string}? @@ -296,7 +299,7 @@ form-login.attlist &= ## The URL for the login failure page. If no login failure URL is specified, Spring Security will automatically create a failure login URL at /spring_security_login?login_error and a corresponding filter to render that login failure URL when requested. attribute authentication-failure-url {xsd:string}? -openid-login = +openid-login = ## Sets up form login for authentication with an Open ID identity element openid-login {form-login.attlist, user-service-ref?, empty} @@ -316,7 +319,7 @@ filter-chain.attlist &= attribute filters {xsd:string} filter-invocation-definition-source = - ## Used to explicitly configure a FilterInvocationDefinitionSource bean for use with a FilterSecurityInterceptor. Usually only needed if you are configuring a FilterChainProxy explicitly, rather than using the element. The intercept-url elements used should only contain pattern, method and access attributes. Any others will result in a configuration error. + ## Used to explicitly configure a FilterInvocationDefinitionSource bean for use with a FilterSecurityInterceptor. Usually only needed if you are configuring a FilterChainProxy explicitly, rather than using the element. The intercept-url elements used should only contain pattern, method and access attributes. Any others will result in a configuration error. element filter-invocation-definition-source {fids.attlist, intercept-url+} fids.attlist &= id? @@ -348,34 +351,34 @@ concurrent-sessions.attlist &= ## Allows you to define an alias for the SessionRegistry bean in order to access it in your own configuration attribute session-registry-alias {xsd:string}? concurrent-sessions.attlist &= - ## A reference to an external SessionRegistry implementation which will be used in place of the standard one. + ## A reference to an external SessionRegistry implementation which will be used in place of the standard one. attribute session-registry-ref {xsd:string}? remember-me = - ## Sets up remember-me authentication. If used with the "key" attribute (or no attributes) the cookie-only implementation will be used. Specifying "token-repository-ref" or "remember-me-data-source-ref" will use the more secure, persisten token approach. + ## Sets up remember-me authentication. If used with the "key" attribute (or no attributes) the cookie-only implementation will be used. Specifying "token-repository-ref" or "remember-me-data-source-ref" will use the more secure, persisten token approach. element remember-me {remember-me.attlist} remember-me.attlist &= ## The "key" used to identify cookies from a specific token-based remember-me application. You should set this to a unique value for your application. attribute key {xsd:string}? - + remember-me.attlist &= (token-repository-ref | remember-me-data-source-ref | remember-me-services-ref) remember-me.attlist &= user-service-ref? - + remember-me.attlist &= - ## The period (in seconds) for which the remember-me cookie should be valid. + ## The period (in seconds) for which the remember-me cookie should be valid. attribute token-validity-seconds {xsd:positiveInteger}? - + token-repository-ref = - ## Reference to a PersistentTokenRepository bean for use with the persistent token remember-me implementation. + ## Reference to a PersistentTokenRepository bean for use with the persistent token remember-me implementation. attribute token-repository-ref {xsd:string} -remember-me-services-ref = - ## Allows a custom implementation of RememberMeServices to be used. Note that this implementation should return RememberMeAuthenticationToken instances with the same "key" value as specified in the remember-me element. Alternatively it should register its own AuthenticationProvider. +remember-me-services-ref = + ## Allows a custom implementation of RememberMeServices to be used. Note that this implementation should return RememberMeAuthenticationToken instances with the same "key" value as specified in the remember-me element. Alternatively it should register its own AuthenticationProvider. attribute services-ref {xsd:string}? remember-me-data-source-ref = - ## DataSource bean for the database that contains the token repository schema. + ## DataSource bean for the database that contains the token repository schema. data-source-ref anonymous = @@ -384,39 +387,39 @@ anonymous = anonymous.attlist &= ## The key shared between the provider and filter. This generally does not need to be set. If unset, it will default to "doesNotMatter". attribute key {xsd:string}? -anonymous.attlist &= +anonymous.attlist &= ## The username that should be assigned to the anonymous request. This allows the principal to be identified, which may be important for logging and auditing. if unset, defaults to "anonymousUser". attribute username {xsd:string}? anonymous.attlist &= ## The granted authority that should be assigned to the anonymous request. Commonly this is used to assign the anonymous request particular roles, which can subsequently be used in authorization decisions. If unset, defaults to "ROLE_ANONYMOUS". attribute granted-authority {xsd:string}? -port-mappings = +port-mappings = ## Defines the list of mappings between http and https ports for use in redirects element port-mappings {port-mappings.attlist, port-mapping+} port-mappings.attlist &= empty -port-mapping = +port-mapping = element port-mapping {http-port, https-port} - + http-port = attribute http {xsd:string} https-port = attribute https {xsd:string} -x509 = +x509 = ## Adds support for X.509 client authentication. element x509 {x509.attlist} -x509.attlist &= +x509.attlist &= ## The regular expression used to obtain the username from the certificate's subject. Defaults to matching on the common name using the pattern "CN=(.*?),". attribute subject-principal-regex {xsd:string}? x509.attlist &= - ## Explicitly specifies which user-service should be used to load user data for X.509 authenticated clients. If ommitted, the default user-service will be used. + ## Explicitly specifies which user-service should be used to load user data for X.509 authenticated clients. If ommitted, the default user-service will be used. user-service-ref? authentication-manager = - ## If you are using namespace configuration with Spring Security, an AuthenticationManager will automatically be registered. This element allows you to define an alias to allow you to reference the authentication-manager in your own beans. + ## If you are using namespace configuration with Spring Security, an AuthenticationManager will automatically be registered. This element allows you to define an alias to allow you to reference the authentication-manager in your own beans. element authentication-manager {authman.attlist} authman.attlist &= ## The alias you wish to use for the AuthenticationManager bean @@ -427,10 +430,10 @@ authman.attlist &= authentication-provider = - ## Indicates that the contained user-service should be used as an authentication source. + ## Indicates that the contained user-service should be used as an authentication source. element authentication-provider {ap.attlist & any-user-service & password-encoder?} ap.attlist &= - ## Specifies a reference to a separately configured UserDetailsService from which to obtain authentication data. + ## Specifies a reference to a separately configured UserDetailsService from which to obtain authentication data. user-service-ref? custom-authentication-provider = @@ -443,31 +446,31 @@ user-service = element user-service {id? & (properties-file | (user*))} properties-file = attribute properties {xsd:string}? - + user = - ## Represents a user in the application. + ## Represents a user in the application. element user {user.attlist, empty} user.attlist &= - ## The username assigned to the user. + ## The username assigned to the user. attribute name {xsd:string} user.attlist &= - ## The password assigned to the user. This may be hashed if the corresponding authentication provider supports hashing (remember to set the "hash" attribute of the "user-service" element). + ## The password assigned to the user. This may be hashed if the corresponding authentication provider supports hashing (remember to set the "hash" attribute of the "user-service" element). attribute password {xsd:string} user.attlist &= - ## One of more authorities granted to the user. Separate authorities with a comma (but no space). For example, "ROLE_USER,ROLE_ADMINISTRATOR" + ## One of more authorities granted to the user. Separate authorities with a comma (but no space). For example, "ROLE_USER,ROLE_ADMINISTRATOR" attribute authorities {xsd:string} user.attlist &= - ## Can be set to "true" to mark an account as locked and unusable. + ## Can be set to "true" to mark an account as locked and unusable. attribute locked {boolean}? user.attlist &= - ## Can be set to "true" to mark an account as disabled and unusable. + ## Can be set to "true" to mark an account as disabled and unusable. attribute disabled {boolean}? jdbc-user-service = - ## Causes creation of a JDBC-based UserDetailsService. - element jdbc-user-service {id? & jdbc-user-service.attlist} + ## Causes creation of a JDBC-based UserDetailsService. + element jdbc-user-service {id? & jdbc-user-service.attlist} jdbc-user-service.attlist &= - ## The bean ID of the DataSource which provides the required tables. + ## The bean ID of the DataSource which provides the required tables. attribute data-source-ref {xsd:string} jdbc-user-service.attlist &= cache-ref? @@ -482,15 +485,15 @@ jdbc-user-service.attlist &= attribute group-authorities-by-username-query {xsd:string}? jdbc-user-service.attlist &= role-prefix? - + any-user-service = user-service | jdbc-user-service | ldap-user-service - + custom-filter = - ## Used to indicate that a filter bean declaration should be incorporated into the security filter chain. If neither the 'after' or 'before' options are supplied, then the filter must implement the Ordered interface directly. + ## Used to indicate that a filter bean declaration should be incorporated into the security filter chain. If neither the 'after' or 'before' options are supplied, then the filter must implement the Ordered interface directly. element custom-filter {after | before | position}? after = - ## The filter immediately after which the custom-filter should be placed in the chain. This feature will only be needed by advanced users who wish to mix their own filters into the security filter chain and have some knowledge of the standard Spring Security filters. The filter names map to specific Spring Security implementation filters. + ## The filter immediately after which the custom-filter should be placed in the chain. This feature will only be needed by advanced users who wish to mix their own filters into the security filter chain and have some knowledge of the standard Spring Security filters. The filter names map to specific Spring Security implementation filters. attribute after {named-security-filter} before = ## The filter immediately before which the custom-filter should be placed in the chain @@ -502,5 +505,3 @@ position = named-security-filter = "FIRST" | "CHANNEL_FILTER" | "CONCURRENT_SESSION_FILTER" | "SESSION_CONTEXT_INTEGRATION_FILTER" | "LOGOUT_FILTER" | "X509_FILTER" | "PRE_AUTH_FILTER" | "CAS_PROCESSING_FILTER" | "AUTHENTICATION_PROCESSING_FILTER" | "OPENID_PROCESSING_FILTER" |"BASIC_PROCESSING_FILTER" | "SERVLET_API_SUPPORT_FILTER" | "REMEMBER_ME_FILTER" | "ANONYMOUS_FILTER" | "EXCEPTION_TRANSLATION_FILTER" | "NTLM_FILTER" | "FILTER_SECURITY_INTERCEPTOR" | "SWITCH_USER_FILTER" | "LAST" - - diff --git a/core/src/main/resources/org/springframework/security/config/spring-security-2.0.6.xsd b/core/src/main/resources/org/springframework/security/config/spring-security-2.0.6.xsd new file mode 100644 index 0000000000..3c4567ffaa --- /dev/null +++ b/core/src/main/resources/org/springframework/security/config/spring-security-2.0.6.xsd @@ -0,0 +1,1147 @@ + + + + + + Defines the hashing algorithm used on user passwords. We recommend strongly against using MD4, as it is a very weak hashing algorithm. + + + + + + + + + + + + + + + + + + Whether a string should be base64 encoded + + + + + + + + + + + + + Defines the type of pattern used to specify URL paths (either JDK 1.4-compatible regular expressions, or Apache Ant expressions). Defaults to "ant" if unspecified. + + + + + + + + + + + + + Specifies an IP port number. Used to configure an embedded LDAP server, for example. + + + + + + + Specifies a URL. + + + + + + + A bean identifier, used for referring to the bean elsewhere in the context. + + + + + + + Defines a reference to a Spring bean Id. + + + + + + + Defines a reference to a cache for use with a UserDetailsService. + + + + + + + A reference to a user-service (or UserDetailsService bean) Id + + + + + + + A reference to a DataSource bean + + + + + + + + Defines a reference to a Spring bean Id. + + + + + Defines the hashing algorithm used on user passwords. We recommend strongly against using MD4, as it is a very weak hashing algorithm. + + + + + + + + + + + + + + + + Whether a string should be base64 encoded + + + + + + + + + + + + + + A property of the UserDetails object which will be used as salt by a password encoder. Typically something like "username" might be used. + + + + + + + A single value that will be used as the salt for a password encoder. + + + + + + + + + + + + + A non-empty string prefix that will be added to role strings loaded from persistent storage (e.g. "ROLE_"). Use the value "none" for no prefix in cases where the default is non-empty. + + + + + Defines an LDAP server location or starts an embedded server. The url indicates the location of a remote server. If no url is given, an embedded server will be started, listening on the supplied port number. The port is optional and defaults to 33389. A Spring LDAP ContextSource bean will be registered for the server with the id supplied. + + + + + + + A bean identifier, used for referring to the bean elsewhere in the context. + + + + + Specifies a URL. + + + + + Specifies an IP port number. Used to configure an embedded LDAP server, for example. + + + + + Username (DN) of the "manager" user identity which will be used to authenticate to a (non-embedded) LDAP server. If omitted, anonymous access will be used. + + + + + The password for the manager DN. + + + + + Explicitly specifies an ldif file resource to load into an embedded LDAP server + + + + + Optional root suffix for the embedded LDAP server. Default is "dc=springframework,dc=org" + + + + + + + The optional server to use. If omitted, and a default LDAP server is registered (using <ldap-server> with no Id), that server will be used. + + + + + + + Group search filter. Defaults to (uniqueMember={0}). The substituted parameter is the DN of the user. + + + + + + + Search base for group membership searches. Defaults to "" (searching from the root). + + + + + + + The LDAP filter used to search for users (optional). For example "(uid={0})". The substituted parameter is the user's login name. + + + + + + + Search base for user searches. Defaults to "". Only used with a 'user-search-filter'. + + + + + + + The LDAP attribute name which contains the role name which will be used within Spring Security. Defaults to "cn". + + + + + + + Allows the objectClass of the user entry to be specified. If set, the framework will attempt to load standard attributes for the defined class into the returned UserDetails object + + + + + + + + + + + + + + + + A bean identifier, used for referring to the bean elsewhere in the context. + + + + + The optional server to use. If omitted, and a default LDAP server is registered (using <ldap-server> with no Id), that server will be used. + + + + + The LDAP filter used to search for users (optional). For example "(uid={0})". The substituted parameter is the user's login name. + + + + + Search base for user searches. Defaults to "". Only used with a 'user-search-filter'. + + + + + Group search filter. Defaults to (uniqueMember={0}). The substituted parameter is the DN of the user. + + + + + Search base for group membership searches. Defaults to "" (searching from the root). + + + + + The LDAP attribute name which contains the role name which will be used within Spring Security. Defaults to "cn". + + + + + Defines a reference to a cache for use with a UserDetailsService. + + + + + A non-empty string prefix that will be added to role strings loaded from persistent storage (e.g. "ROLE_"). Use the value "none" for no prefix in cases where the default is non-empty. + + + + + Allows the objectClass of the user entry to be specified. If set, the framework will attempt to load standard attributes for the defined class into the returned UserDetails object + + + + + + + + + + + Sets up an ldap authentication provider + + + + Specifies that an LDAP provider should use an LDAP compare operation of the user's password to authenticate the user + + + + element which defines a password encoding strategy. Used by an authentication provider to convert submitted passwords to hashed versions, for example. + + + + Password salting strategy. A system-wide constant or a property from the UserDetails object can be used. + + + + A property of the UserDetails object which will be used as salt by a password encoder. Typically something like "username" might be used. + + + + + A single value that will be used as the salt for a password encoder. + + + + + + + + + + + + + + + + The optional server to use. If omitted, and a default LDAP server is registered (using <ldap-server> with no Id), that server will be used. + + + + + Search base for user searches. Defaults to "". Only used with a 'user-search-filter'. + + + + + The LDAP filter used to search for users (optional). For example "(uid={0})". The substituted parameter is the user's login name. + + + + + Search base for group membership searches. Defaults to "" (searching from the root). + + + + + Group search filter. Defaults to (uniqueMember={0}). The substituted parameter is the DN of the user. + + + + + The LDAP attribute name which contains the role name which will be used within Spring Security. Defaults to "cn". + + + + + A specific pattern used to build the user's DN, for example "uid={0},ou=people". The key "{0}" must be present and will be substituted with the username. + + + + + A non-empty string prefix that will be added to role strings loaded from persistent storage (e.g. "ROLE_"). Use the value "none" for no prefix in cases where the default is non-empty. + + + + + Allows the objectClass of the user entry to be specified. If set, the framework will attempt to load standard attributes for the defined class into the returned UserDetails object + + + + + + + + + + + + + + The attribute in the directory which contains the user password. Defaults to "userPassword". + + + + + Defines the hashing algorithm used on user passwords. We recommend strongly against using MD4, as it is a very weak hashing algorithm. + + + + + + + + + + + + + + + + Can be used inside a bean definition to add a security interceptor to the bean and set up access configuration attributes for the bean's methods + + + + Defines a protected method and the access control configuration attributes that apply to it. We strongly advise you NOT to mix "protect" declarations with any services provided "global-method-security". + + + + + + + + + + Optional AccessDecisionManager bean ID to be used by the created method security interceptor. + + + + + + + + A method name + + + + + Access configuration attributes list that applies to the method, e.g. "ROLE_A,ROLE_B". + + + + + Provides method security for all beans registered in the Spring application context. Specifically, beans will be scanned for Spring Security annotations and/or matches with the ordered list of "protect-pointcut" sub-elements. Where there is a match, the beans will automatically be proxied and security authorization applied to the methods accordingly. If you use and enable all three sources of method security metadata (ie "protect-pointcut" declarations, @Secured and also JSR 250 security annotations), the metadata sources will be queried in that order. In practical terms, this enables you to use XML to override method security metadata expressed by way of @Secured annotations, with @Secured annotations overriding method security metadata expressed by JSR 250 annotations. It is perfectly acceptable to mix and match, with a given Java type using a combination of XML, @Secured and JSR 250 to express method security metadata (albeit on different methods). + + + + Defines a protected pointcut and the access control configuration attributes that apply to it. Every bean registered in the Spring application context that provides a method that matches the pointcut will receive security authorization. + + + + + + + + + + Specifies whether the use of Spring Security's @Secured annotations should be enabled for this application context. Please ensure you have the spring-security-tiger-xxx.jar on the classpath. Defaults to "disabled". + + + + + + + + + + + Specifies whether JSR-250 style attributes are to be used (for example "RolesAllowed"). This will require the javax.annotation.security classes on the classpath. Defaults to "disabled". + + + + + + + + + + + Optional AccessDecisionManager bean ID to override the default used for method security. + + + + + Used to decorate an AfterInvocationProvider to specify that it should be used with method security. + + + + + + An AspectJ expression, including the 'execution' keyword. For example, 'execution(int com.foo.TargetObject.countLength(String))' (without the quotes). + + + + + Access configuration attributes list that applies to all methods matching the pointcut, e.g. "ROLE_A,ROLE_B" + + + + + Allows a custom instance of HttpFirewall to be injected into the FilterChainProxy created by the namespace. + + + + + Container element for HTTP security configuration + + + + Specifies the access attributes and/or filter list for a particular set of URLs. + + + + + Sets up a form login configuration for authentication with a username and password + + + + + + Adds support for X.509 client authentication. + + + + + Adds support for basic authentication (this is an element to permit future expansion, such as supporting an "ignoreFailure" attribute) + + + Incorporates a logout processing filter. Most web applications require a logout filter, although you may not require one if you write a controller to provider similar logic. + + + + + Adds support for concurrent session control, allowing limits to be placed on the number of sessions a user can have. + + + + + Sets up remember-me authentication. If used with the "key" attribute (or no attributes) the cookie-only implementation will be used. Specifying "token-repository-ref" or "remember-me-data-source-ref" will use the more secure, persisten token approach. + + + + + Adds support for automatically granting all anonymous web requests a particular principal identity and a corresponding granted authority. + + + + + Defines the list of mappings between http and https ports for use in redirects + + + + + + + + + + + + Automatically registers a login form, BASIC authentication, anonymous authentication, logout services, remember-me and servlet-api-integration. If set to "true", all of these capabilities are added (although you can still customize the configuration of each by providing the respective element). If unspecified, defaults to "false". + + + + + Controls the eagerness with which an HTTP session is created. If not set, defaults to "ifRequired". + + + + + + + + + + + + Defines the type of pattern used to specify URL paths (either JDK 1.4-compatible regular expressions, or Apache Ant expressions). Defaults to "ant" if unspecified. + + + + + + + + + + + Whether test URLs should be converted to lower case prior to comparing with defined path patterns. If unspecified, defaults to "true". + + + + + Provides versions of HttpServletRequest security methods such as isUserInRole() and getPrincipal() which are implemented by accessing the Spring SecurityContext. Defaults to "true". + + + + + Optional attribute specifying the ID of the AccessDecisionManager implementation which should be used for authorizing HTTP requests. + + + + + Optional attribute specifying the realm name that will be used for all authentication features that require a realm name (eg BASIC and Digest authentication). If unspecified, defaults to "Spring Security Application". + + + + + Indicates whether an existing session should be invalidated when a user authenticates and a new session started. If set to "none" no change will be made. "newSession" will create a new empty session. "migrateSession" will create a new session and copy the session attributes to the new session. Defaults to "migrateSession". + + + + + + + + + + + + Allows a customized AuthenticationEntryPoint to be used. + + + + + Corresponds to the observeOncePerRequest property of FilterSecurityInterceptor. Defaults to "true" + + + + + Allows the access denied page to be set (the user will be redirected here if an AccessDeniedException is raised). + + + + + + + + The pattern which defines the URL path. The content will depend on the type set in the containing http element, so will default to ant path syntax. + + + + + The access configuration attributes that apply for the configured path. + + + + + The HTTP Method for which the access configuration attributes should apply. If not specified, the attributes will apply to any method. + + + + + + + + + + + + + + + + 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 filters created by the namespace configuration, and any added using 'custom-filter'), will be applied to any other paths. + + + + + + + + + + Used to specify that a URL must be accessed over http or https, or that there is no preference. + + + + + + + + + + + + + + + Specifies the URL that will cause a logout. Spring Security will initialize a filter that responds to this particular URL. Defaults to /j_spring_security_logout if unspecified. + + + + + Specifies the URL to display once the user has logged out. If not specified, defaults to /. + + + + + Specifies whether a logout also causes HttpSession invalidation, which is generally desirable. If unspecified, defaults to true. + + + + + + + + The URL that the login form is posted to. If unspecified, it defaults to /j_spring_security_check. + + + + + The URL that will be redirected to after successful authentication, if the user's previous action could not be resumed. This generally happens if the user visits a login page without having first requested a secured operation that triggers authentication. If unspecified, defaults to the root of the application. + + + + + Whether the user should always be redirected to the default-target-url after login. + + + + + The URL for the login page. If no login URL is specified, Spring Security will automatically create a login URL at /spring_security_login and a corresponding filter to render that login URL when requested. + + + + + The URL for the login failure page. If no login failure URL is specified, Spring Security will automatically create a failure login URL at /spring_security_login?login_error and a corresponding filter to render that login failure URL when requested. + + + + + Sets up form login for authentication with an Open ID identity + + + + + A reference to a user-service (or UserDetailsService bean) Id + + + + + Used to explicitly configure a FilterChainProxy instance with a FilterChainMap + + + + Used within filter-chain-map to define a specific URL pattern and the list of filters which apply to the URLs matching that pattern. When multiple filter-chain elements are used within a filter-chain-map element, the most specific patterns must be placed at the top of the list, with most general ones at the bottom. + + + + + + + + + + + + + + + + Used to explicitly configure a FilterInvocationDefinitionSource bean for use with a FilterSecurityInterceptor. Usually only needed if you are configuring a FilterChainProxy explicitly, rather than using the <http> element. The intercept-url elements used should only contain pattern, method and access attributes. Any others will result in a configuration error. + + + + Specifies the access attributes and/or filter list for a particular set of URLs. + + + + + + + + + + A bean identifier, used for referring to the bean elsewhere in the context. + + + + + as for http element + + + + + Defines the type of pattern used to specify URL paths (either JDK 1.4-compatible regular expressions, or Apache Ant expressions). Defaults to "ant" if unspecified. + + + + + + + + + + + + + + + The maximum number of sessions a single user can have open at the same time. Defaults to "1". + + + + + The URL a user will be redirected to if they attempt to use a session which has been "expired" by the concurrent session controller because they have logged in again. + + + + + Specifies that an exception should be raised when a user attempts to login when they already have the maximum configured sessions open. The default behaviour is to expire the original session. + + + + + Allows you to define an alias for the SessionRegistry bean in order to access it in your own configuration + + + + + A reference to an external SessionRegistry implementation which will be used in place of the standard one. + + + + + + + + The "key" used to identify cookies from a specific token-based remember-me application. You should set this to a unique value for your application. + + + + + Reference to a PersistentTokenRepository bean for use with the persistent token remember-me implementation. + + + + + A reference to a DataSource bean + + + + + + A reference to a user-service (or UserDetailsService bean) Id + + + + + The period (in seconds) for which the remember-me cookie should be valid. + + + + + + + Reference to a PersistentTokenRepository bean for use with the persistent token remember-me implementation. + + + + + + + Allows a custom implementation of RememberMeServices to be used. Note that this implementation should return RememberMeAuthenticationToken instances with the same "key" value as specified in the remember-me element. Alternatively it should register its own AuthenticationProvider. + + + + + + + + + + + The key shared between the provider and filter. This generally does not need to be set. If unset, it will default to "doesNotMatter". + + + + + The username that should be assigned to the anonymous request. This allows the principal to be identified, which may be important for logging and auditing. if unset, defaults to "anonymousUser". + + + + + The granted authority that should be assigned to the anonymous request. Commonly this is used to assign the anonymous request particular roles, which can subsequently be used in authorization decisions. If unset, defaults to "ROLE_ANONYMOUS". + + + + + + + + + + + + + + + + + + + The regular expression used to obtain the username from the certificate's subject. Defaults to matching on the common name using the pattern "CN=(.*?),". + + + + + A reference to a user-service (or UserDetailsService bean) Id + + + + + If you are using namespace configuration with Spring Security, an AuthenticationManager will automatically be registered. This element allows you to define an alias to allow you to reference the authentication-manager in your own beans. + + + + + + + The alias you wish to use for the AuthenticationManager bean + + + + + Allows the session controller to be set on the internal AuthenticationManager. This should not be used with the <concurrent-session-control /> element + + + + + Indicates that the contained user-service should be used as an authentication source. + + + + + element which defines a password encoding strategy. Used by an authentication provider to convert submitted passwords to hashed versions, for example. + + + + Password salting strategy. A system-wide constant or a property from the UserDetails object can be used. + + + + A property of the UserDetails object which will be used as salt by a password encoder. Typically something like "username" might be used. + + + + + A single value that will be used as the salt for a password encoder. + + + + + + + + + + + + + A reference to a user-service (or UserDetailsService bean) Id + + + + + Element used to decorate an AuthenticationProvider bean to add it to the internal AuthenticationManager maintained by the namespace. + + + Creates an in-memory UserDetailsService from a properties file or a list of "user" child elements. + + + + + + + A bean identifier, used for referring to the bean elsewhere in the context. + + + + + + + + + Represents a user in the application. + + + + + + + The username assigned to the user. + + + + + The password assigned to the user. This may be hashed if the corresponding authentication provider supports hashing (remember to set the "hash" attribute of the "user-service" element). + + + + + One of more authorities granted to the user. Separate authorities with a comma (but no space). For example, "ROLE_USER,ROLE_ADMINISTRATOR" + + + + + Can be set to "true" to mark an account as locked and unusable. + + + + + Can be set to "true" to mark an account as disabled and unusable. + + + + + Causes creation of a JDBC-based UserDetailsService. + + + + A bean identifier, used for referring to the bean elsewhere in the context. + + + + + + + + The bean ID of the DataSource which provides the required tables. + + + + + Defines a reference to a cache for use with a UserDetailsService. + + + + + An SQL statement to query a username, password, and enabled status given a username + + + + + An SQL statement to query for a user's granted authorities given a username. + + + + + An SQL statement to query user's group authorities given a username. + + + + + A non-empty string prefix that will be added to role strings loaded from persistent storage (e.g. "ROLE_"). Use the value "none" for no prefix in cases where the default is non-empty. + + + + + + + + + + + Used to indicate that a filter bean declaration should be incorporated into the security filter chain. If neither the 'after' or 'before' options are supplied, then the filter must implement the Ordered interface directly. + + + + The filter immediately after which the custom-filter should be placed in the chain. This feature will only be needed by advanced users who wish to mix their own filters into the security filter chain and have some knowledge of the standard Spring Security filters. The filter names map to specific Spring Security implementation filters. + + + + + The filter immediately before which the custom-filter should be placed in the chain + + + + + The explicit position at which the custom-filter should be placed in the chain. Use if you are replacing a standard filter. + + + + + + + The filter immediately after which the custom-filter should be placed in the chain. This feature will only be needed by advanced users who wish to mix their own filters into the security filter chain and have some knowledge of the standard Spring Security filters. The filter names map to specific Spring Security implementation filters. + + + + + + + The filter immediately before which the custom-filter should be placed in the chain + + + + + + + The explicit position at which the custom-filter should be placed in the chain. Use if you are replacing a standard filter. + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/core/src/test/java/org/springframework/security/config/HttpSecurityBeanDefinitionParserTests.java b/core/src/test/java/org/springframework/security/config/HttpSecurityBeanDefinitionParserTests.java index cf08193a25..98d150d6e1 100644 --- a/core/src/test/java/org/springframework/security/config/HttpSecurityBeanDefinitionParserTests.java +++ b/core/src/test/java/org/springframework/security/config/HttpSecurityBeanDefinitionParserTests.java @@ -24,6 +24,7 @@ import org.springframework.security.concurrent.ConcurrentLoginException; import org.springframework.security.concurrent.ConcurrentSessionControllerImpl; import org.springframework.security.concurrent.ConcurrentSessionFilter; import org.springframework.security.context.HttpSessionContextIntegrationFilter; +import org.springframework.security.firewall.DefaultHttpFirewall; import org.springframework.security.intercept.web.FilterInvocation; import org.springframework.security.intercept.web.FilterInvocationDefinitionSource; import org.springframework.security.intercept.web.FilterSecurityInterceptor; @@ -661,6 +662,19 @@ public class HttpSecurityBeanDefinitionParserTests { assertTrue(attrDef.contains(new SecurityConfig("ROLE_B"))); } + @Test + public void httpFirewallInjectionIsSupported() throws Exception { + setContext( + "" + + "" + + " " + + "" + + "" + + AUTH_PROVIDER_XML); + FilterChainProxy fcp = (FilterChainProxy) appContext.getBean(BeanIds.FILTER_CHAIN_PROXY); + assertSame(appContext.getBean("fw"), FieldUtils.getFieldValue(fcp, "firewall")); + } + private void setContext(String context) { appContext = new InMemoryXmlApplicationContext(context); }