|
Liferay 6.0-ee | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.liferay.portal.service.persistence.PasswordTrackerUtil
public class PasswordTrackerUtil
The persistence utility for the password tracker service. This utility wraps PasswordTrackerPersistenceImpl
and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.
Never modify this class directly. Modify service.xml
and rerun ServiceBuilder to regenerate this class.
Caching information and settings can be found in portal.properties
PasswordTrackerPersistence
,
PasswordTrackerPersistenceImpl
Constructor Summary | |
---|---|
PasswordTrackerUtil()
|
Method Summary | |
---|---|
static void |
cacheResult(List<PasswordTracker> passwordTrackers)
Caches the password trackers in the entity cache if it is enabled. |
static void |
cacheResult(PasswordTracker passwordTracker)
Caches the password tracker in the entity cache if it is enabled. |
static void |
clearCache()
|
static void |
clearCache(PasswordTracker passwordTracker)
|
static int |
countAll()
Counts all the password trackers. |
static int |
countByUserId(long userId)
Counts all the password trackers where userId = ?. |
long |
countWithDynamicQuery(DynamicQuery dynamicQuery)
|
static PasswordTracker |
create(long passwordTrackerId)
Creates a new password tracker with the primary key. |
static PasswordTracker |
fetchByPrimaryKey(long passwordTrackerId)
Finds the password tracker with the primary key or returns null if it could not be found. |
static List<PasswordTracker> |
findAll()
Finds all the password trackers. |
static List<PasswordTracker> |
findAll(int start,
int end)
Finds a range of all the password trackers. |
static List<PasswordTracker> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the password trackers. |
static PasswordTracker |
findByPrimaryKey(long passwordTrackerId)
Finds the password tracker with the primary key or throws a NoSuchPasswordTrackerException if it could not be found. |
static PasswordTracker |
findByUserId_First(long userId,
OrderByComparator orderByComparator)
Finds the first password tracker in the ordered set where userId = ?. |
static PasswordTracker |
findByUserId_Last(long userId,
OrderByComparator orderByComparator)
Finds the last password tracker in the ordered set where userId = ?. |
static 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 = ?. |
static List<PasswordTracker> |
findByUserId(long userId)
Finds all the password trackers where userId = ?. |
static List<PasswordTracker> |
findByUserId(long userId,
int start,
int end)
Finds a range of all the password trackers where userId = ?. |
static List<PasswordTracker> |
findByUserId(long userId,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the password trackers where userId = ?. |
static List<PasswordTracker> |
findWithDynamicQuery(DynamicQuery dynamicQuery)
|
static List<PasswordTracker> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
|
static List<PasswordTracker> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
|
static PasswordTrackerPersistence |
getPersistence()
|
static PasswordTracker |
remove(long passwordTrackerId)
Removes the password tracker with the primary key from the database. |
static PasswordTracker |
remove(PasswordTracker passwordTracker)
|
static void |
removeAll()
Removes all the password trackers from the database. |
static void |
removeByUserId(long userId)
Removes all the password trackers where userId = ? from the database. |
void |
setPersistence(PasswordTrackerPersistence persistence)
|
static PasswordTracker |
update(PasswordTracker passwordTracker,
boolean merge)
|
static PasswordTracker |
update(PasswordTracker passwordTracker,
boolean merge,
ServiceContext serviceContext)
|
static PasswordTracker |
updateImpl(PasswordTracker passwordTracker,
boolean merge)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public PasswordTrackerUtil()
Method Detail |
---|
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(PasswordTracker passwordTracker)
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)
public long countWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemException
BasePersistence.countWithDynamicQuery(DynamicQuery)
public static List<PasswordTracker> findWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery)
public static List<PasswordTracker> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
public static List<PasswordTracker> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
public static PasswordTracker remove(PasswordTracker passwordTracker) throws SystemException
SystemException
BasePersistence.remove(com.liferay.portal.model.BaseModel)
public static PasswordTracker update(PasswordTracker passwordTracker, boolean merge) throws SystemException
SystemException
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean)
public static PasswordTracker update(PasswordTracker passwordTracker, boolean merge, ServiceContext serviceContext) throws SystemException
SystemException
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)
public static void cacheResult(PasswordTracker passwordTracker)
passwordTracker
- the password tracker to cachepublic static void cacheResult(List<PasswordTracker> passwordTrackers)
passwordTrackers
- the password trackers to cachepublic static PasswordTracker create(long passwordTrackerId)
passwordTrackerId
- the primary key for the new password tracker
public static PasswordTracker remove(long passwordTrackerId) throws NoSuchPasswordTrackerException, SystemException
passwordTrackerId
- the primary key of the password tracker to remove
NoSuchPasswordTrackerException
- if a password tracker with the primary key could not be found
SystemException
- if a system exception occurredpublic static PasswordTracker updateImpl(PasswordTracker passwordTracker, boolean merge) throws SystemException
SystemException
public static PasswordTracker findByPrimaryKey(long passwordTrackerId) throws NoSuchPasswordTrackerException, SystemException
NoSuchPasswordTrackerException
if it could not be found.
passwordTrackerId
- the primary key of the password tracker to find
NoSuchPasswordTrackerException
- if a password tracker with the primary key could not be found
SystemException
- if a system exception occurredpublic static PasswordTracker fetchByPrimaryKey(long passwordTrackerId) throws SystemException
null
if it could not be found.
passwordTrackerId
- the primary key of the password tracker to find
null
if a password tracker with the primary key could not be found
SystemException
- if a system exception occurredpublic static List<PasswordTracker> findByUserId(long userId) throws SystemException
userId
- the user id to search with
SystemException
- if a system exception occurredpublic static 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.
userId
- the user id to search withstart
- the lower bound of the range of password trackers to returnend
- the upper bound of the range of password trackers to return (not inclusive)
SystemException
- if a system exception occurredpublic static 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.
userId
- the user id to search withstart
- the lower bound of the range of password trackers to returnend
- the upper bound of the range of password trackers to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredpublic static PasswordTracker findByUserId_First(long userId, OrderByComparator orderByComparator) throws NoSuchPasswordTrackerException, 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.
userId
- the user id to search withorderByComparator
- the comparator to order the set by
NoSuchPasswordTrackerException
- if a matching password tracker could not be found
SystemException
- if a system exception occurredpublic static PasswordTracker findByUserId_Last(long userId, OrderByComparator orderByComparator) throws NoSuchPasswordTrackerException, 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.
userId
- the user id to search withorderByComparator
- the comparator to order the set by
NoSuchPasswordTrackerException
- if a matching password tracker could not be found
SystemException
- if a system exception occurredpublic static PasswordTracker[] findByUserId_PrevAndNext(long passwordTrackerId, long userId, OrderByComparator orderByComparator) throws NoSuchPasswordTrackerException, 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.
passwordTrackerId
- the primary key of the current password trackeruserId
- the user id to search withorderByComparator
- the comparator to order the set by
NoSuchPasswordTrackerException
- if a password tracker with the primary key could not be found
SystemException
- if a system exception occurredpublic static List<PasswordTracker> findAll() throws SystemException
SystemException
- if a system exception occurredpublic static 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.
start
- the lower bound of the range of password trackers to returnend
- the upper bound of the range of password trackers to return (not inclusive)
SystemException
- if a system exception occurredpublic static 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.
start
- the lower bound of the range of password trackers to returnend
- the upper bound of the range of password trackers to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredpublic static void removeByUserId(long userId) throws SystemException
userId
- the user id to search with
SystemException
- if a system exception occurredpublic static void removeAll() throws SystemException
SystemException
- if a system exception occurredpublic static int countByUserId(long userId) throws SystemException
userId
- the user id to search with
SystemException
- if a system exception occurredpublic static int countAll() throws SystemException
SystemException
- if a system exception occurredpublic static PasswordTrackerPersistence getPersistence()
public void setPersistence(PasswordTrackerPersistence persistence)
|
Liferay 6.0-ee | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |