Package org.apache.jackrabbit.server.io
Interface IOListener
-
- All Known Implementing Classes:
DefaultIOListener
public interface IOListenerIOListenerdefines an import/export listener.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonBegin(IOHandler handler, IOContext context)The import/export context has been passed to the givenIOHandler.voidonEnd(IOHandler handler, IOContext context, boolean success)The specifiedIOHandlerfinished.voidonError(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 specifiedIOHandlerfinished. A boolean flag indicates whether the handler was able to run the import/export.
-
-