Uses of Interface
org.apache.jackrabbit.server.io.IOHandler
-
Packages that use IOHandler Package Description org.apache.jackrabbit.server.io The jackrabbit webdav server uses the classes defined in this package in order to perform import and export operations in order to respond to PUT, MKCOL, PROPPATCH and PROPFIND, GET, HEAD requests, respectively. -
-
Uses of IOHandler in org.apache.jackrabbit.server.io
Classes in org.apache.jackrabbit.server.io that implement IOHandler Modifier and Type Class Description class
DefaultHandler
DefaultHandler
implements a simple IOHandler that creates 'file' and 'folder' nodes.class
DirListingExportHandler
DirListingExportHandler
represents a simple export for collections: a human-readable view listing the members.class
VersionHandler
class
VersionHistoryHandler
VersionHistoryHandler
...class
XmlHandler
XmlHandler
imports xml files and exports nodes that have the properXmlHandler.XML_MIMETYPE
defined with their content.class
ZipHandler
ZipHandler
imports and extracts Zip files and exported nodes (an their subnodes) to a Zip file.Methods in org.apache.jackrabbit.server.io that return IOHandler Modifier and Type Method Description IOHandler[]
IOManager. getIOHandlers()
Returns all handlers that have been added to this manager.IOHandler[]
IOManagerImpl. getIOHandlers()
Methods in org.apache.jackrabbit.server.io with parameters of type IOHandler Modifier and Type Method Description void
IOManager. addIOHandler(IOHandler ioHandler)
Adds the specified handler to the list of handlers.void
IOManagerImpl. addIOHandler(IOHandler ioHandler)
void
DefaultIOListener. onBegin(IOHandler handler, IOContext ioContext)
void
IOListener. onBegin(IOHandler handler, IOContext context)
The import/export context has been passed to the givenIOHandler
.void
DefaultIOListener. onEnd(IOHandler handler, IOContext ioContext, boolean success)
void
IOListener. onEnd(IOHandler handler, IOContext context, boolean success)
The specifiedIOHandler
finished.void
DefaultIOListener. onError(IOHandler ioHandler, IOContext ioContext, Exception e)
void
IOListener. onError(IOHandler ioHandler, IOContext context, Exception e)
An exception occurred during import/export within the specifiedIOHandler
.
-