Uses of Interface
org.apache.jackrabbit.server.io.IOContext
-
Packages that use IOContext 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 IOContext in org.apache.jackrabbit.server.io
Subinterfaces of IOContext in org.apache.jackrabbit.server.io Modifier and Type Interface Description interface
ExportContext
ExportContext
...interface
ImportContext
ImportContext
...interface
PropertyExportContext
PropertyExportContext
represents a marker interface to distinguish the ExportContext (which is mainly used to export data and some fundamental properties) from a context that is used to export properties only.interface
PropertyImportContext
PropertyImportContext
...Classes in org.apache.jackrabbit.server.io that implement IOContext Modifier and Type Class Description class
AbstractExportContext
AbstractExportContext
covers methods common to most ExportContext implementations.class
ExportContextImpl
ExportContextImpl
implements anExportContext
that wraps around the specified OutputContext as it was passed toDavResource.spool(OutputContext)
.class
ImportContextImpl
ImportContextImpl
...Methods in org.apache.jackrabbit.server.io with parameters of type IOContext Modifier and Type Method Description 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
.
-