Package org.hippoecm.repository.util
Interface CopyHandler
-
- All Known Implementing Classes:
DefaultCopyHandler
,OverwritingCopyHandler
public interface CopyHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description void
endNode()
Node
getCurrent()
void
setProperty(PropInfo property)
default boolean
skipNode(Node srcChild)
void
startNode(NodeInfo nodeInfo)
-
-
-
Method Detail
-
startNode
void startNode(NodeInfo nodeInfo) throws RepositoryException
- Throws:
RepositoryException
-
endNode
void endNode() throws RepositoryException
- Throws:
RepositoryException
-
setProperty
void setProperty(PropInfo property) throws RepositoryException
- Throws:
RepositoryException
-
getCurrent
Node getCurrent()
-
skipNode
default boolean skipNode(Node srcChild) throws RepositoryException
- Parameters:
srcChild
- the node to check- Returns:
true
if the child from the source needs to be skippoed- Throws:
RepositoryException
-
-