spring-context

org.springframework.scheduling.config
Class AnnotationDrivenBeanDefinitionParser

java.lang.Object
  extended by org.springframework.scheduling.config.AnnotationDrivenBeanDefinitionParser
All Implemented Interfaces:
org.springframework.beans.factory.xml.BeanDefinitionParser

public class AnnotationDrivenBeanDefinitionParser
extends java.lang.Object
implements org.springframework.beans.factory.xml.BeanDefinitionParser

Parser for the 'annotation-driven' element of the 'task' namespace.

Since:
3.0
Author:
Mark Fisher, Juergen Hoeller, Ramnivas Laddad, Chris Beams

Field Summary
static java.lang.String ASYNC_ANNOTATION_PROCESSOR_BEAN_NAME
          Deprecated. as of Spring 3.1 in favor of AnnotationConfigUtils.ASYNC_ANNOTATION_PROCESSOR_BEAN_NAME
static java.lang.String ASYNC_EXECUTION_ASPECT_BEAN_NAME
          Deprecated. as of Spring 3.1 in favor of AnnotationConfigUtils.ASYNC_EXECUTION_ASPECT_BEAN_NAME
static java.lang.String SCHEDULED_ANNOTATION_PROCESSOR_BEAN_NAME
          Deprecated. as of Spring 3.1 in favor of AnnotationConfigUtils.SCHEDULED_ANNOTATION_PROCESSOR_BEAN_NAME
 
Constructor Summary
AnnotationDrivenBeanDefinitionParser()
           
 
Method Summary
 org.springframework.beans.factory.config.BeanDefinition parse(org.w3c.dom.Element element, org.springframework.beans.factory.xml.ParserContext parserContext)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

ASYNC_ANNOTATION_PROCESSOR_BEAN_NAME

@Deprecated
public static final java.lang.String ASYNC_ANNOTATION_PROCESSOR_BEAN_NAME
Deprecated. as of Spring 3.1 in favor of AnnotationConfigUtils.ASYNC_ANNOTATION_PROCESSOR_BEAN_NAME
The bean name of the internally managed async annotation processor (mode="proxy").

See Also:
Constant Field Values

ASYNC_EXECUTION_ASPECT_BEAN_NAME

@Deprecated
public static final java.lang.String ASYNC_EXECUTION_ASPECT_BEAN_NAME
Deprecated. as of Spring 3.1 in favor of AnnotationConfigUtils.ASYNC_EXECUTION_ASPECT_BEAN_NAME
The bean name of the internally managed transaction aspect (mode="aspectj").

See Also:
Constant Field Values

SCHEDULED_ANNOTATION_PROCESSOR_BEAN_NAME

@Deprecated
public static final java.lang.String SCHEDULED_ANNOTATION_PROCESSOR_BEAN_NAME
Deprecated. as of Spring 3.1 in favor of AnnotationConfigUtils.SCHEDULED_ANNOTATION_PROCESSOR_BEAN_NAME
The bean name of the internally managed scheduled annotation processor.

See Also:
Constant Field Values
Constructor Detail

AnnotationDrivenBeanDefinitionParser

public AnnotationDrivenBeanDefinitionParser()
Method Detail

parse

public org.springframework.beans.factory.config.BeanDefinition parse(org.w3c.dom.Element element,
                                                                     org.springframework.beans.factory.xml.ParserContext parserContext)
Specified by:
parse in interface org.springframework.beans.factory.xml.BeanDefinitionParser

spring-context