org.springframework.beans.factory.xml
Interface DocumentLoader
- All Known Implementing Classes: 
- DefaultDocumentLoader
- public interface DocumentLoader 
Strategy interface for loading an XML Document.
- Since:
- 2.0
- Author:
- Rob Harrop
- See Also:
- DefaultDocumentLoader
 
loadDocument
Document loadDocument(InputSource inputSource,
                      EntityResolver entityResolver,
                      ErrorHandler errorHandler,
                      int validationMode,
                      boolean namespaceAware)
                      throws Exception
- Load a documentfrom the suppliedsource.
 
- 
- Parameters:
- inputSource- the source of the document that is to be loaded
- entityResolver- the resolver that is to be used to resolve any entities
- errorHandler- used to report any errors during document loading
- validationMode- the type of validation- DTDor- XSD)
- namespaceAware-- trueif the loading is provide support for XML namespaces
- Returns:
- the loaded document
- Throws:
- Exception- if an error occurs
 
Copyright © 2002-2008 The Spring Framework.