@ProviderType public interface PasswordTrackerPersistence extends BasePersistence<PasswordTracker>
Caching information and settings can be found in portal.properties
PasswordTrackerPersistenceImpl,
PasswordTrackerUtil| Modifier and Type | Method and Description |
|---|---|
void |
cacheResult(java.util.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. |
PasswordTracker |
fetchByUserId_First(long userId,
OrderByComparator orderByComparator)
Returns the first password tracker in the ordered set where userId = ?.
|
PasswordTracker |
fetchByUserId_Last(long userId,
OrderByComparator orderByComparator)
Returns the last password tracker in the ordered set where userId = ?.
|
java.util.List<PasswordTracker> |
findAll()
Returns all the password trackers.
|
java.util.List<PasswordTracker> |
findAll(int start,
int end)
Returns a range of all the password trackers.
|
java.util.List<PasswordTracker> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
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 orderByComparator)
Returns the first password tracker in the ordered set where userId = ?.
|
PasswordTracker |
findByUserId_Last(long userId,
OrderByComparator orderByComparator)
Returns the last password tracker in the ordered set where userId = ?.
|
PasswordTracker[] |
findByUserId_PrevAndNext(long passwordTrackerId,
long userId,
OrderByComparator orderByComparator)
Returns the password trackers before and after the current password tracker in the ordered set where userId = ?.
|
java.util.List<PasswordTracker> |
findByUserId(long userId)
Returns all the password trackers where userId = ?.
|
java.util.List<PasswordTracker> |
findByUserId(long userId,
int start,
int end)
Returns a range of all the password trackers where userId = ?.
|
java.util.List<PasswordTracker> |
findByUserId(long userId,
int start,
int end,
OrderByComparator orderByComparator)
Returns 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) |
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, updatejava.util.List<PasswordTracker> findByUserId(long userId) throws SystemException
userId - the user IDSystemException - if a system exception occurredjava.util.List<PasswordTracker> findByUserId(long userId, int start, int end) throws SystemException
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.
userId - the user IDstart - the lower bound of the range of password trackersend - the upper bound of the range of password trackers (not inclusive)SystemException - if a system exception occurredjava.util.List<PasswordTracker> findByUserId(long userId, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
userId - the user IDstart - the lower bound of the range of password trackersend - the upper bound of the range of password trackers (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredPasswordTracker findByUserId_First(long userId, OrderByComparator orderByComparator) throws NoSuchPasswordTrackerException, SystemException
userId - the user IDorderByComparator - the comparator to order the set by (optionally null)NoSuchPasswordTrackerException - if a matching password tracker could not be foundSystemException - if a system exception occurredPasswordTracker fetchByUserId_First(long userId, OrderByComparator orderByComparator) throws SystemException
userId - the user IDorderByComparator - the comparator to order the set by (optionally null)null if a matching password tracker could not be foundSystemException - if a system exception occurredPasswordTracker findByUserId_Last(long userId, OrderByComparator orderByComparator) throws NoSuchPasswordTrackerException, SystemException
userId - the user IDorderByComparator - the comparator to order the set by (optionally null)NoSuchPasswordTrackerException - if a matching password tracker could not be foundSystemException - if a system exception occurredPasswordTracker fetchByUserId_Last(long userId, OrderByComparator orderByComparator) throws SystemException
userId - the user IDorderByComparator - the comparator to order the set by (optionally null)null if a matching password tracker could not be foundSystemException - if a system exception occurredPasswordTracker[] findByUserId_PrevAndNext(long passwordTrackerId, long userId, OrderByComparator orderByComparator) throws NoSuchPasswordTrackerException, SystemException
passwordTrackerId - the primary key of the current password trackeruserId - the user IDorderByComparator - the comparator to order the set by (optionally null)NoSuchPasswordTrackerException - if a password tracker with the primary key could not be foundSystemException - if a system exception occurredvoid removeByUserId(long userId)
throws SystemException
userId - the user IDSystemException - if a system exception occurredint countByUserId(long userId)
throws SystemException
userId - the user IDSystemException - if a system exception occurredvoid cacheResult(PasswordTracker passwordTracker)
passwordTracker - the password trackervoid cacheResult(java.util.List<PasswordTracker> passwordTrackers)
passwordTrackers - the password trackersPasswordTracker create(long passwordTrackerId)
passwordTrackerId - the primary key for the new password trackerPasswordTracker remove(long passwordTrackerId) throws NoSuchPasswordTrackerException, SystemException
passwordTrackerId - the primary key of the password trackerNoSuchPasswordTrackerException - if a password tracker with the primary key could not be foundSystemException - if a system exception occurredPasswordTracker updateImpl(PasswordTracker passwordTracker) throws SystemException
SystemExceptionPasswordTracker findByPrimaryKey(long passwordTrackerId) throws NoSuchPasswordTrackerException, SystemException
NoSuchPasswordTrackerException if it could not be found.passwordTrackerId - the primary key of the password trackerNoSuchPasswordTrackerException - if a password tracker with the primary key could not be foundSystemException - if a system exception occurredPasswordTracker fetchByPrimaryKey(long passwordTrackerId) throws SystemException
null if it could not be found.passwordTrackerId - the primary key of the password trackernull if a password tracker with the primary key could not be foundSystemException - if a system exception occurredjava.util.List<PasswordTracker> findAll() throws SystemException
SystemException - if a system exception occurredjava.util.List<PasswordTracker> findAll(int start, int end) throws SystemException
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.
start - the lower bound of the range of password trackersend - the upper bound of the range of password trackers (not inclusive)SystemException - if a system exception occurredjava.util.List<PasswordTracker> findAll(int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
start - the lower bound of the range of password trackersend - the upper bound of the range of password trackers (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredvoid removeAll()
throws SystemException
SystemException - if a system exception occurredint countAll()
throws SystemException
SystemException - if a system exception occurred