org.springframework.transaction.config
Class TxAdviceBeanDefinitionParser

java.lang.Object
  extended by org.springframework.beans.factory.xml.AbstractBeanDefinitionParser
      extended by org.springframework.beans.factory.xml.AbstractSingleBeanDefinitionParser
          extended by org.springframework.transaction.config.TxAdviceBeanDefinitionParser
All Implemented Interfaces:
BeanDefinitionParser

 class TxAdviceBeanDefinitionParser
extends AbstractSingleBeanDefinitionParser

BeanDefinitionParser for the <tx:advice/> tag.

Since:
2.0
Author:
Rob Harrop, Juergen Hoeller, Adrian Colyer, Chris Beams

Field Summary
private static java.lang.String ATTRIBUTES_ELEMENT
           
private static java.lang.String ISOLATION_ATTRIBUTE
           
private static java.lang.String METHOD_ELEMENT
           
private static java.lang.String METHOD_NAME_ATTRIBUTE
           
private static java.lang.String NO_ROLLBACK_FOR_ATTRIBUTE
           
private static java.lang.String PROPAGATION_ATTRIBUTE
           
private static java.lang.String READ_ONLY_ATTRIBUTE
           
private static java.lang.String ROLLBACK_FOR_ATTRIBUTE
           
private static java.lang.String TIMEOUT_ATTRIBUTE
           
 
Fields inherited from class org.springframework.beans.factory.xml.AbstractBeanDefinitionParser
ID_ATTRIBUTE, NAME_ATTRIBUTE
 
Constructor Summary
TxAdviceBeanDefinitionParser()
           
 
Method Summary
private  void addNoRollbackRuleAttributesTo(java.util.List<RollbackRuleAttribute> rollbackRules, java.lang.String noRollbackForValue)
           
private  void addRollbackRuleAttributesTo(java.util.List<RollbackRuleAttribute> rollbackRules, java.lang.String rollbackForValue)
           
protected  void doParse(org.w3c.dom.Element element, ParserContext parserContext, BeanDefinitionBuilder builder)
          Parse the supplied Element and populate the supplied BeanDefinitionBuilder as required.
protected  java.lang.Class<?> getBeanClass(org.w3c.dom.Element element)
          Determine the bean class corresponding to the supplied Element.
private  RootBeanDefinition parseAttributeSource(org.w3c.dom.Element attrEle, ParserContext parserContext)
           
 
Methods inherited from class org.springframework.beans.factory.xml.AbstractSingleBeanDefinitionParser
doParse, getBeanClassName, getParentName, parseInternal
 
Methods inherited from class org.springframework.beans.factory.xml.AbstractBeanDefinitionParser
parse, postProcessComponentDefinition, registerBeanDefinition, resolveId, shouldFireEvents, shouldGenerateId, shouldGenerateIdAsFallback
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

METHOD_ELEMENT

private static final java.lang.String METHOD_ELEMENT
See Also:
Constant Field Values

METHOD_NAME_ATTRIBUTE

private static final java.lang.String METHOD_NAME_ATTRIBUTE
See Also:
Constant Field Values

ATTRIBUTES_ELEMENT

private static final java.lang.String ATTRIBUTES_ELEMENT
See Also:
Constant Field Values

TIMEOUT_ATTRIBUTE

private static final java.lang.String TIMEOUT_ATTRIBUTE
See Also:
Constant Field Values

READ_ONLY_ATTRIBUTE

private static final java.lang.String READ_ONLY_ATTRIBUTE
See Also:
Constant Field Values

PROPAGATION_ATTRIBUTE

private static final java.lang.String PROPAGATION_ATTRIBUTE
See Also:
Constant Field Values

ISOLATION_ATTRIBUTE

private static final java.lang.String ISOLATION_ATTRIBUTE
See Also:
Constant Field Values

ROLLBACK_FOR_ATTRIBUTE

private static final java.lang.String ROLLBACK_FOR_ATTRIBUTE
See Also:
Constant Field Values

NO_ROLLBACK_FOR_ATTRIBUTE

private static final java.lang.String NO_ROLLBACK_FOR_ATTRIBUTE
See Also:
Constant Field Values
Constructor Detail

TxAdviceBeanDefinitionParser

TxAdviceBeanDefinitionParser()
Method Detail

getBeanClass

protected java.lang.Class<?> getBeanClass(org.w3c.dom.Element element)
Description copied from class: AbstractSingleBeanDefinitionParser
Determine the bean class corresponding to the supplied Element.

Note that, for application classes, it is generally preferable to override AbstractSingleBeanDefinitionParser.getBeanClassName(org.w3c.dom.Element) instead, in order to avoid a direct dependence on the bean implementation class. The BeanDefinitionParser and its NamespaceHandler can be used within an IDE plugin then, even if the application classes are not available on the plugin's classpath.

Overrides:
getBeanClass in class AbstractSingleBeanDefinitionParser
Parameters:
element - the Element that is being parsed
Returns:
the Class of the bean that is being defined via parsing the supplied Element, or null if none
See Also:
AbstractSingleBeanDefinitionParser.getBeanClassName(org.w3c.dom.Element)

doParse

protected void doParse(org.w3c.dom.Element element,
                       ParserContext parserContext,
                       BeanDefinitionBuilder builder)
Description copied from class: AbstractSingleBeanDefinitionParser
Parse the supplied Element and populate the supplied BeanDefinitionBuilder as required.

The default implementation delegates to the doParse version without ParserContext argument.

Overrides:
doParse in class AbstractSingleBeanDefinitionParser
Parameters:
element - the XML element being parsed
parserContext - the object encapsulating the current state of the parsing process
builder - used to define the BeanDefinition
See Also:
AbstractSingleBeanDefinitionParser.doParse(Element, BeanDefinitionBuilder)

parseAttributeSource

private RootBeanDefinition parseAttributeSource(org.w3c.dom.Element attrEle,
                                                ParserContext parserContext)

addRollbackRuleAttributesTo

private void addRollbackRuleAttributesTo(java.util.List<RollbackRuleAttribute> rollbackRules,
                                         java.lang.String rollbackForValue)

addNoRollbackRuleAttributesTo

private void addNoRollbackRuleAttributesTo(java.util.List<RollbackRuleAttribute> rollbackRules,
                                           java.lang.String noRollbackForValue)