org.apache.jackrabbit.rmi.xml
Class ImportContentHandler

java.lang.Object
  extended byorg.apache.jackrabbit.rmi.xml.ImportContentHandler
All Implemented Interfaces:
ContentHandler
Direct Known Subclasses:
SessionImportContentHandler, WorkspaceImportContentHandler

public abstract class ImportContentHandler
extends Object
implements ContentHandler

Base class for a SAX content handler for importing XML data. This class provides a general mechanism for converting a SAX event stream to raw XML data and feeding the received byte array into an import method. Subclasses can provide different import mechanisms simply by implementing the abstract importXML(byte[]) method.

Author:
Jukka Zitting

Constructor Summary
ImportContentHandler()
          Creates a SAX content handler for importing XML data.
 
Method Summary
 void characters(char[] ch, int start, int length)
          
 void endDocument()
          
 void endElement(String uri, String localName, String qName)
          
 void endPrefixMapping(String prefix)
          
 void ignorableWhitespace(char[] ch, int start, int length)
          
protected abstract  void importXML(byte[] xml)
          Imports the given XML data.
 void processingInstruction(String target, String data)
          
 void setDocumentLocator(Locator locator)
          
 void skippedEntity(String name)
          
 void startDocument()
          
 void startElement(String uri, String localName, String qName, Attributes atts)
          
 void startPrefixMapping(String prefix, String uri)
          
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ImportContentHandler

public ImportContentHandler()
Creates a SAX content handler for importing XML data.

Method Detail

importXML

protected abstract void importXML(byte[] xml)
                           throws Exception
Imports the given XML data. This method is called by the endDocument() method after the received XML stream has been serialized.

Subclasses must implement this method to provide the actual import mechanism.

Parameters:
xml - the XML data to import
Throws:
Exception - on import errors

setDocumentLocator

public void setDocumentLocator(Locator locator)

Specified by:
setDocumentLocator in interface ContentHandler

startDocument

public void startDocument()
                   throws SAXException

Specified by:
startDocument in interface ContentHandler
Throws:
SAXException

endDocument

public void endDocument()
                 throws SAXException

Specified by:
endDocument in interface ContentHandler
Throws:
SAXException

startPrefixMapping

public void startPrefixMapping(String prefix,
                               String uri)
                        throws SAXException

Specified by:
startPrefixMapping in interface ContentHandler
Throws:
SAXException

endPrefixMapping

public void endPrefixMapping(String prefix)
                      throws SAXException

Specified by:
endPrefixMapping in interface ContentHandler
Throws:
SAXException

startElement

public void startElement(String uri,
                         String localName,
                         String qName,
                         Attributes atts)
                  throws SAXException

Specified by:
startElement in interface ContentHandler
Throws:
SAXException

endElement

public void endElement(String uri,
                       String localName,
                       String qName)
                throws SAXException

Specified by:
endElement in interface ContentHandler
Throws:
SAXException

characters

public void characters(char[] ch,
                       int start,
                       int length)
                throws SAXException

Specified by:
characters in interface ContentHandler
Throws:
SAXException

ignorableWhitespace

public void ignorableWhitespace(char[] ch,
                                int start,
                                int length)
                         throws SAXException

Specified by:
ignorableWhitespace in interface ContentHandler
Throws:
SAXException

processingInstruction

public void processingInstruction(String target,
                                  String data)
                           throws SAXException

Specified by:
processingInstruction in interface ContentHandler
Throws:
SAXException

skippedEntity

public void skippedEntity(String name)
                   throws SAXException

Specified by:
skippedEntity in interface ContentHandler
Throws:
SAXException


Copyright © 2004-2006 . All Rights Reserved.