SEC-1118: Added run-as-manager-ref attribute to global-method-security element. Also updated schema to use xsd:token in place of xsd:string where appropriate.

This commit is contained in:
Luke Taylor 2009-05-01 05:16:19 +00:00
parent 459a3095c4
commit 8c94e39150
7 changed files with 233 additions and 169 deletions

View File

@ -62,6 +62,7 @@ class GlobalMethodSecurityBeanDefinitionParser implements BeanDefinitionParser {
private static final String ATT_ACCESS = "access"; private static final String ATT_ACCESS = "access";
private static final String ATT_EXPRESSION = "expression"; private static final String ATT_EXPRESSION = "expression";
private static final String ATT_ACCESS_MGR = "access-decision-manager-ref"; private static final String ATT_ACCESS_MGR = "access-decision-manager-ref";
private static final String ATT_RUN_AS_MGR = "run-as-manager-ref";
private static final String ATT_USE_JSR250 = "jsr250-annotations"; private static final String ATT_USE_JSR250 = "jsr250-annotations";
private static final String ATT_USE_SECURED = "secured-annotations"; private static final String ATT_USE_SECURED = "secured-annotations";
private static final String ATT_USE_EXPRESSIONS = "expression-annotations"; private static final String ATT_USE_EXPRESSIONS = "expression-annotations";
@ -132,7 +133,9 @@ class GlobalMethodSecurityBeanDefinitionParser implements BeanDefinitionParser {
accessManagerId = ACCESS_MANAGER_ID; accessManagerId = ACCESS_MANAGER_ID;
} }
registerMethodSecurityInterceptor(parserContext, accessManagerId, source); String runAsManagerId = element.getAttribute(ATT_RUN_AS_MGR);
registerMethodSecurityInterceptor(parserContext, accessManagerId, runAsManagerId, source);
registerAdvisor(parserContext, source); registerAdvisor(parserContext, source);
@ -217,18 +220,23 @@ class GlobalMethodSecurityBeanDefinitionParser implements BeanDefinitionParser {
return pointcutMap; return pointcutMap;
} }
private void registerMethodSecurityInterceptor(ParserContext parserContext, String accessManagerId, Object source) { private void registerMethodSecurityInterceptor(ParserContext pc, String accessManagerId, String runAsManagerId, Object source) {
RootBeanDefinition interceptor = new RootBeanDefinition(MethodSecurityInterceptor.class); BeanDefinitionBuilder bldr = BeanDefinitionBuilder.rootBeanDefinition(MethodSecurityInterceptor.class);
interceptor.setRole(BeanDefinition.ROLE_INFRASTRUCTURE); bldr.setRole(BeanDefinition.ROLE_INFRASTRUCTURE);
interceptor.setSource(source); bldr.getRawBeanDefinition().setSource(source);
interceptor.getPropertyValues().addPropertyValue("accessDecisionManager", new RuntimeBeanReference(accessManagerId)); bldr.addPropertyReference("accessDecisionManager", accessManagerId);
interceptor.getPropertyValues().addPropertyValue("authenticationManager", new RuntimeBeanReference(BeanIds.AUTHENTICATION_MANAGER)); bldr.addPropertyReference("authenticationManager", BeanIds.AUTHENTICATION_MANAGER);
interceptor.getPropertyValues().addPropertyValue("securityMetadataSource", new RuntimeBeanReference(DELEGATING_METHOD_DEFINITION_SOURCE_ID)); bldr.addPropertyReference("securityMetadataSource", DELEGATING_METHOD_DEFINITION_SOURCE_ID);
parserContext.getRegistry().registerBeanDefinition(SECURITY_INTERCEPTOR_ID, interceptor); if (StringUtils.hasText(runAsManagerId)) {
parserContext.registerComponent(new BeanComponentDefinition(interceptor, SECURITY_INTERCEPTOR_ID)); bldr.addPropertyReference("runAsManager", runAsManagerId);
}
parserContext.getRegistry().registerBeanDefinition(INTERCEPTOR_POST_PROCESSOR_ID, BeanDefinition interceptor = bldr.getBeanDefinition();
pc.getRegistry().registerBeanDefinition(SECURITY_INTERCEPTOR_ID, interceptor);
pc.registerComponent(new BeanComponentDefinition(interceptor, SECURITY_INTERCEPTOR_ID));
pc.getRegistry().registerBeanDefinition(INTERCEPTOR_POST_PROCESSOR_ID,
new RootBeanDefinition(MethodSecurityInterceptorPostProcessor.class)); new RootBeanDefinition(MethodSecurityInterceptorPostProcessor.class));
} }

View File

@ -19,25 +19,25 @@ port =
attribute port { xsd:positiveInteger } attribute port { xsd:positiveInteger }
url = url =
## Specifies a URL. ## Specifies a URL.
attribute url { xsd:string } attribute url { xsd:token }
id = id =
## A bean identifier, used for referring to the bean elsewhere in the context. ## A bean identifier, used for referring to the bean elsewhere in the context.
attribute id {xsd:ID} attribute id {xsd:ID}
ref = ref =
## Defines a reference to a Spring bean Id. ## Defines a reference to a Spring bean Id.
attribute ref {xsd:string} attribute ref {xsd:token}
cache-ref = cache-ref =
## Defines a reference to a cache for use with a UserDetailsService. ## Defines a reference to a cache for use with a UserDetailsService.
attribute cache-ref {xsd:string} attribute cache-ref {xsd:token}
user-service-ref = user-service-ref =
## A reference to a user-service (or UserDetailsService bean) Id ## A reference to a user-service (or UserDetailsService bean) Id
attribute user-service-ref {xsd:string} attribute user-service-ref {xsd:token}
data-source-ref = data-source-ref =
## A reference to a DataSource bean ## A reference to a DataSource bean
attribute data-source-ref {xsd:string} attribute data-source-ref {xsd:token}
password-encoder = password-encoder =
## element which defines a password encoding strategy. Used by an authentication provider to convert submitted passwords to hashed versions, for example. ## element which defines a password encoding strategy. Used by an authentication provider to convert submitted passwords to hashed versions, for example.
@ -50,16 +50,16 @@ salt-source =
element salt-source {user-property | system-wide | ref} element salt-source {user-property | system-wide | ref}
user-property = 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} attribute user-property {xsd:token}
system-wide = 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} attribute system-wide {xsd:token}
boolean = "true" | "false" boolean = "true" | "false"
role-prefix = role-prefix =
## 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. ## 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.
attribute role-prefix {xsd:string} attribute role-prefix {xsd:token}
use-expressions = use-expressions =
## Enables the use of expressions in the 'access' attributes in <intercept-url> elements rather than the traditional list of configuration attributes. Defaults to 'false'. If enabled, each attribute should contain a single boolean expression. If the expression evaluates to 'true', access will be granted. ## Enables the use of expressions in the 'access' attributes in <intercept-url> elements rather than the traditional list of configuration attributes. Defaults to 'false'. If enabled, each attribute should contain a single boolean expression. If the expression evaluates to 'true', access will be granted.
@ -85,24 +85,24 @@ ldap-server.attlist &=
ldap-server-ref-attribute = ldap-server-ref-attribute =
## 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 optional server to use. If omitted, and a default LDAP server is registered (using <ldap-server> with no Id), that server will be used.
attribute server-ref {xsd:string} attribute server-ref {xsd:token}
group-search-filter-attribute = group-search-filter-attribute =
## Group search filter. Defaults to (uniqueMember={0}). The substituted parameter is the DN of the user. ## Group search filter. Defaults to (uniqueMember={0}). The substituted parameter is the DN of the user.
attribute group-search-filter {xsd:string} attribute group-search-filter {xsd:token}
group-search-base-attribute = group-search-base-attribute =
## Search base for group membership searches. Defaults to "" (searching from the root). ## Search base for group membership searches. Defaults to "" (searching from the root).
attribute group-search-base {xsd:string} attribute group-search-base {xsd:token}
user-search-filter-attribute = user-search-filter-attribute =
## The LDAP filter used to search for users (optional). For example "(uid={0})". The substituted parameter is the user's login name. ## The LDAP filter used to search for users (optional). For example "(uid={0})". The substituted parameter is the user's login name.
attribute user-search-filter {xsd:string} attribute user-search-filter {xsd:token}
user-search-base-attribute = user-search-base-attribute =
## Search base for user searches. Defaults to "". Only used with a 'user-search-filter'. ## Search base for user searches. Defaults to "". Only used with a 'user-search-filter'.
attribute user-search-base {xsd:string} attribute user-search-base {xsd:token}
group-role-attribute-attribute = group-role-attribute-attribute =
## The LDAP attribute name which contains the role name which will be used within Spring Security. Defaults to "cn". ## 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} attribute group-role-attribute {xsd:token}
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 ## 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"} attribute user-details-class {"person" | "inetOrgPerson"}
@ -147,7 +147,7 @@ ldap-ap.attlist &=
group-role-attribute-attribute? group-role-attribute-attribute?
ldap-ap.attlist &= ldap-ap.attlist &=
## 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 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.
attribute user-dn-pattern {xsd:string}? attribute user-dn-pattern {xsd:token}?
ldap-ap.attlist &= ldap-ap.attlist &=
role-prefix? role-prefix?
ldap-ap.attlist &= ldap-ap.attlist &=
@ -159,7 +159,7 @@ password-compare-element =
password-compare.attlist &= password-compare.attlist &=
## The attribute in the directory which contains the user password. Defaults to "userPassword". ## The attribute in the directory which contains the user password. Defaults to "userPassword".
attribute password-attribute {xsd:string}? attribute password-attribute {xsd:token}?
password-compare.attlist &= password-compare.attlist &=
hash? hash?
@ -168,7 +168,7 @@ intercept-methods =
element intercept-methods {intercept-methods.attlist, protect+} element intercept-methods {intercept-methods.attlist, protect+}
intercept-methods.attlist &= intercept-methods.attlist &=
## Optional AccessDecisionManager bean ID to be used by the created method security interceptor. ## Optional AccessDecisionManager bean ID to be used by the created method security interceptor.
attribute access-decision-manager-ref {xsd:string}? attribute access-decision-manager-ref {xsd:token}?
protect = protect =
@ -176,10 +176,10 @@ protect =
element protect {protect.attlist, empty} element protect {protect.attlist, empty}
protect.attlist &= protect.attlist &=
## A method name ## A method name
attribute method {xsd:string} attribute method {xsd:token}
protect.attlist &= protect.attlist &=
## Access configuration attributes list that applies to the method, e.g. "ROLE_A,ROLE_B". ## Access configuration attributes list that applies to the method, e.g. "ROLE_A,ROLE_B".
attribute access {xsd:string} attribute access {xsd:token}
global-method-security = global-method-security =
@ -196,7 +196,10 @@ global-method-security.attlist &=
attribute jsr250-annotations {"disabled" | "enabled" }? attribute jsr250-annotations {"disabled" | "enabled" }?
global-method-security.attlist &= global-method-security.attlist &=
## Optional AccessDecisionManager bean ID to override the default used for method security. ## Optional AccessDecisionManager bean ID to override the default used for method security.
attribute access-decision-manager-ref {xsd:string}? attribute access-decision-manager-ref {xsd:token}?
global-method-security.attlist &=
## Optional RunAsmanager implementation which will be used by the configured MethodSecurityInterceptor
attribute run-as-manager-ref {xsd:token}?
expression-handler = expression-handler =
## Defines the SecurityExpressionHandler instance which will be used if expression-based access-control is enabled. A default implementation (with no ACL support) will be used if not supplied. ## Defines the SecurityExpressionHandler instance which will be used if expression-based access-control is enabled. A default implementation (with no ACL support) will be used if not supplied.
@ -214,7 +217,7 @@ protect-pointcut.attlist &=
attribute expression {xsd:string} attribute expression {xsd:string}
protect-pointcut.attlist &= protect-pointcut.attlist &=
## Access configuration attributes list that applies to all methods matching the pointcut, e.g. "ROLE_A,ROLE_B" ## Access configuration attributes list that applies to all methods matching the pointcut, e.g. "ROLE_A,ROLE_B"
attribute access {xsd:string} attribute access {xsd:token}
http = http =
@ -230,7 +233,7 @@ http.attlist &=
attribute create-session {"ifRequired" | "always" | "never" }? attribute create-session {"ifRequired" | "always" | "never" }?
http.attlist &= http.attlist &=
## A reference to a SecurityContextRepository bean. This can be used to customize how the SecurityContext is stored between requests. ## A reference to a SecurityContextRepository bean. This can be used to customize how the SecurityContext is stored between requests.
attribute security-context-repository-ref {xsd:string}? attribute security-context-repository-ref {xsd:token}?
http.attlist &= http.attlist &=
## The path format used to define the paths in child elements. ## The path format used to define the paths in child elements.
path-type? path-type?
@ -242,22 +245,22 @@ http.attlist &=
attribute servlet-api-provision {boolean}? attribute servlet-api-provision {boolean}?
http.attlist &= http.attlist &=
## Optional attribute specifying the ID of the AccessDecisionManager implementation which should be used for authorizing HTTP requests. ## Optional attribute specifying the ID of the AccessDecisionManager implementation which should be used for authorizing HTTP requests.
attribute access-decision-manager-ref {xsd:string}? attribute access-decision-manager-ref {xsd:token}?
http.attlist &= http.attlist &=
## 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". ## 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".
attribute realm {xsd:string}? attribute realm {xsd:token}?
http.attlist &= http.attlist &=
## 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". ## 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".
attribute session-fixation-protection {"none" | "newSession" | "migrateSession" }? attribute session-fixation-protection {"none" | "newSession" | "migrateSession" }?
http.attlist &= http.attlist &=
## Allows a customized AuthenticationEntryPoint to be used. ## Allows a customized AuthenticationEntryPoint to be used.
attribute entry-point-ref {xsd:string}? attribute entry-point-ref {xsd:token}?
http.attlist &= http.attlist &=
## Corresponds to the observeOncePerRequest property of FilterSecurityInterceptor. Defaults to "true" ## Corresponds to the observeOncePerRequest property of FilterSecurityInterceptor. Defaults to "true"
attribute once-per-request {boolean}? attribute once-per-request {boolean}?
http.attlist &= http.attlist &=
## Deprecated in favour of the access-denied-handler element. ## Deprecated in favour of the access-denied-handler element.
attribute access-denied-page {xsd:string}? attribute access-denied-page {xsd:token}?
http.attlist &= http.attlist &=
## ##
attribute disable-url-rewriting {boolean}? attribute disable-url-rewriting {boolean}?
@ -269,17 +272,17 @@ access-denied-handler.attlist &= (ref | access-denied-handler-page)
access-denied-handler-page = access-denied-handler-page =
## The access denied page that an authenticated user will be redirected to if they request a page which they don't have the authority to access. ## The access denied page that an authenticated user will be redirected to if they request a page which they don't have the authority to access.
attribute error-page {xsd:string} attribute error-page {xsd:token}
intercept-url = intercept-url =
## Specifies the access attributes and/or filter list for a particular set of URLs. ## Specifies the access attributes and/or filter list for a particular set of URLs.
element intercept-url {intercept-url.attlist, empty} element intercept-url {intercept-url.attlist, empty}
intercept-url.attlist &= intercept-url.attlist &=
## 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 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.
attribute pattern {xsd:string} attribute pattern {xsd:token}
intercept-url.attlist &= intercept-url.attlist &=
## The access configuration attributes that apply for the configured path. ## The access configuration attributes that apply for the configured path.
attribute access {xsd:string}? attribute access {xsd:token}?
intercept-url.attlist &= intercept-url.attlist &=
## The HTTP Method for which the access configuration attributes should apply. If not specified, the attributes will apply to any method. ## 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"}?
@ -296,10 +299,10 @@ logout =
element logout {logout.attlist, empty} element logout {logout.attlist, empty}
logout.attlist &= 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}? attribute logout-url {xsd:token}?
logout.attlist &= 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}? attribute logout-success-url {xsd:token}?
logout.attlist &= 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}? attribute invalidate-session {boolean}?
@ -309,25 +312,25 @@ form-login =
element form-login {form-login.attlist, empty} element form-login {form-login.attlist, empty}
form-login.attlist &= form-login.attlist &=
## The URL that the login form is posted to. If unspecified, it defaults to /j_spring_security_check. ## The URL that the login form is posted to. If unspecified, it defaults to /j_spring_security_check.
attribute login-processing-url {xsd:string}? attribute login-processing-url {xsd:token}?
form-login.attlist &= 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. ## 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}? attribute default-target-url {xsd:token}?
form-login.attlist &= form-login.attlist &=
## Whether the user should always be redirected to the default-target-url after login. ## Whether the user should always be redirected to the default-target-url after login.
attribute always-use-default-target {boolean}? attribute always-use-default-target {boolean}?
form-login.attlist &= 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. ## 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}? attribute login-page {xsd:token}?
form-login.attlist &= 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. ## 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}? attribute authentication-failure-url {xsd:token}?
form-login.attlist &= form-login.attlist &=
## Reference to an AuthenticationSuccessHandler bean which should be used to handle a successful authentication request. Should not be used in combination with default-target-url (or always-use-default-target-url) as the implementation should always deal with navigation to the subsequent destination ## Reference to an AuthenticationSuccessHandler bean which should be used to handle a successful authentication request. Should not be used in combination with default-target-url (or always-use-default-target-url) as the implementation should always deal with navigation to the subsequent destination
attribute authentication-success-handler-ref {xsd:string}? attribute authentication-success-handler-ref {xsd:token}?
form-login.attlist &= form-login.attlist &=
## Reference to an AuthenticationFailureHandler bean which should be used to handle a failed authentication request. Should not be used in combination with authentication-failure-url as the implementation should always deal with navigation to the subsequent destination ## Reference to an AuthenticationFailureHandler bean which should be used to handle a failed authentication request. Should not be used in combination with authentication-failure-url as the implementation should always deal with navigation to the subsequent destination
attribute authentication-failure-handler-ref {xsd:string}? attribute authentication-failure-handler-ref {xsd:token}?
openid-login = openid-login =
@ -345,9 +348,9 @@ filter-chain =
## 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 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.
element filter-chain {filter-chain.attlist, empty} element filter-chain {filter-chain.attlist, empty}
filter-chain.attlist &= filter-chain.attlist &=
attribute pattern {xsd:string} attribute pattern {xsd:token}
filter-chain.attlist &= filter-chain.attlist &=
attribute filters {xsd:string} attribute filters {xsd:token}
filter-invocation-definition-source = 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 <http> 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 <http> element. The intercept-url elements used should only contain pattern, method and access attributes. Any others will result in a configuration error.
@ -376,23 +379,23 @@ concurrent-sessions.attlist &=
attribute max-sessions {xsd:positiveInteger}? attribute max-sessions {xsd:positiveInteger}?
concurrent-sessions.attlist &= concurrent-sessions.attlist &=
## 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. ## 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.
attribute expired-url {xsd:string}? attribute expired-url {xsd:token}?
concurrent-sessions.attlist &= concurrent-sessions.attlist &=
## 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. ## 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.
attribute exception-if-maximum-exceeded {boolean}? attribute exception-if-maximum-exceeded {boolean}?
concurrent-sessions.attlist &= concurrent-sessions.attlist &=
## Allows you to define an alias for the SessionRegistry bean in order to access it in your own configuration ## 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}? attribute session-registry-alias {xsd:token}?
concurrent-sessions.attlist &= 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}? attribute session-registry-ref {xsd:token}?
remember-me = 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} element remember-me {remember-me.attlist}
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. ## 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}? attribute key {xsd:token}?
remember-me.attlist &= remember-me.attlist &=
(token-repository-ref | remember-me-data-source-ref | remember-me-services-ref) (token-repository-ref | remember-me-data-source-ref | remember-me-services-ref)
@ -406,10 +409,10 @@ remember-me.attlist &=
token-repository-ref = 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} attribute token-repository-ref {xsd:token}
remember-me-services-ref = 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. ## 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}? attribute services-ref {xsd:token}?
remember-me-data-source-ref = 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 data-source-ref
@ -419,13 +422,13 @@ anonymous =
element anonymous {anonymous.attlist} element anonymous {anonymous.attlist}
anonymous.attlist &= 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". ## 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}? attribute key {xsd:token}?
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". ## 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}? attribute username {xsd:token}?
anonymous.attlist &= 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". ## 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}? attribute granted-authority {xsd:token}?
port-mappings = port-mappings =
## Defines the list of mappings between http and https ports for use in redirects ## Defines the list of mappings between http and https ports for use in redirects
@ -436,9 +439,9 @@ port-mappings.attlist &= empty
port-mapping = port-mapping =
element port-mapping {http-port, https-port} element port-mapping {http-port, https-port}
http-port = attribute http {xsd:string} http-port = attribute http {xsd:token}
https-port = attribute https {xsd:string} https-port = attribute https {xsd:token}
x509 = x509 =
@ -446,7 +449,7 @@ x509 =
element x509 {x509.attlist} 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=(.*?),". ## 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}? attribute subject-principal-regex {xsd:token}?
x509.attlist &= 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? user-service-ref?
@ -459,7 +462,7 @@ authman.attlist &=
attribute alias {xsd:ID} attribute alias {xsd:ID}
authman.attlist &= authman.attlist &=
## Allows the session controller to be set on the internal AuthenticationManager. This should not be used with the <concurrent-session-control /> element ## Allows the session controller to be set on the internal AuthenticationManager. This should not be used with the <concurrent-session-control /> element
attribute session-controller-ref {xsd:string}? attribute session-controller-ref {xsd:token}?
authentication-provider = authentication-provider =
@ -478,20 +481,20 @@ user-service =
## Creates an in-memory UserDetailsService from a properties file or a list of "user" child elements. ## Creates an in-memory UserDetailsService from a properties file or a list of "user" child elements.
element user-service {id? & (properties-file | (user*))} element user-service {id? & (properties-file | (user*))}
properties-file = properties-file =
attribute properties {xsd:string}? attribute properties {xsd:token}?
user = user =
## Represents a user in the application. ## Represents a user in the application.
element user {user.attlist, empty} element user {user.attlist, empty}
user.attlist &= user.attlist &=
## The username assigned to the user. ## The username assigned to the user.
attribute name {xsd:string} attribute name {xsd:token}
user.attlist &= 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} attribute password {xsd:string}
user.attlist &= 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} attribute authorities {xsd:token}
user.attlist &= 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}? attribute locked {boolean}?
@ -504,18 +507,18 @@ jdbc-user-service =
element jdbc-user-service {id? & jdbc-user-service.attlist} element jdbc-user-service {id? & jdbc-user-service.attlist}
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} attribute data-source-ref {xsd:token}
jdbc-user-service.attlist &= jdbc-user-service.attlist &=
cache-ref? cache-ref?
jdbc-user-service.attlist &= jdbc-user-service.attlist &=
## An SQL statement to query a username, password, and enabled status given a username ## An SQL statement to query a username, password, and enabled status given a username
attribute users-by-username-query {xsd:string}? attribute users-by-username-query {xsd:token}?
jdbc-user-service.attlist &= jdbc-user-service.attlist &=
## An SQL statement to query for a user's granted authorities given a username. ## An SQL statement to query for a user's granted authorities given a username.
attribute authorities-by-username-query {xsd:string}? attribute authorities-by-username-query {xsd:token}?
jdbc-user-service.attlist &= jdbc-user-service.attlist &=
## An SQL statement to query user's group authorities given a username. ## An SQL statement to query user's group authorities given a username.
attribute group-authorities-by-username-query {xsd:string}? attribute group-authorities-by-username-query {xsd:token}?
jdbc-user-service.attlist &= jdbc-user-service.attlist &=
role-prefix? role-prefix?

View File

@ -58,7 +58,7 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="url"> <xs:attributeGroup name="url">
<xs:attribute name="url" use="required" type="xs:string"> <xs:attribute name="url" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Specifies a URL.</xs:documentation> <xs:documentation>Specifies a URL.</xs:documentation>
</xs:annotation> </xs:annotation>
@ -73,14 +73,14 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="ref"> <xs:attributeGroup name="ref">
<xs:attribute name="ref" use="required" type="xs:string"> <xs:attribute name="ref" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Defines a reference to a Spring bean Id.</xs:documentation> <xs:documentation>Defines a reference to a Spring bean Id.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="cache-ref"> <xs:attributeGroup name="cache-ref">
<xs:attribute name="cache-ref" use="required" type="xs:string"> <xs:attribute name="cache-ref" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Defines a reference to a cache for use with a <xs:documentation>Defines a reference to a cache for use with a
UserDetailsService.</xs:documentation> UserDetailsService.</xs:documentation>
@ -88,7 +88,7 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="user-service-ref"> <xs:attributeGroup name="user-service-ref">
<xs:attribute name="user-service-ref" use="required" type="xs:string"> <xs:attribute name="user-service-ref" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A reference to a user-service (or UserDetailsService bean) <xs:documentation>A reference to a user-service (or UserDetailsService bean)
Id</xs:documentation> Id</xs:documentation>
@ -96,14 +96,14 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="data-source-ref"> <xs:attributeGroup name="data-source-ref">
<xs:attribute name="data-source-ref" use="required" type="xs:string"> <xs:attribute name="data-source-ref" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A reference to a DataSource bean</xs:documentation> <xs:documentation>A reference to a DataSource bean</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="password-encoder.attlist"> <xs:attributeGroup name="password-encoder.attlist">
<xs:attribute name="ref" type="xs:string"> <xs:attribute name="ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Defines a reference to a Spring bean Id.</xs:documentation> <xs:documentation>Defines a reference to a Spring bean Id.</xs:documentation>
</xs:annotation> </xs:annotation>
@ -138,7 +138,7 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="user-property"> <xs:attributeGroup name="user-property">
<xs:attribute name="user-property" use="required" type="xs:string"> <xs:attribute name="user-property" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A property of the UserDetails object which will be used as salt by a <xs:documentation>A property of the UserDetails object which will be used as salt by a
password encoder. Typically something like "username" might be used. </xs:documentation> password encoder. Typically something like "username" might be used. </xs:documentation>
@ -146,7 +146,7 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="system-wide"> <xs:attributeGroup name="system-wide">
<xs:attribute name="system-wide" use="required" type="xs:string"> <xs:attribute name="system-wide" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A single value that will be used as the salt for a password encoder. <xs:documentation>A single value that will be used as the salt for a password encoder.
</xs:documentation> </xs:documentation>
@ -160,7 +160,7 @@
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
<xs:attributeGroup name="role-prefix"> <xs:attributeGroup name="role-prefix">
<xs:attribute name="role-prefix" use="required" type="xs:string"> <xs:attribute name="role-prefix" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A non-empty string prefix that will be added to role strings loaded from <xs:documentation>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 persistent storage (e.g. "ROLE_"). Use the value "none" for no prefix in cases where the
@ -198,7 +198,7 @@
context.</xs:documentation> context.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="url" type="xs:string"> <xs:attribute name="url" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Specifies a URL.</xs:documentation> <xs:documentation>Specifies a URL.</xs:documentation>
</xs:annotation> </xs:annotation>
@ -235,7 +235,7 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="ldap-server-ref-attribute"> <xs:attributeGroup name="ldap-server-ref-attribute">
<xs:attribute name="server-ref" use="required" type="xs:string"> <xs:attribute name="server-ref" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The optional server to use. If omitted, and a default LDAP server is <xs:documentation>The optional server to use. If omitted, and a default LDAP server is
registered (using &lt;ldap-server&gt; with no Id), that server will be used. registered (using &lt;ldap-server&gt; with no Id), that server will be used.
@ -244,7 +244,7 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="group-search-filter-attribute"> <xs:attributeGroup name="group-search-filter-attribute">
<xs:attribute name="group-search-filter" use="required" type="xs:string"> <xs:attribute name="group-search-filter" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Group search filter. Defaults to (uniqueMember={0}). The substituted <xs:documentation>Group search filter. Defaults to (uniqueMember={0}). The substituted
parameter is the DN of the user.</xs:documentation> parameter is the DN of the user.</xs:documentation>
@ -252,7 +252,7 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="group-search-base-attribute"> <xs:attributeGroup name="group-search-base-attribute">
<xs:attribute name="group-search-base" use="required" type="xs:string"> <xs:attribute name="group-search-base" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Search base for group membership searches. Defaults to "" (searching from <xs:documentation>Search base for group membership searches. Defaults to "" (searching from
the root).</xs:documentation> the root).</xs:documentation>
@ -260,7 +260,7 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="user-search-filter-attribute"> <xs:attributeGroup name="user-search-filter-attribute">
<xs:attribute name="user-search-filter" use="required" type="xs:string"> <xs:attribute name="user-search-filter" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The LDAP filter used to search for users (optional). For example <xs:documentation>The LDAP filter used to search for users (optional). For example
"(uid={0})". The substituted parameter is the user's login name.</xs:documentation> "(uid={0})". The substituted parameter is the user's login name.</xs:documentation>
@ -268,7 +268,7 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="user-search-base-attribute"> <xs:attributeGroup name="user-search-base-attribute">
<xs:attribute name="user-search-base" use="required" type="xs:string"> <xs:attribute name="user-search-base" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Search base for user searches. Defaults to "". Only used with a <xs:documentation>Search base for user searches. Defaults to "". Only used with a
'user-search-filter'.</xs:documentation> 'user-search-filter'.</xs:documentation>
@ -276,7 +276,7 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="group-role-attribute-attribute"> <xs:attributeGroup name="group-role-attribute-attribute">
<xs:attribute name="group-role-attribute" use="required" type="xs:string"> <xs:attribute name="group-role-attribute" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The LDAP attribute name which contains the role name which will be used <xs:documentation>The LDAP attribute name which contains the role name which will be used
within Spring Security. Defaults to "cn".</xs:documentation> within Spring Security. Defaults to "cn".</xs:documentation>
@ -310,50 +310,50 @@
context.</xs:documentation> context.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="server-ref" type="xs:string"> <xs:attribute name="server-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The optional server to use. If omitted, and a default LDAP server is <xs:documentation>The optional server to use. If omitted, and a default LDAP server is
registered (using &lt;ldap-server&gt; with no Id), that server will be used. registered (using &lt;ldap-server&gt; with no Id), that server will be used.
</xs:documentation> </xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="user-search-filter" type="xs:string"> <xs:attribute name="user-search-filter" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The LDAP filter used to search for users (optional). For example <xs:documentation>The LDAP filter used to search for users (optional). For example
"(uid={0})". The substituted parameter is the user's login name.</xs:documentation> "(uid={0})". The substituted parameter is the user's login name.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="user-search-base" type="xs:string"> <xs:attribute name="user-search-base" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Search base for user searches. Defaults to "". Only used with a <xs:documentation>Search base for user searches. Defaults to "". Only used with a
'user-search-filter'.</xs:documentation> 'user-search-filter'.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="group-search-filter" type="xs:string"> <xs:attribute name="group-search-filter" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Group search filter. Defaults to (uniqueMember={0}). The substituted <xs:documentation>Group search filter. Defaults to (uniqueMember={0}). The substituted
parameter is the DN of the user.</xs:documentation> parameter is the DN of the user.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="group-search-base" type="xs:string"> <xs:attribute name="group-search-base" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Search base for group membership searches. Defaults to "" (searching from <xs:documentation>Search base for group membership searches. Defaults to "" (searching from
the root).</xs:documentation> the root).</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="group-role-attribute" type="xs:string"> <xs:attribute name="group-role-attribute" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The LDAP attribute name which contains the role name which will be used <xs:documentation>The LDAP attribute name which contains the role name which will be used
within Spring Security. Defaults to "cn".</xs:documentation> within Spring Security. Defaults to "cn".</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="cache-ref" type="xs:string"> <xs:attribute name="cache-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Defines a reference to a cache for use with a <xs:documentation>Defines a reference to a cache for use with a
UserDetailsService.</xs:documentation> UserDetailsService.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="role-prefix" type="xs:string"> <xs:attribute name="role-prefix" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A non-empty string prefix that will be added to role strings loaded from <xs:documentation>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 persistent storage (e.g. "ROLE_"). Use the value "none" for no prefix in cases where the
@ -401,20 +401,20 @@
property from the UserDetails object can be used.</xs:documentation> property from the UserDetails object can be used.</xs:documentation>
</xs:annotation> </xs:annotation>
<xs:complexType> <xs:complexType>
<xs:attribute name="user-property" type="xs:string"> <xs:attribute name="user-property" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A property of the UserDetails object which will be <xs:documentation>A property of the UserDetails object which will be
used as salt by a password encoder. Typically something like used as salt by a password encoder. Typically something like
"username" might be used. </xs:documentation> "username" might be used. </xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="system-wide" type="xs:string"> <xs:attribute name="system-wide" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A single value that will be used as the salt for a <xs:documentation>A single value that will be used as the salt for a
password encoder. </xs:documentation> password encoder. </xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="ref" type="xs:string"> <xs:attribute name="ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Defines a reference to a Spring bean <xs:documentation>Defines a reference to a Spring bean
Id.</xs:documentation> Id.</xs:documentation>
@ -435,51 +435,51 @@
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:attributeGroup name="ldap-ap.attlist"> <xs:attributeGroup name="ldap-ap.attlist">
<xs:attribute name="server-ref" type="xs:string"> <xs:attribute name="server-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The optional server to use. If omitted, and a default LDAP server is <xs:documentation>The optional server to use. If omitted, and a default LDAP server is
registered (using &lt;ldap-server&gt; with no Id), that server will be used. registered (using &lt;ldap-server&gt; with no Id), that server will be used.
</xs:documentation> </xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="user-search-base" type="xs:string"> <xs:attribute name="user-search-base" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Search base for user searches. Defaults to "". Only used with a <xs:documentation>Search base for user searches. Defaults to "". Only used with a
'user-search-filter'.</xs:documentation> 'user-search-filter'.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="user-search-filter" type="xs:string"> <xs:attribute name="user-search-filter" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The LDAP filter used to search for users (optional). For example <xs:documentation>The LDAP filter used to search for users (optional). For example
"(uid={0})". The substituted parameter is the user's login name.</xs:documentation> "(uid={0})". The substituted parameter is the user's login name.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="group-search-base" type="xs:string"> <xs:attribute name="group-search-base" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Search base for group membership searches. Defaults to "" (searching from <xs:documentation>Search base for group membership searches. Defaults to "" (searching from
the root).</xs:documentation> the root).</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="group-search-filter" type="xs:string"> <xs:attribute name="group-search-filter" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Group search filter. Defaults to (uniqueMember={0}). The substituted <xs:documentation>Group search filter. Defaults to (uniqueMember={0}). The substituted
parameter is the DN of the user.</xs:documentation> parameter is the DN of the user.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="group-role-attribute" type="xs:string"> <xs:attribute name="group-role-attribute" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The LDAP attribute name which contains the role name which will be used <xs:documentation>The LDAP attribute name which contains the role name which will be used
within Spring Security. Defaults to "cn".</xs:documentation> within Spring Security. Defaults to "cn".</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="user-dn-pattern" type="xs:string"> <xs:attribute name="user-dn-pattern" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A specific pattern used to build the user's DN, for example <xs:documentation>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 "uid={0},ou=people". The key "{0}" must be present and will be substituted with the
username.</xs:documentation> username.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="role-prefix" type="xs:string"> <xs:attribute name="role-prefix" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A non-empty string prefix that will be added to role strings loaded from <xs:documentation>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 persistent storage (e.g. "ROLE_"). Use the value "none" for no prefix in cases where the
@ -501,7 +501,7 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="password-compare.attlist"> <xs:attributeGroup name="password-compare.attlist">
<xs:attribute name="password-attribute" type="xs:string"> <xs:attribute name="password-attribute" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The attribute in the directory which contains the user password. Defaults <xs:documentation>The attribute in the directory which contains the user password. Defaults
to "userPassword".</xs:documentation> to "userPassword".</xs:documentation>
@ -547,7 +547,7 @@
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:attributeGroup name="intercept-methods.attlist"> <xs:attributeGroup name="intercept-methods.attlist">
<xs:attribute name="access-decision-manager-ref" type="xs:string"> <xs:attribute name="access-decision-manager-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Optional AccessDecisionManager bean ID to be used by the created method <xs:documentation>Optional AccessDecisionManager bean ID to be used by the created method
security interceptor.</xs:documentation> security interceptor.</xs:documentation>
@ -555,12 +555,12 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="protect.attlist"> <xs:attributeGroup name="protect.attlist">
<xs:attribute name="method" use="required" type="xs:string"> <xs:attribute name="method" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A method name</xs:documentation> <xs:documentation>A method name</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="access" use="required" type="xs:string"> <xs:attribute name="access" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Access configuration attributes list that applies to the method, e.g. <xs:documentation>Access configuration attributes list that applies to the method, e.g.
"ROLE_A,ROLE_B".</xs:documentation> "ROLE_A,ROLE_B".</xs:documentation>
@ -637,12 +637,18 @@
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:attribute> </xs:attribute>
<xs:attribute name="access-decision-manager-ref" type="xs:string"> <xs:attribute name="access-decision-manager-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Optional AccessDecisionManager bean ID to override the default used for <xs:documentation>Optional AccessDecisionManager bean ID to override the default used for
method security.</xs:documentation> method security.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="run-as-manager-ref" type="xs:token">
<xs:annotation>
<xs:documentation>Optional RunAsmanager implementation which will be used by the configured
MethodSecurityInterceptor</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:element name="expression-handler"> <xs:element name="expression-handler">
<xs:annotation> <xs:annotation>
@ -669,7 +675,7 @@
quotes).</xs:documentation> quotes).</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="access" use="required" type="xs:string"> <xs:attribute name="access" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Access configuration attributes list that applies to all methods matching <xs:documentation>Access configuration attributes list that applies to all methods matching
the pointcut, e.g. "ROLE_A,ROLE_B"</xs:documentation> the pointcut, e.g. "ROLE_A,ROLE_B"</xs:documentation>
@ -816,7 +822,7 @@
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:attribute> </xs:attribute>
<xs:attribute name="security-context-repository-ref" type="xs:string"> <xs:attribute name="security-context-repository-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A reference to a SecurityContextRepository bean. This can be used to <xs:documentation>A reference to a SecurityContextRepository bean. This can be used to
customize how the SecurityContext is stored between requests.</xs:documentation> customize how the SecurityContext is stored between requests.</xs:documentation>
@ -848,13 +854,13 @@
SecurityContext. Defaults to "true".</xs:documentation> SecurityContext. Defaults to "true".</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="access-decision-manager-ref" type="xs:string"> <xs:attribute name="access-decision-manager-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Optional attribute specifying the ID of the AccessDecisionManager <xs:documentation>Optional attribute specifying the ID of the AccessDecisionManager
implementation which should be used for authorizing HTTP requests.</xs:documentation> implementation which should be used for authorizing HTTP requests.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="realm" type="xs:string"> <xs:attribute name="realm" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Optional attribute specifying the realm name that will be used for all <xs:documentation>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 authentication features that require a realm name (eg BASIC and Digest authentication). If
@ -877,7 +883,7 @@
</xs:restriction> </xs:restriction>
</xs:simpleType> </xs:simpleType>
</xs:attribute> </xs:attribute>
<xs:attribute name="entry-point-ref" type="xs:string"> <xs:attribute name="entry-point-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Allows a customized AuthenticationEntryPoint to be <xs:documentation>Allows a customized AuthenticationEntryPoint to be
used.</xs:documentation> used.</xs:documentation>
@ -889,7 +895,7 @@
FilterSecurityInterceptor. Defaults to "true"</xs:documentation> FilterSecurityInterceptor. Defaults to "true"</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="access-denied-page" type="xs:string"> <xs:attribute name="access-denied-page" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Deprecated in favour of the access-denied-handler <xs:documentation>Deprecated in favour of the access-denied-handler
element.</xs:documentation> element.</xs:documentation>
@ -902,12 +908,12 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="access-denied-handler.attlist"> <xs:attributeGroup name="access-denied-handler.attlist">
<xs:attribute name="ref" type="xs:string"> <xs:attribute name="ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Defines a reference to a Spring bean Id.</xs:documentation> <xs:documentation>Defines a reference to a Spring bean Id.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="error-page" type="xs:string"> <xs:attribute name="error-page" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The access denied page that an authenticated user will be redirected to if <xs:documentation>The access denied page that an authenticated user will be redirected to if
they request a page which they don't have the authority to access. </xs:documentation> they request a page which they don't have the authority to access. </xs:documentation>
@ -915,7 +921,7 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="access-denied-handler-page"> <xs:attributeGroup name="access-denied-handler-page">
<xs:attribute name="error-page" use="required" type="xs:string"> <xs:attribute name="error-page" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The access denied page that an authenticated user will be redirected to if <xs:documentation>The access denied page that an authenticated user will be redirected to if
they request a page which they don't have the authority to access. </xs:documentation> they request a page which they don't have the authority to access. </xs:documentation>
@ -923,14 +929,14 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="intercept-url.attlist"> <xs:attributeGroup name="intercept-url.attlist">
<xs:attribute name="pattern" use="required" type="xs:string"> <xs:attribute name="pattern" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The pattern which defines the URL path. The content will depend on the <xs:documentation>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 type set in the containing http element, so will default to ant path
syntax.</xs:documentation> syntax.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="access" type="xs:string"> <xs:attribute name="access" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The access configuration attributes that apply for the configured <xs:documentation>The access configuration attributes that apply for the configured
path.</xs:documentation> path.</xs:documentation>
@ -981,14 +987,14 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="logout.attlist"> <xs:attributeGroup name="logout.attlist">
<xs:attribute name="logout-url" type="xs:string"> <xs:attribute name="logout-url" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Specifies the URL that will cause a logout. Spring Security will <xs:documentation>Specifies the URL that will cause a logout. Spring Security will
initialize a filter that responds to this particular URL. Defaults to initialize a filter that responds to this particular URL. Defaults to
/j_spring_security_logout if unspecified.</xs:documentation> /j_spring_security_logout if unspecified.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="logout-success-url" type="xs:string"> <xs:attribute name="logout-success-url" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Specifies the URL to display once the user has logged out. If not <xs:documentation>Specifies the URL to display once the user has logged out. If not
specified, defaults to /.</xs:documentation> specified, defaults to /.</xs:documentation>
@ -1002,13 +1008,13 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="form-login.attlist"> <xs:attributeGroup name="form-login.attlist">
<xs:attribute name="login-processing-url" type="xs:string"> <xs:attribute name="login-processing-url" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The URL that the login form is posted to. If unspecified, it defaults to <xs:documentation>The URL that the login form is posted to. If unspecified, it defaults to
/j_spring_security_check.</xs:documentation> /j_spring_security_check.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="default-target-url" type="xs:string"> <xs:attribute name="default-target-url" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The URL that will be redirected to after successful authentication, if the <xs:documentation>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 user's previous action could not be resumed. This generally happens if the user visits a
@ -1023,14 +1029,14 @@
after login. </xs:documentation> after login. </xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="login-page" type="xs:string"> <xs:attribute name="login-page" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The URL for the login page. If no login URL is specified, Spring Security <xs:documentation>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 will automatically create a login URL at /spring_security_login and a corresponding filter
to render that login URL when requested.</xs:documentation> to render that login URL when requested.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="authentication-failure-url" type="xs:string"> <xs:attribute name="authentication-failure-url" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The URL for the login failure page. If no login failure URL is specified, <xs:documentation>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 will automatically create a failure login URL at
@ -1038,7 +1044,7 @@
URL when requested.</xs:documentation> URL when requested.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="authentication-success-handler-ref" type="xs:string"> <xs:attribute name="authentication-success-handler-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Reference to an AuthenticationSuccessHandler bean which should be used to <xs:documentation>Reference to an AuthenticationSuccessHandler bean which should be used to
handle a successful authentication request. Should not be used in combination with handle a successful authentication request. Should not be used in combination with
@ -1046,7 +1052,7 @@
deal with navigation to the subsequent destination</xs:documentation> deal with navigation to the subsequent destination</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="authentication-failure-handler-ref" type="xs:string"> <xs:attribute name="authentication-failure-handler-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Reference to an AuthenticationFailureHandler bean which should be used to <xs:documentation>Reference to an AuthenticationFailureHandler bean which should be used to
handle a failed authentication request. Should not be used in combination with handle a failed authentication request. Should not be used in combination with
@ -1062,7 +1068,7 @@
</xs:annotation> </xs:annotation>
<xs:complexType> <xs:complexType>
<xs:attributeGroup ref="security:form-login.attlist"/> <xs:attributeGroup ref="security:form-login.attlist"/>
<xs:attribute name="user-service-ref" type="xs:string"> <xs:attribute name="user-service-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A reference to a user-service (or UserDetailsService bean) <xs:documentation>A reference to a user-service (or UserDetailsService bean)
Id</xs:documentation> Id</xs:documentation>
@ -1097,8 +1103,8 @@
<xs:attributeGroup ref="security:path-type"/> <xs:attributeGroup ref="security:path-type"/>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="filter-chain.attlist"> <xs:attributeGroup name="filter-chain.attlist">
<xs:attribute name="pattern" use="required" type="xs:string"/> <xs:attribute name="pattern" use="required" type="xs:token"/>
<xs:attribute name="filters" use="required" type="xs:string"/> <xs:attribute name="filters" use="required" type="xs:token"/>
</xs:attributeGroup> </xs:attributeGroup>
<xs:element name="filter-invocation-definition-source"> <xs:element name="filter-invocation-definition-source">
<xs:annotation> <xs:annotation>
@ -1165,7 +1171,7 @@
time. Defaults to "1".</xs:documentation> time. Defaults to "1".</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="expired-url" type="xs:string"> <xs:attribute name="expired-url" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The URL a user will be redirected to if they attempt to use a session <xs:documentation>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 which has been "expired" by the concurrent session controller because they have logged in
@ -1179,13 +1185,13 @@
expire the original session.</xs:documentation> expire the original session.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="session-registry-alias" type="xs:string"> <xs:attribute name="session-registry-alias" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Allows you to define an alias for the SessionRegistry bean in order to <xs:documentation>Allows you to define an alias for the SessionRegistry bean in order to
access it in your own configuration</xs:documentation> access it in your own configuration</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="session-registry-ref" type="xs:string"> <xs:attribute name="session-registry-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A reference to an external SessionRegistry implementation which will be <xs:documentation>A reference to an external SessionRegistry implementation which will be
used in place of the standard one. </xs:documentation> used in place of the standard one. </xs:documentation>
@ -1193,26 +1199,26 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="remember-me.attlist"> <xs:attributeGroup name="remember-me.attlist">
<xs:attribute name="key" type="xs:string"> <xs:attribute name="key" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The "key" used to identify cookies from a specific token-based remember-me <xs:documentation>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. You should set this to a unique value for your
application.</xs:documentation> application.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="token-repository-ref" type="xs:string"> <xs:attribute name="token-repository-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Reference to a PersistentTokenRepository bean for use with the persistent <xs:documentation>Reference to a PersistentTokenRepository bean for use with the persistent
token remember-me implementation. </xs:documentation> token remember-me implementation. </xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="data-source-ref" type="xs:string"> <xs:attribute name="data-source-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A reference to a DataSource bean</xs:documentation> <xs:documentation>A reference to a DataSource bean</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attributeGroup ref="security:remember-me-services-ref"/> <xs:attributeGroup ref="security:remember-me-services-ref"/>
<xs:attribute name="user-service-ref" type="xs:string"> <xs:attribute name="user-service-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A reference to a user-service (or UserDetailsService bean) <xs:documentation>A reference to a user-service (or UserDetailsService bean)
Id</xs:documentation> Id</xs:documentation>
@ -1226,7 +1232,7 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="token-repository-ref"> <xs:attributeGroup name="token-repository-ref">
<xs:attribute name="token-repository-ref" use="required" type="xs:string"> <xs:attribute name="token-repository-ref" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Reference to a PersistentTokenRepository bean for use with the persistent <xs:documentation>Reference to a PersistentTokenRepository bean for use with the persistent
token remember-me implementation. </xs:documentation> token remember-me implementation. </xs:documentation>
@ -1234,7 +1240,7 @@
</xs:attribute> </xs:attribute>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="remember-me-services-ref"> <xs:attributeGroup name="remember-me-services-ref">
<xs:attribute name="services-ref" type="xs:string"> <xs:attribute name="services-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Allows a custom implementation of RememberMeServices to be used. Note that <xs:documentation>Allows a custom implementation of RememberMeServices to be used. Note that
this implementation should return RememberMeAuthenticationToken instances with the same this implementation should return RememberMeAuthenticationToken instances with the same
@ -1247,20 +1253,20 @@
<xs:attributeGroup ref="security:data-source-ref"/> <xs:attributeGroup ref="security:data-source-ref"/>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="anonymous.attlist"> <xs:attributeGroup name="anonymous.attlist">
<xs:attribute name="key" type="xs:string"> <xs:attribute name="key" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The key shared between the provider and filter. This generally does not <xs:documentation>The key shared between the provider and filter. This generally does not
need to be set. If unset, it will default to "doesNotMatter".</xs:documentation> need to be set. If unset, it will default to "doesNotMatter".</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="username" type="xs:string"> <xs:attribute name="username" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The username that should be assigned to the anonymous request. This allows <xs:documentation>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, the principal to be identified, which may be important for logging and auditing. if unset,
defaults to "anonymousUser".</xs:documentation> defaults to "anonymousUser".</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="granted-authority" type="xs:string"> <xs:attribute name="granted-authority" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The granted authority that should be assigned to the anonymous request. <xs:documentation>The granted authority that should be assigned to the anonymous request.
Commonly this is used to assign the anonymous request particular roles, which can Commonly this is used to assign the anonymous request particular roles, which can
@ -1276,20 +1282,20 @@
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:attributeGroup name="http-port"> <xs:attributeGroup name="http-port">
<xs:attribute name="http" use="required" type="xs:string"/> <xs:attribute name="http" use="required" type="xs:token"/>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="https-port"> <xs:attributeGroup name="https-port">
<xs:attribute name="https" use="required" type="xs:string"/> <xs:attribute name="https" use="required" type="xs:token"/>
</xs:attributeGroup> </xs:attributeGroup>
<xs:attributeGroup name="x509.attlist"> <xs:attributeGroup name="x509.attlist">
<xs:attribute name="subject-principal-regex" type="xs:string"> <xs:attribute name="subject-principal-regex" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The regular expression used to obtain the username from the certificate's <xs:documentation>The regular expression used to obtain the username from the certificate's
subject. Defaults to matching on the common name using the pattern subject. Defaults to matching on the common name using the pattern
"CN=(.*?),".</xs:documentation> "CN=(.*?),".</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="user-service-ref" type="xs:string"> <xs:attribute name="user-service-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A reference to a user-service (or UserDetailsService bean) <xs:documentation>A reference to a user-service (or UserDetailsService bean)
Id</xs:documentation> Id</xs:documentation>
@ -1314,7 +1320,7 @@
bean</xs:documentation> bean</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="session-controller-ref" type="xs:string"> <xs:attribute name="session-controller-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Allows the session controller to be set on the internal <xs:documentation>Allows the session controller to be set on the internal
AuthenticationManager. This should not be used with the &lt;concurrent-session-control AuthenticationManager. This should not be used with the &lt;concurrent-session-control
@ -1344,20 +1350,20 @@
from the UserDetails object can be used.</xs:documentation> from the UserDetails object can be used.</xs:documentation>
</xs:annotation> </xs:annotation>
<xs:complexType> <xs:complexType>
<xs:attribute name="user-property" type="xs:string"> <xs:attribute name="user-property" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A property of the UserDetails object which will be used as <xs:documentation>A property of the UserDetails object which will be used as
salt by a password encoder. Typically something like "username" might be salt by a password encoder. Typically something like "username" might be
used. </xs:documentation> used. </xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="system-wide" type="xs:string"> <xs:attribute name="system-wide" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A single value that will be used as the salt for a password <xs:documentation>A single value that will be used as the salt for a password
encoder. </xs:documentation> encoder. </xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="ref" type="xs:string"> <xs:attribute name="ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Defines a reference to a Spring bean Id.</xs:documentation> <xs:documentation>Defines a reference to a Spring bean Id.</xs:documentation>
</xs:annotation> </xs:annotation>
@ -1373,7 +1379,7 @@
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:attributeGroup name="ap.attlist"> <xs:attributeGroup name="ap.attlist">
<xs:attribute name="user-service-ref" type="xs:string"> <xs:attribute name="user-service-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A reference to a user-service (or UserDetailsService bean) <xs:documentation>A reference to a user-service (or UserDetailsService bean)
Id</xs:documentation> Id</xs:documentation>
@ -1406,7 +1412,7 @@
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:attributeGroup name="properties-file"> <xs:attributeGroup name="properties-file">
<xs:attribute name="properties" type="xs:string"/> <xs:attribute name="properties" type="xs:token"/>
</xs:attributeGroup> </xs:attributeGroup>
<xs:element name="user"> <xs:element name="user">
<xs:annotation> <xs:annotation>
@ -1417,7 +1423,7 @@
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:attributeGroup name="user.attlist"> <xs:attributeGroup name="user.attlist">
<xs:attribute name="name" use="required" type="xs:string"> <xs:attribute name="name" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The username assigned to the user.</xs:documentation> <xs:documentation>The username assigned to the user.</xs:documentation>
</xs:annotation> </xs:annotation>
@ -1429,7 +1435,7 @@
"user-service" element).</xs:documentation> "user-service" element).</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="authorities" use="required" type="xs:string"> <xs:attribute name="authorities" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>One of more authorities granted to the user. Separate authorities with a <xs:documentation>One of more authorities granted to the user. Separate authorities with a
comma (but no space). For example, "ROLE_USER,ROLE_ADMINISTRATOR"</xs:documentation> comma (but no space). For example, "ROLE_USER,ROLE_ADMINISTRATOR"</xs:documentation>
@ -1463,37 +1469,37 @@
</xs:complexType> </xs:complexType>
</xs:element> </xs:element>
<xs:attributeGroup name="jdbc-user-service.attlist"> <xs:attributeGroup name="jdbc-user-service.attlist">
<xs:attribute name="data-source-ref" use="required" type="xs:string"> <xs:attribute name="data-source-ref" use="required" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>The bean ID of the DataSource which provides the required <xs:documentation>The bean ID of the DataSource which provides the required
tables.</xs:documentation> tables.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="cache-ref" type="xs:string"> <xs:attribute name="cache-ref" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>Defines a reference to a cache for use with a <xs:documentation>Defines a reference to a cache for use with a
UserDetailsService.</xs:documentation> UserDetailsService.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="users-by-username-query" type="xs:string"> <xs:attribute name="users-by-username-query" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>An SQL statement to query a username, password, and enabled status given a <xs:documentation>An SQL statement to query a username, password, and enabled status given a
username</xs:documentation> username</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="authorities-by-username-query" type="xs:string"> <xs:attribute name="authorities-by-username-query" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>An SQL statement to query for a user's granted authorities given a <xs:documentation>An SQL statement to query for a user's granted authorities given a
username.</xs:documentation> username.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="group-authorities-by-username-query" type="xs:string"> <xs:attribute name="group-authorities-by-username-query" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>An SQL statement to query user's group authorities given a <xs:documentation>An SQL statement to query user's group authorities given a
username.</xs:documentation> username.</xs:documentation>
</xs:annotation> </xs:annotation>
</xs:attribute> </xs:attribute>
<xs:attribute name="role-prefix" type="xs:string"> <xs:attribute name="role-prefix" type="xs:token">
<xs:annotation> <xs:annotation>
<xs:documentation>A non-empty string prefix that will be added to role strings loaded from <xs:documentation>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 persistent storage (e.g. "ROLE_"). Use the value "none" for no prefix in cases where the

View File

@ -1,16 +1,19 @@
package org.springframework.security.config; package org.springframework.security.config;
import static org.junit.Assert.*; import static org.junit.Assert.*;
import static org.springframework.security.config.GlobalMethodSecurityBeanDefinitionParser.*;
import static org.springframework.security.config.ConfigTestUtils.AUTH_PROVIDER_XML; import static org.springframework.security.config.ConfigTestUtils.AUTH_PROVIDER_XML;
import static org.springframework.security.config.GlobalMethodSecurityBeanDefinitionParser.*;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import org.junit.After; import org.junit.After;
import org.junit.Test; import org.junit.Test;
import org.springframework.beans.MutablePropertyValues;
import org.springframework.beans.factory.parsing.BeanDefinitionParsingException; import org.springframework.beans.factory.parsing.BeanDefinitionParsingException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.AbstractXmlApplicationContext; import org.springframework.context.support.AbstractXmlApplicationContext;
import org.springframework.context.support.StaticApplicationContext;
import org.springframework.security.access.AccessDeniedException; import org.springframework.security.access.AccessDeniedException;
import org.springframework.security.access.annotation.BusinessService; import org.springframework.security.access.annotation.BusinessService;
import org.springframework.security.access.annotation.Jsr250MethodSecurityMetadataSource; import org.springframework.security.access.annotation.Jsr250MethodSecurityMetadataSource;
@ -20,6 +23,7 @@ import org.springframework.security.access.expression.method.ExpressionAnnotatio
import org.springframework.security.access.expression.method.MethodExpressionAfterInvocationProvider; import org.springframework.security.access.expression.method.MethodExpressionAfterInvocationProvider;
import org.springframework.security.access.expression.method.MethodExpressionVoter; import org.springframework.security.access.expression.method.MethodExpressionVoter;
import org.springframework.security.access.intercept.AfterInvocationProviderManager; import org.springframework.security.access.intercept.AfterInvocationProviderManager;
import org.springframework.security.access.intercept.RunAsManagerImpl;
import org.springframework.security.access.vote.AffirmativeBased; import org.springframework.security.access.vote.AffirmativeBased;
import org.springframework.security.authentication.AuthenticationCredentialsNotFoundException; import org.springframework.security.authentication.AuthenticationCredentialsNotFoundException;
import org.springframework.security.authentication.TestingAuthenticationToken; import org.springframework.security.authentication.TestingAuthenticationToken;
@ -260,9 +264,26 @@ public class GlobalMethodSecurityBeanDefinitionParserTests {
assertEquals("bob", result[0]); assertEquals("bob", result[0]);
} }
@Test
public void runAsManagerIsSetCorrectly() throws Exception {
StaticApplicationContext parent = new StaticApplicationContext();
MutablePropertyValues props = new MutablePropertyValues();
props.addPropertyValue("key", "blah");
parent.registerSingleton("runAsMgr", RunAsManagerImpl.class, props);
parent.refresh();
setContext("<global-method-security run-as-manager-ref='runAsMgr'/>" + AUTH_PROVIDER_XML, parent);
RunAsManagerImpl ram = (RunAsManagerImpl) appContext.getBean("runAsMgr");
assertSame(ram, FieldUtils.getFieldValue(appContext.getBean(GlobalMethodSecurityBeanDefinitionParser.SECURITY_INTERCEPTOR_ID), "runAsManager"));
}
private void setContext(String context) { private void setContext(String context) {
appContext = new InMemoryXmlApplicationContext(context); appContext = new InMemoryXmlApplicationContext(context);
} }
private void setContext(String context, ApplicationContext parent) {
appContext = new InMemoryXmlApplicationContext(context, parent);
}
} }

View File

@ -1,5 +1,6 @@
package org.springframework.security.config.util; package org.springframework.security.config.util;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.AbstractXmlApplicationContext; import org.springframework.context.support.AbstractXmlApplicationContext;
import org.springframework.core.io.Resource; import org.springframework.core.io.Resource;
import org.springframework.security.util.InMemoryResource; import org.springframework.security.util.InMemoryResource;
@ -22,12 +23,18 @@ public class InMemoryXmlApplicationContext extends AbstractXmlApplicationContext
Resource inMemoryXml; Resource inMemoryXml;
public InMemoryXmlApplicationContext(String xml) { public InMemoryXmlApplicationContext(String xml) {
this(xml, true); this(xml, true, null);
} }
public InMemoryXmlApplicationContext(String xml, boolean addBeansTags) { public InMemoryXmlApplicationContext(String xml, ApplicationContext parent) {
this(xml, true, parent);
}
public InMemoryXmlApplicationContext(String xml, boolean addBeansTags, ApplicationContext parent) {
String fullXml = addBeansTags ? BEANS_OPENING + xml + BEANS_CLOSE : xml; String fullXml = addBeansTags ? BEANS_OPENING + xml + BEANS_CLOSE : xml;
inMemoryXml = new InMemoryResource(fullXml); inMemoryXml = new InMemoryResource(fullXml);
setParent(parent);
refresh(); refresh();
} }

View File

@ -0,0 +1,9 @@
log4j.rootLogger=INFO, stdout
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%p %c{1} - %m%n
log4j.logger.org.springframework.security=DEBUG
log4j.logger.org.apache.directory=ERROR

View File

@ -12,11 +12,21 @@
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/security ../../main/resources/org/springframework/security/config/spring-security-2.0.4.xsd"> http://www.springframework.org/schema/security ../../main/resources/org/springframework/security/config/spring-security-3.0.xsd">
<global-method-security run-as-manager-ref="myRunAsManager">
<expression-handler ref="myExpressionhandler"/>
</global-method-security>
<http> <http>
<intercept-url pattern=""/> <access-denied-handler error-page="/go-away.html"/>
<intercept-url pattern="/**" access="ROLE_USER" />
<form-login />
<openid-login/>
<anonymous />
<http-basic />
<concurrent-session-control expired-url="/session-expired" max-sessions="1" session-registry-alias="sessionRegistry"/>
<logout invalidate-session="true" logout-url="/logout" logout-success-url="/you-have-logged-out.htm"/>
</http> </http>
</b:beans> </b:beans>