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
Modifier and TypeMethodDescriptionReturn 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.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 Details
-
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.
-