public class ImportHandler extends DefaultHandler
ImportHandler instance can be used to import serialized
data in System View XML or Document View XML. Processing of the XML is
handled by specialized ContentHandlers
(i.e. SysViewImportHandler and DocViewImportHandler).
The actual task of importing though is delegated to the implementation of
the interface.
Importer
Important Note:
These SAX Event Handlers expect that Namespace URI's and local names are
reported in the start/endElement events and that
start/endPrefixMapping events are reported
(i.e. default SAX2 Namespace processing).
| Modifier and Type | Field and Description |
|---|---|
protected Importer |
importer |
protected Locator |
locator |
| Constructor and Description |
|---|
ImportHandler(Importer importer,
Session session) |
| Modifier and Type | Method and Description |
|---|---|
void |
characters(char[] ch,
int start,
int length) |
void |
endDocument() |
void |
endElement(String namespaceURI,
String localName,
String qName)
Delegates the call to the underlying target handler and asks the
handler to end the current namespace context.
|
void |
error(SAXParseException e) |
void |
fatalError(SAXParseException e) |
void |
setDocumentLocator(Locator locator) |
void |
startElement(String namespaceURI,
String localName,
String qName,
Attributes atts) |
void |
startPrefixMapping(String prefix,
String uri)
Records the given namespace mapping to be included in the local
namespace context.
|
void |
warning(SAXParseException e) |
endPrefixMapping, ignorableWhitespace, notationDecl, processingInstruction, resolveEntity, skippedEntity, startDocument, unparsedEntityDeclpublic ImportHandler(Importer importer, Session session) throws RepositoryException
RepositoryExceptionpublic void warning(SAXParseException e) throws SAXException
warning in interface ErrorHandlerwarning in class DefaultHandlerSAXExceptionpublic void error(SAXParseException e) throws SAXException
error in interface ErrorHandlererror in class DefaultHandlerSAXExceptionpublic void fatalError(SAXParseException e) throws SAXException
fatalError in interface ErrorHandlerfatalError in class DefaultHandlerSAXExceptionpublic void endDocument()
throws SAXException
endDocument in interface ContentHandlerendDocument in class DefaultHandlerSAXExceptionpublic void startPrefixMapping(String prefix, String uri) throws SAXException
startElement(String, String, String, Attributes) using
all the the namespace mappings recorded for the current XML element.
The namespace is also recorded in the persistent namespace registry unless it is already known.
startPrefixMapping in interface ContentHandlerstartPrefixMapping in class DefaultHandlerprefix - namespace prefixuri - namespace URISAXExceptionpublic void startElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXException
startElement in interface ContentHandlerstartElement in class DefaultHandlerSAXExceptionpublic void characters(char[] ch,
int start,
int length)
throws SAXException
characters in interface ContentHandlercharacters in class DefaultHandlerSAXExceptionpublic void endElement(String namespaceURI, String localName, String qName) throws SAXException
endElement in interface ContentHandlerendElement in class DefaultHandlerSAXExceptionpublic void setDocumentLocator(Locator locator)
setDocumentLocator in interface ContentHandlersetDocumentLocator in class DefaultHandlerCopyright © 2004–2022 The Apache Software Foundation. All rights reserved.