Liferay 7.0-ce-b4

com.liferay.portal.service.persistence
Interface PasswordTrackerPersistence

All Superinterfaces:
BasePersistence<PasswordTracker>

@ProviderType
public interface PasswordTrackerPersistence
extends BasePersistence<PasswordTracker>

The persistence interface for the password tracker service.

Caching information and settings can be found in portal.properties

See Also:
PasswordTrackerPersistenceImpl, PasswordTrackerUtil

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()
          Returns the number of password trackers.
 int countByUserId(long userId)
          Returns the number of password trackers where userId = ?.
 PasswordTracker create(long passwordTrackerId)
          Creates a new password tracker with the primary key.
 PasswordTracker fetchByPrimaryKey(long passwordTrackerId)
          Returns the password tracker with the primary key or returns null if it could not be found.
 Map<Serializable,PasswordTracker> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
           
 PasswordTracker fetchByUserId_First(long userId, OrderByComparator<PasswordTracker> orderByComparator)
          Returns the first password tracker in the ordered set where userId = ?.
 PasswordTracker fetchByUserId_Last(long userId, OrderByComparator<PasswordTracker> orderByComparator)
          Returns the last password tracker in the ordered set where userId = ?.
 List<PasswordTracker> findAll()
          Returns all the password trackers.
 List<PasswordTracker> findAll(int start, int end)
          Returns a range of all the password trackers.
 List<PasswordTracker> findAll(int start, int end, OrderByComparator<PasswordTracker> orderByComparator)
          Returns an ordered range of all the password trackers.
 List<PasswordTracker> findAll(int start, int end, OrderByComparator<PasswordTracker> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the password trackers.
 PasswordTracker findByPrimaryKey(long passwordTrackerId)
          Returns the password tracker with the primary key or throws a NoSuchPasswordTrackerException if it could not be found.
 PasswordTracker findByUserId_First(long userId, OrderByComparator<PasswordTracker> orderByComparator)
          Returns the first password tracker in the ordered set where userId = ?.
 PasswordTracker findByUserId_Last(long userId, OrderByComparator<PasswordTracker> orderByComparator)
          Returns the last password tracker in the ordered set where userId = ?.
 PasswordTracker[] findByUserId_PrevAndNext(long passwordTrackerId, long userId, OrderByComparator<PasswordTracker> orderByComparator)
          Returns the password trackers before and after the current password tracker in the ordered set where userId = ?.
 List<PasswordTracker> findByUserId(long userId)
          Returns all the password trackers where userId = ?.
 List<PasswordTracker> findByUserId(long userId, int start, int end)
          Returns a range of all the password trackers where userId = ?.
 List<PasswordTracker> findByUserId(long userId, int start, int end, OrderByComparator<PasswordTracker> orderByComparator)
          Returns an ordered range of all the password trackers where userId = ?.
 List<PasswordTracker> findByUserId(long userId, int start, int end, OrderByComparator<PasswordTracker> orderByComparator, boolean retrieveFromCache)
          Returns an ordered range of all the password trackers where userId = ?.
 Set<String> getBadColumnNames()
           
 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)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getCurrentSession, getDataSource, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update, update, update
 

Method Detail

findByUserId

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

Parameters:
userId - the user ID
Returns:
the matching password trackers

findByUserId

List<PasswordTracker> findByUserId(long userId,
                                   int start,
                                   int end)
Returns 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from PasswordTrackerModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
userId - the user ID
start - the lower bound of the range of password trackers
end - the upper bound of the range of password trackers (not inclusive)
Returns:
the range of matching password trackers

findByUserId

List<PasswordTracker> findByUserId(long userId,
                                   int start,
                                   int end,
                                   OrderByComparator<PasswordTracker> orderByComparator)
Returns 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from PasswordTrackerModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
userId - the user ID
start - the lower bound of the range of password trackers
end - the upper bound of the range of password trackers (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching password trackers

findByUserId

List<PasswordTracker> findByUserId(long userId,
                                   int start,
                                   int end,
                                   OrderByComparator<PasswordTracker> orderByComparator,
                                   boolean retrieveFromCache)
Returns 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from PasswordTrackerModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
userId - the user ID
start - the lower bound of the range of password trackers
end - the upper bound of the range of password trackers (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of matching password trackers

findByUserId_First

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

Parameters:
userId - the user ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching password tracker
Throws:
NoSuchPasswordTrackerException - if a matching password tracker could not be found

fetchByUserId_First

PasswordTracker fetchByUserId_First(long userId,
                                    OrderByComparator<PasswordTracker> orderByComparator)
Returns the first password tracker in the ordered set where userId = ?.

Parameters:
userId - the user ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching password tracker, or null if a matching password tracker could not be found

findByUserId_Last

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

Parameters:
userId - the user ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching password tracker
Throws:
NoSuchPasswordTrackerException - if a matching password tracker could not be found

fetchByUserId_Last

PasswordTracker fetchByUserId_Last(long userId,
                                   OrderByComparator<PasswordTracker> orderByComparator)
Returns the last password tracker in the ordered set where userId = ?.

Parameters:
userId - the user ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching password tracker, or null if a matching password tracker could not be found

findByUserId_PrevAndNext

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

Parameters:
passwordTrackerId - the primary key of the current password tracker
userId - the user ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next password tracker
Throws:
NoSuchPasswordTrackerException - if a password tracker with the primary key could not be found

removeByUserId

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

Parameters:
userId - the user ID

countByUserId

int countByUserId(long userId)
Returns the number of password trackers where userId = ?.

Parameters:
userId - the user ID
Returns:
the number of matching password trackers

cacheResult

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

Parameters:
passwordTracker - the password tracker

cacheResult

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

Parameters:
passwordTrackers - the password trackers

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
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
Returns:
the password tracker that was removed
Throws:
NoSuchPasswordTrackerException - if a password tracker with the primary key could not be found

updateImpl

PasswordTracker updateImpl(PasswordTracker passwordTracker)

findByPrimaryKey

PasswordTracker findByPrimaryKey(long passwordTrackerId)
                                 throws NoSuchPasswordTrackerException
Returns 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
Returns:
the password tracker
Throws:
NoSuchPasswordTrackerException - if a password tracker with the primary key could not be found

fetchByPrimaryKey

PasswordTracker fetchByPrimaryKey(long passwordTrackerId)
Returns 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
Returns:
the password tracker, or null if a password tracker with the primary key could not be found

fetchByPrimaryKeys

Map<Serializable,PasswordTracker> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
Specified by:
fetchByPrimaryKeys in interface BasePersistence<PasswordTracker>

findAll

List<PasswordTracker> findAll()
Returns all the password trackers.

Returns:
the password trackers

findAll

List<PasswordTracker> findAll(int start,
                              int end)
Returns 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from PasswordTrackerModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
start - the lower bound of the range of password trackers
end - the upper bound of the range of password trackers (not inclusive)
Returns:
the range of password trackers

findAll

List<PasswordTracker> findAll(int start,
                              int end,
                              OrderByComparator<PasswordTracker> orderByComparator)
Returns 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from PasswordTrackerModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
start - the lower bound of the range of password trackers
end - the upper bound of the range of password trackers (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of password trackers

findAll

List<PasswordTracker> findAll(int start,
                              int end,
                              OrderByComparator<PasswordTracker> orderByComparator,
                              boolean retrieveFromCache)
Returns 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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil#ALL_POS), then the query will include the default ORDER BY logic from PasswordTrackerModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
start - the lower bound of the range of password trackers
end - the upper bound of the range of password trackers (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
retrieveFromCache - whether to retrieve from the finder cache
Returns:
the ordered range of password trackers

removeAll

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


countAll

int countAll()
Returns the number of password trackers.

Returns:
the number of password trackers

getBadColumnNames

Set<String> getBadColumnNames()
Specified by:
getBadColumnNames in interface BasePersistence<PasswordTracker>

Liferay 7.0-ce-b4