Package org.tmatesoft.svn.core.io
Interface ISVNLockHandler
public interface ISVNLockHandler
The ISVNLockHandler interface is used to provide some extra
processing of locked/unlocked paths.
- Since:
- 1.2
- Version:
- 1.3
- Author:
- TMate Software Ltd.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidhandleLock(String path, SVNLock lock, SVNErrorMessage error) Handles the path locked.voidhandleUnlock(String path, SVNLock lock, SVNErrorMessage error) Handles the path unlocked.
-
Method Details
-
handleLock
Handles the path locked.- Parameters:
path- a file path relative to the repository root directorylock- the lock set on thispatherror- if not null then it's an error message object for an error occurred while trying to lock an entry, in this caselockmay be null- Throws:
SVNException
-
handleUnlock
Handles the path unlocked.- Parameters:
path- a file path relative to the repository root directorylock- the lock released from thispatherror- if not null then it's an exception occurred while trying to unlock thepath, in this caselockmay be null- Throws:
SVNException
-