SEC-673: Reinstated a bean registration that had accidentally bean removed by the last patch, breaking core-tiger tests.

This commit is contained in:
Luke Taylor 2008-04-07 21:05:13 +00:00
parent 80dbc4fd75
commit f57ba43780
1 changed files with 1 additions and 0 deletions

View File

@ -110,6 +110,7 @@ class GlobalMethodSecurityBeanDefinitionParser implements BeanDefinitionParser {
delegatingMethodDefinitionSource.setRole(BeanDefinition.ROLE_INFRASTRUCTURE);
delegatingMethodDefinitionSource.setSource(parserContext.extractSource(element));
delegatingMethodDefinitionSource.getPropertyValues().addPropertyValue("methodDefinitionSources", delegates);
parserContext.getRegistry().registerBeanDefinition(BeanIds.DELEGATING_METHOD_DEFINITION_SOURCE, delegatingMethodDefinitionSource);
// Register the applicable AccessDecisionManager, handling the special JSR 250 voter if being used
String accessManagerId = element.getAttribute(ATT_ACCESS_MGR);