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 void
addIOHandler(IOHandler ioHandler)
boolean
exportContent(ExportContext context, boolean isCollection)
boolean
exportContent(ExportContext context, org.apache.jackrabbit.webdav.DavResource resource)
IOHandler[]
getIOHandlers()
boolean
importContent(ImportContext context, boolean isCollection)
boolean
importContent(ImportContext context, org.apache.jackrabbit.webdav.DavResource resource)
void
setIOHandler(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
-
-