Liferay 6.2-ce-ga5

com.liferay.portal.service.persistence
Class PasswordTrackerUtil

java.lang.Object
  extended by com.liferay.portal.service.persistence.PasswordTrackerUtil

@ProviderType
public class PasswordTrackerUtil
extends Object

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.

Caching information and settings can be found in portal.properties

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

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()
          Returns the number of password trackers.
static int countByUserId(long userId)
          Returns the number of password trackers where userId = ?.
static long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static PasswordTracker create(long passwordTrackerId)
          Creates a new password tracker with the primary key.
static PasswordTracker fetchByPrimaryKey(long passwordTrackerId)
          Returns the password tracker with the primary key or returns null if it could not be found.
static PasswordTracker fetchByUserId_First(long userId, OrderByComparator orderByComparator)
          Returns the first password tracker in the ordered set where userId = ?.
static PasswordTracker fetchByUserId_Last(long userId, OrderByComparator orderByComparator)
          Returns the last password tracker in the ordered set where userId = ?.
static List<PasswordTracker> findAll()
          Returns all the password trackers.
static List<PasswordTracker> findAll(int start, int end)
          Returns a range of all the password trackers.
static List<PasswordTracker> findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the password trackers.
static PasswordTracker findByPrimaryKey(long passwordTrackerId)
          Returns 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)
          Returns the first password tracker in the ordered set where userId = ?.
static PasswordTracker findByUserId_Last(long userId, OrderByComparator orderByComparator)
          Returns the last password tracker in the ordered set where userId = ?.
static 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 = ?.
static List<PasswordTracker> findByUserId(long userId)
          Returns all the password trackers where userId = ?.
static List<PasswordTracker> findByUserId(long userId, int start, int end)
          Returns a range of all the password trackers where userId = ?.
static List<PasswordTracker> findByUserId(long userId, int start, int end, OrderByComparator orderByComparator)
          Returns 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 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)
          Deprecated. As of 6.2.0
static PasswordTracker update(PasswordTracker passwordTracker)
           
static PasswordTracker update(PasswordTracker passwordTracker, ServiceContext serviceContext)
           
static PasswordTracker updateImpl(PasswordTracker passwordTracker)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PasswordTrackerUtil

public PasswordTrackerUtil()
Method Detail

clearCache

public static void clearCache()
See Also:
BasePersistence.clearCache()

clearCache

public static void clearCache(PasswordTracker passwordTracker)
See Also:
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)

countWithDynamicQuery

public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
                                  throws SystemException
Throws:
SystemException
See Also:
BasePersistence.countWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<PasswordTracker> findWithDynamicQuery(DynamicQuery dynamicQuery)
                                                  throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery)

findWithDynamicQuery

public static List<PasswordTracker> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                         int start,
                                                         int end)
                                                  throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)

findWithDynamicQuery

public static List<PasswordTracker> findWithDynamicQuery(DynamicQuery dynamicQuery,
                                                         int start,
                                                         int end,
                                                         OrderByComparator orderByComparator)
                                                  throws SystemException
Throws:
SystemException
See Also:
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)

update

public static PasswordTracker update(PasswordTracker passwordTracker)
                              throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel)

update

public static PasswordTracker update(PasswordTracker passwordTracker,
                                     ServiceContext serviceContext)
                              throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, ServiceContext)

findByUserId

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

Parameters:
userId - the user ID
Returns:
the matching password trackers
Throws:
SystemException - if a system exception occurred

findByUserId

public static List<PasswordTracker> findByUserId(long userId,
                                                 int start,
                                                 int end)
                                          throws SystemException
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
Throws:
SystemException - if a system exception occurred

findByUserId

public static List<PasswordTracker> findByUserId(long userId,
                                                 int start,
                                                 int end,
                                                 OrderByComparator orderByComparator)
                                          throws SystemException
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
Throws:
SystemException - if a system exception occurred

findByUserId_First

public static PasswordTracker findByUserId_First(long userId,
                                                 OrderByComparator orderByComparator)
                                          throws NoSuchPasswordTrackerException,
                                                 SystemException
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
SystemException - if a system exception occurred

fetchByUserId_First

public static PasswordTracker fetchByUserId_First(long userId,
                                                  OrderByComparator orderByComparator)
                                           throws SystemException
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
Throws:
SystemException - if a system exception occurred

findByUserId_Last

public static PasswordTracker findByUserId_Last(long userId,
                                                OrderByComparator orderByComparator)
                                         throws NoSuchPasswordTrackerException,
                                                SystemException
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
SystemException - if a system exception occurred

fetchByUserId_Last

public static PasswordTracker fetchByUserId_Last(long userId,
                                                 OrderByComparator orderByComparator)
                                          throws SystemException
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
Throws:
SystemException - if a system exception occurred

findByUserId_PrevAndNext

public static PasswordTracker[] findByUserId_PrevAndNext(long passwordTrackerId,
                                                         long userId,
                                                         OrderByComparator orderByComparator)
                                                  throws NoSuchPasswordTrackerException,
                                                         SystemException
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
SystemException - if a system exception occurred

removeByUserId

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

Parameters:
userId - the user ID
Throws:
SystemException - if a system exception occurred

countByUserId

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

Parameters:
userId - the user ID
Returns:
the number of matching password trackers
Throws:
SystemException - if a system exception occurred

cacheResult

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

Parameters:
passwordTracker - the password tracker

cacheResult

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

Parameters:
passwordTrackers - the password trackers

create

public static 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

public static 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
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

public static PasswordTracker updateImpl(PasswordTracker passwordTracker)
                                  throws SystemException
Throws:
SystemException

findByPrimaryKey

public static PasswordTracker findByPrimaryKey(long passwordTrackerId)
                                        throws NoSuchPasswordTrackerException,
                                               SystemException
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
SystemException - if a system exception occurred

fetchByPrimaryKey

public static PasswordTracker fetchByPrimaryKey(long passwordTrackerId)
                                         throws SystemException
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
Throws:
SystemException - if a system exception occurred

findAll

public static List<PasswordTracker> findAll()
                                     throws SystemException
Returns all the password trackers.

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

findAll

public static List<PasswordTracker> findAll(int start,
                                            int end)
                                     throws SystemException
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
Throws:
SystemException - if a system exception occurred

findAll

public static List<PasswordTracker> findAll(int start,
                                            int end,
                                            OrderByComparator orderByComparator)
                                     throws SystemException
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
Throws:
SystemException - if a system exception occurred

removeAll

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

Throws:
SystemException - if a system exception occurred

countAll

public static int countAll()
                    throws SystemException
Returns the number of password trackers.

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

getPersistence

public static PasswordTrackerPersistence getPersistence()

setPersistence

public void setPersistence(PasswordTrackerPersistence persistence)
Deprecated. As of 6.2.0


Liferay 6.2-ce-ga5