Liferay 6.0-ee

com.liferay.portal.service.persistence
Class UserIdMapperUtil

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

public class UserIdMapperUtil
extends Object

The persistence utility for the user id mapper service. This utility wraps UserIdMapperPersistenceImpl 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

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

Constructor Summary
UserIdMapperUtil()
           
 
Method Summary
static void cacheResult(List<UserIdMapper> userIdMappers)
          Caches the user id mappers in the entity cache if it is enabled.
static void cacheResult(UserIdMapper userIdMapper)
          Caches the user id mapper in the entity cache if it is enabled.
static void clearCache()
           
static void clearCache(UserIdMapper userIdMapper)
           
static int countAll()
          Counts all the user id mappers.
static int countByT_E(String type, String externalUserId)
          Counts all the user id mappers where type = ? and externalUserId = ?.
static int countByU_T(long userId, String type)
          Counts all the user id mappers where userId = ? and type = ?.
static int countByUserId(long userId)
          Counts all the user id mappers where userId = ?.
 long countWithDynamicQuery(DynamicQuery dynamicQuery)
           
static UserIdMapper create(long userIdMapperId)
          Creates a new user id mapper with the primary key.
static UserIdMapper fetchByPrimaryKey(long userIdMapperId)
          Finds the user id mapper with the primary key or returns null if it could not be found.
static UserIdMapper fetchByT_E(String type, String externalUserId)
          Finds the user id mapper where type = ? and externalUserId = ? or returns null if it could not be found.
static UserIdMapper fetchByT_E(String type, String externalUserId, boolean retrieveFromCache)
          Finds the user id mapper where type = ? and externalUserId = ? or returns null if it could not be found, optionally using the finder cache.
static UserIdMapper fetchByU_T(long userId, String type)
          Finds the user id mapper where userId = ? and type = ? or returns null if it could not be found.
static UserIdMapper fetchByU_T(long userId, String type, boolean retrieveFromCache)
          Finds the user id mapper where userId = ? and type = ? or returns null if it could not be found, optionally using the finder cache.
static List<UserIdMapper> findAll()
          Finds all the user id mappers.
static List<UserIdMapper> findAll(int start, int end)
          Finds a range of all the user id mappers.
static List<UserIdMapper> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the user id mappers.
static UserIdMapper findByPrimaryKey(long userIdMapperId)
          Finds the user id mapper with the primary key or throws a NoSuchUserIdMapperException if it could not be found.
static UserIdMapper findByT_E(String type, String externalUserId)
          Finds the user id mapper where type = ? and externalUserId = ? or throws a NoSuchUserIdMapperException if it could not be found.
static UserIdMapper findByU_T(long userId, String type)
          Finds the user id mapper where userId = ? and type = ? or throws a NoSuchUserIdMapperException if it could not be found.
static UserIdMapper findByUserId_First(long userId, OrderByComparator orderByComparator)
          Finds the first user id mapper in the ordered set where userId = ?.
static UserIdMapper findByUserId_Last(long userId, OrderByComparator orderByComparator)
          Finds the last user id mapper in the ordered set where userId = ?.
static UserIdMapper[] findByUserId_PrevAndNext(long userIdMapperId, long userId, OrderByComparator orderByComparator)
          Finds the user id mappers before and after the current user id mapper in the ordered set where userId = ?.
static List<UserIdMapper> findByUserId(long userId)
          Finds all the user id mappers where userId = ?.
static List<UserIdMapper> findByUserId(long userId, int start, int end)
          Finds a range of all the user id mappers where userId = ?.
static List<UserIdMapper> findByUserId(long userId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the user id mappers where userId = ?.
static List<UserIdMapper> findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<UserIdMapper> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<UserIdMapper> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
static UserIdMapperPersistence getPersistence()
           
static UserIdMapper remove(long userIdMapperId)
          Removes the user id mapper with the primary key from the database.
static UserIdMapper remove(UserIdMapper userIdMapper)
           
static void removeAll()
          Removes all the user id mappers from the database.
static void removeByT_E(String type, String externalUserId)
          Removes the user id mapper where type = ? and externalUserId = ? from the database.
static void removeByU_T(long userId, String type)
          Removes the user id mapper where userId = ? and type = ? from the database.
static void removeByUserId(long userId)
          Removes all the user id mappers where userId = ? from the database.
 void setPersistence(UserIdMapperPersistence persistence)
           
static UserIdMapper update(UserIdMapper userIdMapper, boolean merge)
           
static UserIdMapper update(UserIdMapper userIdMapper, boolean merge, ServiceContext serviceContext)
           
static UserIdMapper updateImpl(UserIdMapper userIdMapper, boolean merge)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UserIdMapperUtil

public UserIdMapperUtil()
Method Detail

clearCache

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

clearCache

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

countWithDynamicQuery

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

findWithDynamicQuery

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

findWithDynamicQuery

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

findWithDynamicQuery

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

remove

public static UserIdMapper remove(UserIdMapper userIdMapper)
                           throws SystemException
Throws:
SystemException
See Also:
BasePersistence.remove(com.liferay.portal.model.BaseModel)

update

public static UserIdMapper update(UserIdMapper userIdMapper,
                                  boolean merge)
                           throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean)

update

public static UserIdMapper update(UserIdMapper userIdMapper,
                                  boolean merge,
                                  ServiceContext serviceContext)
                           throws SystemException
Throws:
SystemException
See Also:
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)

cacheResult

public static void cacheResult(UserIdMapper userIdMapper)
Caches the user id mapper in the entity cache if it is enabled.

Parameters:
userIdMapper - the user id mapper to cache

cacheResult

public static void cacheResult(List<UserIdMapper> userIdMappers)
Caches the user id mappers in the entity cache if it is enabled.

Parameters:
userIdMappers - the user id mappers to cache

create

public static UserIdMapper create(long userIdMapperId)
Creates a new user id mapper with the primary key. Does not add the user id mapper to the database.

Parameters:
userIdMapperId - the primary key for the new user id mapper
Returns:
the new user id mapper

remove

public static UserIdMapper remove(long userIdMapperId)
                           throws NoSuchUserIdMapperException,
                                  SystemException
Removes the user id mapper with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
userIdMapperId - the primary key of the user id mapper to remove
Returns:
the user id mapper that was removed
Throws:
NoSuchUserIdMapperException - if a user id mapper with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

public static UserIdMapper updateImpl(UserIdMapper userIdMapper,
                                      boolean merge)
                               throws SystemException
Throws:
SystemException

findByPrimaryKey

public static UserIdMapper findByPrimaryKey(long userIdMapperId)
                                     throws NoSuchUserIdMapperException,
                                            SystemException
Finds the user id mapper with the primary key or throws a NoSuchUserIdMapperException if it could not be found.

Parameters:
userIdMapperId - the primary key of the user id mapper to find
Returns:
the user id mapper
Throws:
NoSuchUserIdMapperException - if a user id mapper with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

public static UserIdMapper fetchByPrimaryKey(long userIdMapperId)
                                      throws SystemException
Finds the user id mapper with the primary key or returns null if it could not be found.

Parameters:
userIdMapperId - the primary key of the user id mapper to find
Returns:
the user id mapper, or null if a user id mapper with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByUserId

public static List<UserIdMapper> findByUserId(long userId)
                                       throws SystemException
Finds all the user id mappers where userId = ?.

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

findByUserId

public static List<UserIdMapper> findByUserId(long userId,
                                              int start,
                                              int end)
                                       throws SystemException
Finds a range of all the user id mappers 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 user id mappers to return
end - the upper bound of the range of user id mappers to return (not inclusive)
Returns:
the range of matching user id mappers
Throws:
SystemException - if a system exception occurred

findByUserId

public static List<UserIdMapper> findByUserId(long userId,
                                              int start,
                                              int end,
                                              OrderByComparator orderByComparator)
                                       throws SystemException
Finds an ordered range of all the user id mappers 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 user id mappers to return
end - the upper bound of the range of user id mappers to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching user id mappers
Throws:
SystemException - if a system exception occurred

findByUserId_First

public static UserIdMapper findByUserId_First(long userId,
                                              OrderByComparator orderByComparator)
                                       throws NoSuchUserIdMapperException,
                                              SystemException
Finds the first user id mapper 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 user id mapper
Throws:
NoSuchUserIdMapperException - if a matching user id mapper could not be found
SystemException - if a system exception occurred

findByUserId_Last

public static UserIdMapper findByUserId_Last(long userId,
                                             OrderByComparator orderByComparator)
                                      throws NoSuchUserIdMapperException,
                                             SystemException
Finds the last user id mapper 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 user id mapper
Throws:
NoSuchUserIdMapperException - if a matching user id mapper could not be found
SystemException - if a system exception occurred

findByUserId_PrevAndNext

public static UserIdMapper[] findByUserId_PrevAndNext(long userIdMapperId,
                                                      long userId,
                                                      OrderByComparator orderByComparator)
                                               throws NoSuchUserIdMapperException,
                                                      SystemException
Finds the user id mappers before and after the current user id mapper 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:
userIdMapperId - the primary key of the current user id mapper
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next user id mapper
Throws:
NoSuchUserIdMapperException - if a user id mapper with the primary key could not be found
SystemException - if a system exception occurred

findByU_T

public static UserIdMapper findByU_T(long userId,
                                     String type)
                              throws NoSuchUserIdMapperException,
                                     SystemException
Finds the user id mapper where userId = ? and type = ? or throws a NoSuchUserIdMapperException if it could not be found.

Parameters:
userId - the user id to search with
type - the type to search with
Returns:
the matching user id mapper
Throws:
NoSuchUserIdMapperException - if a matching user id mapper could not be found
SystemException - if a system exception occurred

fetchByU_T

public static UserIdMapper fetchByU_T(long userId,
                                      String type)
                               throws SystemException
Finds the user id mapper where userId = ? and type = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
userId - the user id to search with
type - the type to search with
Returns:
the matching user id mapper, or null if a matching user id mapper could not be found
Throws:
SystemException - if a system exception occurred

fetchByU_T

public static UserIdMapper fetchByU_T(long userId,
                                      String type,
                                      boolean retrieveFromCache)
                               throws SystemException
Finds the user id mapper where userId = ? and type = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
userId - the user id to search with
type - the type to search with
Returns:
the matching user id mapper, or null if a matching user id mapper could not be found
Throws:
SystemException - if a system exception occurred

findByT_E

public static UserIdMapper findByT_E(String type,
                                     String externalUserId)
                              throws NoSuchUserIdMapperException,
                                     SystemException
Finds the user id mapper where type = ? and externalUserId = ? or throws a NoSuchUserIdMapperException if it could not be found.

Parameters:
type - the type to search with
externalUserId - the external user id to search with
Returns:
the matching user id mapper
Throws:
NoSuchUserIdMapperException - if a matching user id mapper could not be found
SystemException - if a system exception occurred

fetchByT_E

public static UserIdMapper fetchByT_E(String type,
                                      String externalUserId)
                               throws SystemException
Finds the user id mapper where type = ? and externalUserId = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
type - the type to search with
externalUserId - the external user id to search with
Returns:
the matching user id mapper, or null if a matching user id mapper could not be found
Throws:
SystemException - if a system exception occurred

fetchByT_E

public static UserIdMapper fetchByT_E(String type,
                                      String externalUserId,
                                      boolean retrieveFromCache)
                               throws SystemException
Finds the user id mapper where type = ? and externalUserId = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
type - the type to search with
externalUserId - the external user id to search with
Returns:
the matching user id mapper, or null if a matching user id mapper could not be found
Throws:
SystemException - if a system exception occurred

findAll

public static List<UserIdMapper> findAll()
                                  throws SystemException
Finds all the user id mappers.

Returns:
the user id mappers
Throws:
SystemException - if a system exception occurred

findAll

public static List<UserIdMapper> findAll(int start,
                                         int end)
                                  throws SystemException
Finds a range of all the user id mappers.

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 user id mappers to return
end - the upper bound of the range of user id mappers to return (not inclusive)
Returns:
the range of user id mappers
Throws:
SystemException - if a system exception occurred

findAll

public static List<UserIdMapper> findAll(int start,
                                         int end,
                                         OrderByComparator orderByComparator)
                                  throws SystemException
Finds an ordered range of all the user id mappers.

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 user id mappers to return
end - the upper bound of the range of user id mappers to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of user id mappers
Throws:
SystemException - if a system exception occurred

removeByUserId

public static void removeByUserId(long userId)
                           throws SystemException
Removes all the user id mappers where userId = ? from the database.

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

removeByU_T

public static void removeByU_T(long userId,
                               String type)
                        throws NoSuchUserIdMapperException,
                               SystemException
Removes the user id mapper where userId = ? and type = ? from the database.

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

removeByT_E

public static void removeByT_E(String type,
                               String externalUserId)
                        throws NoSuchUserIdMapperException,
                               SystemException
Removes the user id mapper where type = ? and externalUserId = ? from the database.

Parameters:
type - the type to search with
externalUserId - the external user id to search with
Throws:
SystemException - if a system exception occurred
NoSuchUserIdMapperException

removeAll

public static void removeAll()
                      throws SystemException
Removes all the user id mappers from the database.

Throws:
SystemException - if a system exception occurred

countByUserId

public static int countByUserId(long userId)
                         throws SystemException
Counts all the user id mappers where userId = ?.

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

countByU_T

public static int countByU_T(long userId,
                             String type)
                      throws SystemException
Counts all the user id mappers where userId = ? and type = ?.

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

countByT_E

public static int countByT_E(String type,
                             String externalUserId)
                      throws SystemException
Counts all the user id mappers where type = ? and externalUserId = ?.

Parameters:
type - the type to search with
externalUserId - the external user id to search with
Returns:
the number of matching user id mappers
Throws:
SystemException - if a system exception occurred

countAll

public static int countAll()
                    throws SystemException
Counts all the user id mappers.

Returns:
the number of user id mappers
Throws:
SystemException - if a system exception occurred

getPersistence

public static UserIdMapperPersistence getPersistence()

setPersistence

public void setPersistence(UserIdMapperPersistence persistence)

Liferay 6.0-ee