Package com.saperion.ngc.model.resultset
Interface ResultLockData
-
- All Known Implementing Classes:
ResultLockDataImpl
public interface ResultLockData
Class 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.String
getCheckoutUser()
java.lang.String
getLockUser()
boolean
isCheckedOut()
boolean
isLocked()
boolean
isLockedByCurrentUser()
-
-
-
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
-
-