Liferay 6.0-ee-sp2

Uses of Class
com.liferay.portal.NoSuchLockException

Packages that use NoSuchLockException
com.liferay.portal.service.persistence   
 

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)
          Finds the lock where className = ? and key = ? or throws a NoSuchLockException if it could not be found.
 Lock LockPersistence.findByC_K(String className, String key)
          Finds 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)
          Finds the first lock in the ordered set where expirationDate < ?.
 Lock LockPersistence.findByLtExpirationDate_First(Date expirationDate, OrderByComparator orderByComparator)
          Finds the first lock in the ordered set where expirationDate < ?.
static Lock LockUtil.findByLtExpirationDate_Last(Date expirationDate, OrderByComparator orderByComparator)
          Finds the last lock in the ordered set where expirationDate < ?.
 Lock LockPersistence.findByLtExpirationDate_Last(Date expirationDate, OrderByComparator orderByComparator)
          Finds the last lock in the ordered set where expirationDate < ?.
static Lock[] LockUtil.findByLtExpirationDate_PrevAndNext(long lockId, Date expirationDate, OrderByComparator orderByComparator)
          Finds the locks before and after the current lock in the ordered set where expirationDate < ?.
 Lock[] LockPersistence.findByLtExpirationDate_PrevAndNext(long lockId, Date expirationDate, OrderByComparator orderByComparator)
          Finds the locks before and after the current lock in the ordered set where expirationDate < ?.
static Lock LockUtil.findByPrimaryKey(long lockId)
          Finds the lock with the primary key or throws a NoSuchLockException if it could not be found.
 Lock LockPersistence.findByPrimaryKey(long lockId)
          Finds 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)
          Finds the first lock in the ordered set where uuid = ?.
 Lock LockPersistence.findByUuid_First(String uuid, OrderByComparator orderByComparator)
          Finds the first lock in the ordered set where uuid = ?.
static Lock LockUtil.findByUuid_Last(String uuid, OrderByComparator orderByComparator)
          Finds the last lock in the ordered set where uuid = ?.
 Lock LockPersistence.findByUuid_Last(String uuid, OrderByComparator orderByComparator)
          Finds the last lock in the ordered set where uuid = ?.
static Lock[] LockUtil.findByUuid_PrevAndNext(long lockId, String uuid, OrderByComparator orderByComparator)
          Finds the locks before and after the current lock in the ordered set where uuid = ?.
 Lock[] LockPersistence.findByUuid_PrevAndNext(long lockId, String uuid, OrderByComparator orderByComparator)
          Finds 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 void LockUtil.removeByC_K(String className, String key)
          Removes the lock where className = ? and key = ? from the database.
 void LockPersistence.removeByC_K(String className, String key)
          Removes the lock where className = ? and key = ? from the database.
 


Liferay 6.0-ee-sp2