Package com.logicaldoc.webdav.io.manager
Interface IOManager
- 
- All Superinterfaces:
 Serializable
- All Known Implementing Classes:
 DefaultIOManager,IOManagerImpl
public interface IOManager extends Serializable
For more informations, please visitIOManager- Author:
 - Sebastian Wenzky
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddIOHandler(IOHandler ioHandler)booleanexportContent(ExportContext context, boolean isCollection)booleanexportContent(ExportContext context, org.apache.jackrabbit.webdav.DavResource resource)IOHandler[]getIOHandlers()booleanimportContent(ImportContext context, boolean isCollection)booleanimportContent(ImportContext context, org.apache.jackrabbit.webdav.DavResource resource)voidsetIOHandler(List<IOHandler> handler) 
 - 
 
- 
- 
Method Detail
- 
addIOHandler
void addIOHandler(IOHandler ioHandler)
 
- 
getIOHandlers
IOHandler[] getIOHandlers()
 
- 
importContent
boolean importContent(ImportContext context, boolean isCollection) throws IOException
- Throws:
 IOException
 
- 
importContent
boolean importContent(ImportContext context, org.apache.jackrabbit.webdav.DavResource resource) throws IOException
- Throws:
 IOException
 
- 
exportContent
boolean exportContent(ExportContext context, boolean isCollection) throws IOException
- Throws:
 IOException
 
- 
exportContent
boolean exportContent(ExportContext context, org.apache.jackrabbit.webdav.DavResource resource) throws IOException
- Throws:
 IOException
 
 - 
 
 -