Package org.onehippo.repository.xml
Interface ImportResult
-
public interface ImportResult
Encapsulates different aspects of the result of importing an enhanced system view xml document.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Node
getBaseNode()
Return either the root of the subtree that was added or the root of the subtree that was merged with in the case of a delta combine.Collection<String>
getContextPaths()
A context path is either the path to the root node of an added subtree or the path to a node the imported xml merged with.
-
-
-
Method Detail
-
getContextPaths
Collection<String> getContextPaths()
A context path is either the path to the root node of an added subtree or the path to a node the imported xml merged with. The concept of context paths is important when the xml needs to be reapplied due to a reload later.
-
getBaseNode
Node getBaseNode()
Return either the root of the subtree that was added or the root of the subtree that was merged with in the case of a delta combine.
-
-