Class AnnotationDrivenBeanDefinitionParser
java.lang.Object
org.springframework.scheduling.config.AnnotationDrivenBeanDefinitionParser
- All Implemented Interfaces:
- BeanDefinitionParser
Parser for the 'annotation-driven' element of the 'task' namespace.
- Since:
- 3.0
- Author:
- Mark Fisher, Juergen Hoeller, Ramnivas Laddad, Chris Beams, Stephane Nicoll
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionparse(Element element, ParserContext parserContext) Parse the specifiedElementand register the resultingBeanDefinition(s)with theBeanDefinitionRegistryembedded in the suppliedParserContext.
- 
Constructor Details- 
AnnotationDrivenBeanDefinitionParserpublic AnnotationDrivenBeanDefinitionParser()
 
- 
- 
Method Details- 
parseDescription copied from interface:BeanDefinitionParserParse the specifiedElementand register the resultingBeanDefinition(s)with theBeanDefinitionRegistryembedded in the suppliedParserContext.Implementations must return the primary BeanDefinitionthat results from the parse if they will ever be used in a nested fashion (for example as an inner tag in a<property/>tag). Implementations may returnnullif they will not be used in a nested fashion.- Specified by:
- parsein interface- BeanDefinitionParser
- Parameters:
- element- the element that is to be parsed into one or more- BeanDefinitions
- parserContext- the object encapsulating the current state of the parsing process; provides access to a- BeanDefinitionRegistry
- Returns:
- the primary BeanDefinition
 
 
-