Liferay 6.2.0

Uses of Class
com.liferay.portal.NoSuchLockException

Packages that use NoSuchLockException
com.liferay.portal.service.persistence This package defines the portal service persistence interfaces, classes, and utilities. 
 

Uses of NoSuchLockException in com.liferay.portal.service.persistence
 

Methods in com.liferay.portal.service.persistence that throw NoSuchLockException
static Lock LockUtil.findByC_K(String className, String key)
          Returns the lock where className = ? and key = ? or throws a NoSuchLockException if it could not be found.
abstract  Lock LockPersistence.findByC_K(String className, String key)
          Returns the lock where className = ? and key = ? or throws a NoSuchLockException if it could not be found.
static Lock LockUtil.findByLtExpirationDate_First(Date expirationDate, OrderByComparator orderByComparator)
          Returns the first lock in the ordered set where expirationDate < ?.
abstract  Lock LockPersistence.findByLtExpirationDate_First(Date expirationDate, OrderByComparator orderByComparator)
          Returns the first lock in the ordered set where expirationDate < ?.
static Lock LockUtil.findByLtExpirationDate_Last(Date expirationDate, OrderByComparator orderByComparator)
          Returns the last lock in the ordered set where expirationDate < ?.
abstract  Lock LockPersistence.findByLtExpirationDate_Last(Date expirationDate, OrderByComparator orderByComparator)
          Returns the last lock in the ordered set where expirationDate < ?.
static Lock[] LockUtil.findByLtExpirationDate_PrevAndNext(long lockId, Date expirationDate, OrderByComparator orderByComparator)
          Returns the locks before and after the current lock in the ordered set where expirationDate < ?.
abstract  Lock[] LockPersistence.findByLtExpirationDate_PrevAndNext(long lockId, Date expirationDate, OrderByComparator orderByComparator)
          Returns the locks before and after the current lock in the ordered set where expirationDate < ?.
static Lock LockUtil.findByPrimaryKey(long lockId)
          Returns the lock with the primary key or throws a NoSuchLockException if it could not be found.
abstract  Lock LockPersistence.findByPrimaryKey(long lockId)
          Returns the lock with the primary key or throws a NoSuchLockException if it could not be found.
static Lock LockUtil.findByUuid_C_First(String uuid, long companyId, OrderByComparator orderByComparator)
          Returns the first lock in the ordered set where uuid = ? and companyId = ?.
abstract  Lock LockPersistence.findByUuid_C_First(String uuid, long companyId, OrderByComparator orderByComparator)
          Returns the first lock in the ordered set where uuid = ? and companyId = ?.
static Lock LockUtil.findByUuid_C_Last(String uuid, long companyId, OrderByComparator orderByComparator)
          Returns the last lock in the ordered set where uuid = ? and companyId = ?.
abstract  Lock LockPersistence.findByUuid_C_Last(String uuid, long companyId, OrderByComparator orderByComparator)
          Returns the last lock in the ordered set where uuid = ? and companyId = ?.
static Lock[] LockUtil.findByUuid_C_PrevAndNext(long lockId, String uuid, long companyId, OrderByComparator orderByComparator)
          Returns the locks before and after the current lock in the ordered set where uuid = ? and companyId = ?.
abstract  Lock[] LockPersistence.findByUuid_C_PrevAndNext(long lockId, String uuid, long companyId, OrderByComparator orderByComparator)
          Returns the locks before and after the current lock in the ordered set where uuid = ? and companyId = ?.
static Lock LockUtil.findByUuid_First(String uuid, OrderByComparator orderByComparator)
          Returns the first lock in the ordered set where uuid = ?.
abstract  Lock LockPersistence.findByUuid_First(String uuid, OrderByComparator orderByComparator)
          Returns the first lock in the ordered set where uuid = ?.
static Lock LockUtil.findByUuid_Last(String uuid, OrderByComparator orderByComparator)
          Returns the last lock in the ordered set where uuid = ?.
abstract  Lock LockPersistence.findByUuid_Last(String uuid, OrderByComparator orderByComparator)
          Returns the last lock in the ordered set where uuid = ?.
static Lock[] LockUtil.findByUuid_PrevAndNext(long lockId, String uuid, OrderByComparator orderByComparator)
          Returns the locks before and after the current lock in the ordered set where uuid = ?.
abstract  Lock[] LockPersistence.findByUuid_PrevAndNext(long lockId, String uuid, OrderByComparator orderByComparator)
          Returns the locks before and after the current lock in the ordered set where uuid = ?.
static Lock LockUtil.remove(long lockId)
          Removes the lock with the primary key from the database.
abstract  Lock LockPersistence.remove(long lockId)
          Removes the lock with the primary key from the database.
static Lock LockUtil.removeByC_K(String className, String key)
          Removes the lock where className = ? and key = ? from the database.
abstract  Lock LockPersistence.removeByC_K(String className, String key)
          Removes the lock where className = ? and key = ? from the database.
 


Liferay 6.2.0