org.tmatesoft.svn.core.io
Interface ISVNLockHandler
public interface ISVNLockHandler
The ISVNLockHandler interface is used to provide some extra
processing of locked/unlocked paths.
handleLock
public void handleLock(String path,
SVNLock lock,
SVNErrorMessage error)
throws SVNException Handles the path locked.
path - a file path relative to the repository
root directorylock - the lock set on this patherror - if not null then
it's an error message object for an error occurred
while trying to lock an entry, in this case
lock may be null
handleUnlock
public void handleUnlock(String path,
SVNLock lock,
SVNErrorMessage error)
throws SVNException Handles the path unlocked.
path - a file path relative to the repository
root directorylock - the lock released from this patherror - if not null then
it's an exception occurred while trying to unlock
the path, in this case lock
may be null
Copyright © 2004-2006 TMate Software Ltd. All Rights Reserved.