| java.lang.Object org.tigris.subversion.javahl.Lock
Lock | public class Lock (Code) | | class to describe a lock. It is return by the lock operation
since: 1.2 |
Lock | Lock(String owner, String path, String token, String comment, long creationDate, long expirationDate)(Code) | | this constructor should only called from JNI code
Parameters: owner - the owner of the lock Parameters: path - the path of the locked item Parameters: token - the lock token Parameters: comment - the lock comment Parameters: creationDate - the date when the lock was created Parameters: expirationDate - the date when the lock will expire |
getComment | public String getComment()(Code) | | the comment provided during the lock operation |
getCreationDate | public Date getCreationDate()(Code) | | the date the lock was created |
getExpirationDate | public Date getExpirationDate()(Code) | | the date when the lock will expire |
getOwner | public String getOwner()(Code) | | the owner of the lock |
getPath | public String getPath()(Code) | | the path of the locked item |
getToken | public String getToken()(Code) | | the token provided during the lock operation |
|
|