Interface ISVNLock
-
public interface ISVNLockAn interface describing a lock as return by the lock operation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetComment()java.util.DategetCreationDate()java.util.DategetExpirationDate()java.lang.StringgetOwner()java.lang.StringgetPath()java.lang.StringgetToken()
-
-
-
Method Detail
-
getOwner
java.lang.String getOwner()
- Returns:
- the owner of the lock
-
getPath
java.lang.String getPath()
- Returns:
- the path of the locked item
-
getToken
java.lang.String getToken()
- Returns:
- the token provided during the lock operation
-
getComment
java.lang.String getComment()
- Returns:
- the comment provided during the lock operation
-
getCreationDate
java.util.Date getCreationDate()
- Returns:
- the date the lock was created
-
getExpirationDate
java.util.Date getExpirationDate()
- Returns:
- the date when the lock will expire
-
-