Interface ISVNLoadHandler
-
- All Known Implementing Classes:
DefaultDumpFilterHandler,DefaultLoadHandler
public interface ISVNLoadHandler- Version:
- 1.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidapplyTextDelta()voidcloseNode()voidcloseRevision()voiddeleteNodeProperty(java.lang.String propertyName)voidopenNode(java.util.Map headers)voidopenRevision(java.util.Map headers)voidparseTextBlock(java.io.InputStream dumpStream, long contentLength, boolean isDelta)voidparseUUID(java.lang.String uuid)voidremoveNodeProperties()voidsetFullText()voidsetNodeProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)voidsetRevisionProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)
-
-
-
Method Detail
-
closeRevision
void closeRevision() throws SVNException- Throws:
SVNException
-
openRevision
void openRevision(java.util.Map headers) throws SVNException- Throws:
SVNException
-
openNode
void openNode(java.util.Map headers) throws SVNException- Throws:
SVNException
-
closeNode
void closeNode() throws SVNException- Throws:
SVNException
-
parseUUID
void parseUUID(java.lang.String uuid) throws SVNException- Throws:
SVNException
-
removeNodeProperties
void removeNodeProperties() throws SVNException- Throws:
SVNException
-
setRevisionProperty
void setRevisionProperty(java.lang.String propertyName, SVNPropertyValue propertyValue) throws SVNException- Throws:
SVNException
-
applyTextDelta
void applyTextDelta() throws SVNException- Throws:
SVNException
-
setFullText
void setFullText() throws SVNException- Throws:
SVNException
-
parseTextBlock
void parseTextBlock(java.io.InputStream dumpStream, long contentLength, boolean isDelta) throws SVNException- Throws:
SVNException
-
deleteNodeProperty
void deleteNodeProperty(java.lang.String propertyName) throws SVNException- Throws:
SVNException
-
setNodeProperty
void setNodeProperty(java.lang.String propertyName, SVNPropertyValue propertyValue) throws SVNException- Throws:
SVNException
-
-