Liferay 6.1.2-ce-ga3

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_O(String className, String key, String owner)
          Returns the lock where className = ? and key = ? and owner = ? or throws a NoSuchLockException if it could not be found.
 Lock LockPersistence.findByC_K_O(String className, String key, String owner)
          Returns the lock where className = ? and key = ? and owner = ? or throws a NoSuchLockException if it could not be found.
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.
 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 < ?.
 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 < ?.
 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 < ?.
 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.
 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_First(String uuid, OrderByComparator orderByComparator)
          Returns the first lock in the ordered set where uuid = ?.
 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 = ?.
 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 = ?.
 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.
 Lock LockPersistence.remove(long lockId)
          Removes the lock with the primary key from the database.
static Lock LockUtil.removeByC_K_O(String className, String key, String owner)
          Removes the lock where className = ? and key = ? and owner = ? from the database.
 Lock LockPersistence.removeByC_K_O(String className, String key, String owner)
          Removes the lock where className = ? and key = ? and owner = ? from the database.
static Lock LockUtil.removeByC_K(String className, String key)
          Removes the lock where className = ? and key = ? from the database.
 Lock LockPersistence.removeByC_K(String className, String key)
          Removes the lock where className = ? and key = ? from the database.
 


Liferay 6.1.2-ce-ga3