Interface ISVNLoadHandler
-
- All Known Implementing Classes:
DefaultDumpFilterHandler
,DefaultLoadHandler
public interface ISVNLoadHandler
- Version:
- 1.3
- Author:
- TMate Software Ltd.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
applyTextDelta()
void
closeNode()
void
closeRevision()
void
deleteNodeProperty(java.lang.String propertyName)
void
openNode(java.util.Map headers)
void
openRevision(java.util.Map headers)
void
parseTextBlock(java.io.InputStream dumpStream, long contentLength, boolean isDelta)
void
parseUUID(java.lang.String uuid)
void
removeNodeProperties()
void
setFullText()
void
setNodeProperty(java.lang.String propertyName, SVNPropertyValue propertyValue)
void
setRevisionProperty(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
-
-