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 TypeMethodDescriptionvoid
handleLock
(String path, SVNLock lock, SVNErrorMessage error) Handles the path locked.void
handleUnlock
(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 thispath
error
- if not null then it's an error message object for an error occurred while trying to lock an entry, in this caselock
may be null- Throws:
SVNException
-
handleUnlock
Handles the path unlocked.- Parameters:
path
- a file path relative to the repository root directorylock
- the lock released from thispath
error
- if not null then it's an exception occurred while trying to unlock thepath
, in this caselock
may be null- Throws:
SVNException
-