Package com.day.crx.io
Interface CRXExportHandler
-
public interface CRXExportHandlerThis Interface defines...
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddExcludedPath(java.lang.String path)voidexport(java.lang.String absPath, java.io.OutputStream out)java.lang.StringgetProperty(java.lang.String name)booleangetProperty(java.lang.String name, boolean def)booleanisExcludeNodeTypes()booleanisIncludeNeighborhood()booleanisIncludeUUIDs()voidsetExcludeNodeTypes(boolean excludeNodeTypes)voidsetIncludeNeighborhood(boolean includeNeighborhood)voidsetIncludeUUIDs(boolean includeUUIDs)voidsetProperty(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:
RepositoryExceptionjava.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)
-
-