org.springframework.web.servlet.config
Class AbstractHttpRequestHandlerBeanDefinitionParser

java.lang.Object
  extended by org.springframework.web.servlet.config.AbstractHttpRequestHandlerBeanDefinitionParser
All Implemented Interfaces:
BeanDefinitionParser
Direct Known Subclasses:
DefaultServletHandlerBeanDefinitionParser, ResourcesBeanDefinitionParser

abstract class AbstractHttpRequestHandlerBeanDefinitionParser
extends java.lang.Object
implements BeanDefinitionParser

Abstract base class for BeanDefinitonParsers that register an HttpRequestHandler.

Since:
3.0.4
Author:
Jeremy Grelle

Field Summary
private static java.lang.String HANDLER_ADAPTER_BEAN_NAME
           
 
Constructor Summary
AbstractHttpRequestHandlerBeanDefinitionParser()
           
 
Method Summary
abstract  void doParse(org.w3c.dom.Element element, ParserContext parserContext)
           
 BeanDefinition parse(org.w3c.dom.Element element, ParserContext parserContext)
          Parse the specified Element and register the resulting BeanDefinition(s) with the ParserContext.getRegistry() BeanDefinitionRegistry} embedded in the supplied ParserContext.
private  void registerHandlerAdapterIfNecessary(ParserContext parserContext, java.lang.Object source)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

HANDLER_ADAPTER_BEAN_NAME

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

AbstractHttpRequestHandlerBeanDefinitionParser

AbstractHttpRequestHandlerBeanDefinitionParser()
Method Detail

parse

public BeanDefinition parse(org.w3c.dom.Element element,
                            ParserContext parserContext)
Description copied from interface: BeanDefinitionParser
Parse the specified Element and register the resulting BeanDefinition(s) with the ParserContext.getRegistry() BeanDefinitionRegistry} embedded in the supplied ParserContext.

Implementations must return the primary BeanDefinition that 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 return null if they will not be used in a nested fashion.

Specified by:
parse in 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

doParse

public abstract void doParse(org.w3c.dom.Element element,
                             ParserContext parserContext)

registerHandlerAdapterIfNecessary

private void registerHandlerAdapterIfNecessary(ParserContext parserContext,
                                               java.lang.Object source)