Remove "infrastructure" type from authentication provider bean.

This commit is contained in:
Luke Taylor 2009-07-31 19:38:16 +00:00
parent 6ae61f95db
commit 160aa512a1
1 changed files with 0 additions and 1 deletions

View File

@ -31,7 +31,6 @@ public class AuthenticationProviderBeanDefinitionParser implements BeanDefinitio
public BeanDefinition parse(Element element, ParserContext parserContext) {
RootBeanDefinition authProvider = new RootBeanDefinition(DaoAuthenticationProvider.class);
authProvider.setRole(BeanDefinition.ROLE_INFRASTRUCTURE);
authProvider.setSource(parserContext.extractSource(element));
Element passwordEncoderElt = DomUtils.getChildElementByTagName(element, Elements.PASSWORD_ENCODER);