Package com.saperion.ngc.model.resultset
Interface ResultLockData
-
- All Known Implementing Classes:
ResultLockDataImpl
public interface ResultLockDataClass that holds information about the locking and checkout status of a result item.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetCheckoutUser()java.lang.StringgetLockUser()booleanisCheckedOut()booleanisLocked()booleanisLockedByCurrentUser()
-
-
-
Method Detail
-
isLocked
boolean isLocked()
- Returns:
- true, if the document is locked
-
isCheckedOut
boolean isCheckedOut()
- Returns:
- true, if the document is checked out
-
getLockUser
java.lang.String getLockUser()
- Returns:
- lock user name
-
getCheckoutUser
java.lang.String getCheckoutUser()
- Returns:
- checkout user name
-
isLockedByCurrentUser
boolean isLockedByCurrentUser()
- Returns:
- true, if the document is locked by current user
-
-