Package org.apache.jackrabbit.server.io
Interface IOListener
-
- All Known Implementing Classes:
DefaultIOListener
public interface IOListener
IOListener
defines an import/export listener.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onBegin(IOHandler handler, IOContext context)
The import/export context has been passed to the givenIOHandler
.void
onEnd(IOHandler handler, IOContext context, boolean success)
The specifiedIOHandler
finished.void
onError(IOHandler ioHandler, IOContext context, Exception e)
An exception occurred during import/export within the specifiedIOHandler
.
-
-
-
Method Detail
-
onBegin
void onBegin(IOHandler handler, IOContext context)
The import/export context has been passed to the givenIOHandler
.
-
onEnd
void onEnd(IOHandler handler, IOContext context, boolean success)
The specifiedIOHandler
finished. A boolean flag indicates whether the handler was able to run the import/export.
-
-