Package com.day.crx.io
Interface CRXExportHandler
-
public interface CRXExportHandler
This Interface defines...
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addExcludedPath(java.lang.String path)
void
export(java.lang.String absPath, java.io.OutputStream out)
java.lang.String
getProperty(java.lang.String name)
boolean
getProperty(java.lang.String name, boolean def)
boolean
isExcludeNodeTypes()
boolean
isIncludeNeighborhood()
boolean
isIncludeUUIDs()
void
setExcludeNodeTypes(boolean excludeNodeTypes)
void
setIncludeNeighborhood(boolean includeNeighborhood)
void
setIncludeUUIDs(boolean includeUUIDs)
void
setProperty(java.lang.String name, java.lang.String value)
-
-
-
Method Detail
-
export
void export(java.lang.String absPath, java.io.OutputStream out) throws RepositoryException, java.io.IOException
- Throws:
RepositoryException
java.io.IOException
-
setProperty
void setProperty(java.lang.String name, java.lang.String value)
-
getProperty
java.lang.String getProperty(java.lang.String name)
-
getProperty
boolean getProperty(java.lang.String name, boolean def)
-
isIncludeNeighborhood
boolean isIncludeNeighborhood()
-
setIncludeNeighborhood
void setIncludeNeighborhood(boolean includeNeighborhood)
-
isExcludeNodeTypes
boolean isExcludeNodeTypes()
-
setExcludeNodeTypes
void setExcludeNodeTypes(boolean excludeNodeTypes)
-
setIncludeUUIDs
void setIncludeUUIDs(boolean includeUUIDs)
-
isIncludeUUIDs
boolean isIncludeUUIDs()
-
addExcludedPath
void addExcludedPath(java.lang.String path)
-
-