Liferay 6.0.5

com.liferay.portal.service.persistence
Interface PasswordTrackerPersistence

All Superinterfaces:
BasePersistence<PasswordTracker>
All Known Implementing Classes:
PasswordTrackerPersistenceImpl

public interface PasswordTrackerPersistence
extends BasePersistence<PasswordTracker>

The persistence interface for the password tracker service.

Never modify or reference this interface directly. Always use PasswordTrackerUtil to access the password tracker persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface.

Caching information and settings can be found in portal.properties

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

Method Summary
 void cacheResult(List<PasswordTracker> passwordTrackers)
          Caches the password trackers in the entity cache if it is enabled.
 void cacheResult(PasswordTracker passwordTracker)
          Caches the password tracker in the entity cache if it is enabled.
 int countAll()
          Counts all the password trackers.
 int countByUserId(long userId)
          Counts all the password trackers where userId = ?.
 PasswordTracker create(long passwordTrackerId)
          Creates a new password tracker with the primary key.
 PasswordTracker fetchByPrimaryKey(long passwordTrackerId)
          Finds the password tracker with the primary key or returns null if it could not be found.
 List<PasswordTracker> findAll()
          Finds all the password trackers.
 List<PasswordTracker> findAll(int start, int end)
          Finds a range of all the password trackers.
 List<PasswordTracker> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the password trackers.
 PasswordTracker findByPrimaryKey(long passwordTrackerId)
          Finds the password tracker with the primary key or throws a NoSuchPasswordTrackerException if it could not be found.
 PasswordTracker findByUserId_First(long userId, OrderByComparator orderByComparator)
          Finds the first password tracker in the ordered set where userId = ?.
 PasswordTracker findByUserId_Last(long userId, OrderByComparator orderByComparator)
          Finds the last password tracker in the ordered set where userId = ?.
 PasswordTracker[] findByUserId_PrevAndNext(long passwordTrackerId, long userId, OrderByComparator orderByComparator)
          Finds the password trackers before and after the current password tracker in the ordered set where userId = ?.
 List<PasswordTracker> findByUserId(long userId)
          Finds all the password trackers where userId = ?.
 List<PasswordTracker> findByUserId(long userId, int start, int end)
          Finds a range of all the password trackers where userId = ?.
 List<PasswordTracker> findByUserId(long userId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the password trackers where userId = ?.
 PasswordTracker remove(long passwordTrackerId)
          Removes the password tracker with the primary key from the database.
 void removeAll()
          Removes all the password trackers from the database.
 void removeByUserId(long userId)
          Removes all the password trackers where userId = ? from the database.
 PasswordTracker updateImpl(PasswordTracker passwordTracker, boolean merge)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
clearCache, clearCache, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, registerListener, remove, remove, setDataSource, unregisterListener, update, update
 

Method Detail

cacheResult

void cacheResult(PasswordTracker passwordTracker)
Caches the password tracker in the entity cache if it is enabled.

Parameters:
passwordTracker - the password tracker to cache

cacheResult

void cacheResult(List<PasswordTracker> passwordTrackers)
Caches the password trackers in the entity cache if it is enabled.

Parameters:
passwordTrackers - the password trackers to cache

create

PasswordTracker create(long passwordTrackerId)
Creates a new password tracker with the primary key. Does not add the password tracker to the database.

Parameters:
passwordTrackerId - the primary key for the new password tracker
Returns:
the new password tracker

remove

PasswordTracker remove(long passwordTrackerId)
                       throws NoSuchPasswordTrackerException,
                              SystemException
Removes the password tracker with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
passwordTrackerId - the primary key of the password tracker to remove
Returns:
the password tracker that was removed
Throws:
NoSuchPasswordTrackerException - if a password tracker with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

PasswordTracker updateImpl(PasswordTracker passwordTracker,
                           boolean merge)
                           throws SystemException
Throws:
SystemException

findByPrimaryKey

PasswordTracker findByPrimaryKey(long passwordTrackerId)
                                 throws NoSuchPasswordTrackerException,
                                        SystemException
Finds the password tracker with the primary key or throws a NoSuchPasswordTrackerException if it could not be found.

Parameters:
passwordTrackerId - the primary key of the password tracker to find
Returns:
the password tracker
Throws:
NoSuchPasswordTrackerException - if a password tracker with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

PasswordTracker fetchByPrimaryKey(long passwordTrackerId)
                                  throws SystemException
Finds the password tracker with the primary key or returns null if it could not be found.

Parameters:
passwordTrackerId - the primary key of the password tracker to find
Returns:
the password tracker, or null if a password tracker with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByUserId

List<PasswordTracker> findByUserId(long userId)
                                   throws SystemException
Finds all the password trackers where userId = ?.

Parameters:
userId - the user id to search with
Returns:
the matching password trackers
Throws:
SystemException - if a system exception occurred

findByUserId

List<PasswordTracker> findByUserId(long userId,
                                   int start,
                                   int end)
                                   throws SystemException
Finds a range of all the password trackers where userId = ?.

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.

Parameters:
userId - the user id to search with
start - the lower bound of the range of password trackers to return
end - the upper bound of the range of password trackers to return (not inclusive)
Returns:
the range of matching password trackers
Throws:
SystemException - if a system exception occurred

findByUserId

List<PasswordTracker> findByUserId(long userId,
                                   int start,
                                   int end,
                                   OrderByComparator orderByComparator)
                                   throws SystemException
Finds an ordered range of all the password trackers where userId = ?.

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.

Parameters:
userId - the user id to search with
start - the lower bound of the range of password trackers to return
end - the upper bound of the range of password trackers to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching password trackers
Throws:
SystemException - if a system exception occurred

findByUserId_First

PasswordTracker findByUserId_First(long userId,
                                   OrderByComparator orderByComparator)
                                   throws NoSuchPasswordTrackerException,
                                          SystemException
Finds the first password tracker in the ordered set where userId = ?.

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.

Parameters:
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching password tracker
Throws:
NoSuchPasswordTrackerException - if a matching password tracker could not be found
SystemException - if a system exception occurred

findByUserId_Last

PasswordTracker findByUserId_Last(long userId,
                                  OrderByComparator orderByComparator)
                                  throws NoSuchPasswordTrackerException,
                                         SystemException
Finds the last password tracker in the ordered set where userId = ?.

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.

Parameters:
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching password tracker
Throws:
NoSuchPasswordTrackerException - if a matching password tracker could not be found
SystemException - if a system exception occurred

findByUserId_PrevAndNext

PasswordTracker[] findByUserId_PrevAndNext(long passwordTrackerId,
                                           long userId,
                                           OrderByComparator orderByComparator)
                                           throws NoSuchPasswordTrackerException,
                                                  SystemException
Finds the password trackers before and after the current password tracker in the ordered set where userId = ?.

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.

Parameters:
passwordTrackerId - the primary key of the current password tracker
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next password tracker
Throws:
NoSuchPasswordTrackerException - if a password tracker with the primary key could not be found
SystemException - if a system exception occurred

findAll

List<PasswordTracker> findAll()
                              throws SystemException
Finds all the password trackers.

Returns:
the password trackers
Throws:
SystemException - if a system exception occurred

findAll

List<PasswordTracker> findAll(int start,
                              int end)
                              throws SystemException
Finds a range of all the password trackers.

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.

Parameters:
start - the lower bound of the range of password trackers to return
end - the upper bound of the range of password trackers to return (not inclusive)
Returns:
the range of password trackers
Throws:
SystemException - if a system exception occurred

findAll

List<PasswordTracker> findAll(int start,
                              int end,
                              OrderByComparator orderByComparator)
                              throws SystemException
Finds an ordered range of all the password trackers.

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.

Parameters:
start - the lower bound of the range of password trackers to return
end - the upper bound of the range of password trackers to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of password trackers
Throws:
SystemException - if a system exception occurred

removeByUserId

void removeByUserId(long userId)
                    throws SystemException
Removes all the password trackers where userId = ? from the database.

Parameters:
userId - the user id to search with
Throws:
SystemException - if a system exception occurred

removeAll

void removeAll()
               throws SystemException
Removes all the password trackers from the database.

Throws:
SystemException - if a system exception occurred

countByUserId

int countByUserId(long userId)
                  throws SystemException
Counts all the password trackers where userId = ?.

Parameters:
userId - the user id to search with
Returns:
the number of matching password trackers
Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Counts all the password trackers.

Returns:
the number of password trackers
Throws:
SystemException - if a system exception occurred

Liferay 6.0.5