Interface Importer
-
- All Known Implementing Classes:
SessionImporter
public interface Importer
TheImporter
interface ...
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Importer.NodeInfo
static class
Importer.PropInfo
static interface
Importer.TextValue
TextValue
represents a serialized property value read from a System or Document View XML document.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
end()
void
endNode(Importer.NodeInfo nodeInfo)
void
start()
void
startNode(Importer.NodeInfo nodeInfo, List<Importer.PropInfo> propInfos, NamePathResolver resolver)
-
-
-
Method Detail
-
start
void start() throws RepositoryException
- Throws:
RepositoryException
-
startNode
void startNode(Importer.NodeInfo nodeInfo, List<Importer.PropInfo> propInfos, NamePathResolver resolver) throws RepositoryException
- Parameters:
nodeInfo
-propInfos
- list ofPropInfo
instancesresolver
- NamePathResolver dealing with prefix mappings of current context.- Throws:
RepositoryException
-
endNode
void endNode(Importer.NodeInfo nodeInfo) throws RepositoryException
- Parameters:
nodeInfo
-- Throws:
RepositoryException
-
end
void end() throws RepositoryException
- Throws:
RepositoryException
-
-