Liferay 6.0.5

com.liferay.portal.service
Class LockLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portal.service.LockLocalServiceWrapper
All Implemented Interfaces:
LockLocalService

public class LockLocalServiceWrapper
extends Object
implements LockLocalService

This class is a wrapper for LockLocalService.

See Also:
LockLocalService
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Constructor Summary
LockLocalServiceWrapper(LockLocalService lockLocalService)
           
 
Method Summary
 Lock addLock(Lock lock)
          Adds the lock to the database.
 void clear()
           
 Lock createLock(long lockId)
          Creates a new lock with the primary key.
 void deleteLock(Lock lock)
          Deletes the lock from the database.
 void deleteLock(long lockId)
          Deletes the lock with the primary key from the database.
 List dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
          Performs a dynamic query on the database and returns a range of the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
          Performs a dynamic query on the database and returns an ordered range of the matching rows.
 long dynamicQueryCount(DynamicQuery dynamicQuery)
          Counts the number of rows that match the dynamic query.
 Lock getLock(long lockId)
          Gets the lock with the primary key.
 Lock getLock(String className, long key)
           
 Lock getLock(String className, String key)
           
 List<Lock> getLocks(int start, int end)
          Gets a range of all the locks.
 int getLocksCount()
          Gets the number of locks.
 LockLocalService getWrappedLockLocalService()
           
 boolean hasLock(long userId, String className, long key)
           
 boolean hasLock(long userId, String className, String key)
           
 boolean isLocked(String className, long key)
           
 boolean isLocked(String className, String key)
           
 Lock lock(long userId, String className, long key, String owner, boolean inheritable, long expirationTime)
           
 Lock lock(long userId, String className, String key, String owner, boolean inheritable, long expirationTime)
           
 Lock refresh(String uuid, long expirationTime)
           
 void unlock(String className, long key)
           
 void unlock(String className, String key)
           
 Lock updateLock(Lock lock)
          Updates the lock in the database.
 Lock updateLock(Lock lock, boolean merge)
          Updates the lock in the database.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LockLocalServiceWrapper

public LockLocalServiceWrapper(LockLocalService lockLocalService)
Method Detail

addLock

public Lock addLock(Lock lock)
             throws SystemException
Adds the lock to the database. Also notifies the appropriate model listeners.

Specified by:
addLock in interface LockLocalService
Parameters:
lock - the lock to add
Returns:
the lock that was added
Throws:
SystemException - if a system exception occurred

createLock

public Lock createLock(long lockId)
Creates a new lock with the primary key. Does not add the lock to the database.

Specified by:
createLock in interface LockLocalService
Parameters:
lockId - the primary key for the new lock
Returns:
the new lock

deleteLock

public void deleteLock(long lockId)
                throws PortalException,
                       SystemException
Deletes the lock with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
deleteLock in interface LockLocalService
Parameters:
lockId - the primary key of the lock to delete
Throws:
PortalException - if a lock with the primary key could not be found
SystemException - if a system exception occurred

deleteLock

public void deleteLock(Lock lock)
                throws SystemException
Deletes the lock from the database. Also notifies the appropriate model listeners.

Specified by:
deleteLock in interface LockLocalService
Parameters:
lock - the lock to delete
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery)
                  throws SystemException
Performs a dynamic query on the database and returns the matching rows.

Specified by:
dynamicQuery in interface LockLocalService
Parameters:
dynamicQuery - the dynamic query to search with
Returns:
the matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery,
                         int start,
                         int end)
                  throws SystemException
Performs a dynamic query on the database and returns a range of the matching rows.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Specified by:
dynamicQuery in interface LockLocalService
Parameters:
dynamicQuery - the dynamic query to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (not inclusive)
Returns:
the range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery,
                         int start,
                         int end,
                         OrderByComparator orderByComparator)
                  throws SystemException
Performs a dynamic query on the database and returns an ordered range of the matching rows.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Specified by:
dynamicQuery in interface LockLocalService
Parameters:
dynamicQuery - the dynamic query to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

public long dynamicQueryCount(DynamicQuery dynamicQuery)
                       throws SystemException
Counts the number of rows that match the dynamic query.

Specified by:
dynamicQueryCount in interface LockLocalService
Parameters:
dynamicQuery - the dynamic query to search with
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

getLock

public Lock getLock(long lockId)
             throws PortalException,
                    SystemException
Gets the lock with the primary key.

Specified by:
getLock in interface LockLocalService
Parameters:
lockId - the primary key of the lock to get
Returns:
the lock
Throws:
PortalException - if a lock with the primary key could not be found
SystemException - if a system exception occurred

getLocks

public List<Lock> getLocks(int start,
                           int end)
                    throws SystemException
Gets a range of all the locks.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Specified by:
getLocks in interface LockLocalService
Parameters:
start - the lower bound of the range of locks to return
end - the upper bound of the range of locks to return (not inclusive)
Returns:
the range of locks
Throws:
SystemException - if a system exception occurred

getLocksCount

public int getLocksCount()
                  throws SystemException
Gets the number of locks.

Specified by:
getLocksCount in interface LockLocalService
Returns:
the number of locks
Throws:
SystemException - if a system exception occurred

updateLock

public Lock updateLock(Lock lock)
                throws SystemException
Updates the lock in the database. Also notifies the appropriate model listeners.

Specified by:
updateLock in interface LockLocalService
Parameters:
lock - the lock to update
Returns:
the lock that was updated
Throws:
SystemException - if a system exception occurred

updateLock

public Lock updateLock(Lock lock,
                       boolean merge)
                throws SystemException
Updates the lock in the database. Also notifies the appropriate model listeners.

Specified by:
updateLock in interface LockLocalService
Parameters:
lock - the lock to update
merge - whether to merge the lock with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean) for an explanation.
Returns:
the lock that was updated
Throws:
SystemException - if a system exception occurred

clear

public void clear()
           throws SystemException
Specified by:
clear in interface LockLocalService
Throws:
SystemException

getLock

public Lock getLock(String className,
                    long key)
             throws PortalException,
                    SystemException
Specified by:
getLock in interface LockLocalService
Throws:
PortalException
SystemException

getLock

public Lock getLock(String className,
                    String key)
             throws PortalException,
                    SystemException
Specified by:
getLock in interface LockLocalService
Throws:
PortalException
SystemException

hasLock

public boolean hasLock(long userId,
                       String className,
                       long key)
                throws PortalException,
                       SystemException
Specified by:
hasLock in interface LockLocalService
Throws:
PortalException
SystemException

hasLock

public boolean hasLock(long userId,
                       String className,
                       String key)
                throws PortalException,
                       SystemException
Specified by:
hasLock in interface LockLocalService
Throws:
PortalException
SystemException

isLocked

public boolean isLocked(String className,
                        long key)
                 throws PortalException,
                        SystemException
Specified by:
isLocked in interface LockLocalService
Throws:
PortalException
SystemException

isLocked

public boolean isLocked(String className,
                        String key)
                 throws PortalException,
                        SystemException
Specified by:
isLocked in interface LockLocalService
Throws:
PortalException
SystemException

lock

public Lock lock(long userId,
                 String className,
                 long key,
                 String owner,
                 boolean inheritable,
                 long expirationTime)
          throws PortalException,
                 SystemException
Specified by:
lock in interface LockLocalService
Throws:
PortalException
SystemException

lock

public Lock lock(long userId,
                 String className,
                 String key,
                 String owner,
                 boolean inheritable,
                 long expirationTime)
          throws PortalException,
                 SystemException
Specified by:
lock in interface LockLocalService
Throws:
PortalException
SystemException

refresh

public Lock refresh(String uuid,
                    long expirationTime)
             throws PortalException,
                    SystemException
Specified by:
refresh in interface LockLocalService
Throws:
PortalException
SystemException

unlock

public void unlock(String className,
                   long key)
            throws SystemException
Specified by:
unlock in interface LockLocalService
Throws:
SystemException

unlock

public void unlock(String className,
                   String key)
            throws SystemException
Specified by:
unlock in interface LockLocalService
Throws:
SystemException

getWrappedLockLocalService

public LockLocalService getWrappedLockLocalService()

Liferay 6.0.5