@ProviderType
public class UserIdMapperUtil
extends Object
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.
Caching information and settings can be found in portal.properties
UserIdMapperPersistence
,
UserIdMapperPersistenceImpl
Constructor and Description |
---|
UserIdMapperUtil() |
Modifier and Type | Method and Description |
---|---|
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()
Returns the number of user ID mappers.
|
static int |
countByT_E(String type,
String externalUserId)
Returns the number of user ID mappers where type = ? and externalUserId = ?.
|
static int |
countByU_T(long userId,
String type)
Returns the number of user ID mappers where userId = ? and type = ?.
|
static int |
countByUserId(long userId)
Returns the number of user ID mappers where userId = ?.
|
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery) |
static UserIdMapper |
create(long userIdMapperId)
Creates a new user ID mapper with the primary key.
|
static UserIdMapper |
fetchByPrimaryKey(long userIdMapperId)
Returns the user ID mapper with the primary key or returns
null if it could not be found. |
static Map<Serializable,UserIdMapper> |
fetchByPrimaryKeys(Set<Serializable> primaryKeys) |
static UserIdMapper |
fetchByT_E(String type,
String externalUserId)
Returns 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)
Returns 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)
Returns 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)
Returns the user ID mapper where userId = ? and type = ? or returns
null if it could not be found, optionally using the finder cache. |
static UserIdMapper |
fetchByUserId_First(long userId,
OrderByComparator<UserIdMapper> orderByComparator)
Returns the first user ID mapper in the ordered set where userId = ?.
|
static UserIdMapper |
fetchByUserId_Last(long userId,
OrderByComparator<UserIdMapper> orderByComparator)
Returns the last user ID mapper in the ordered set where userId = ?.
|
static List<UserIdMapper> |
findAll()
Returns all the user ID mappers.
|
static List<UserIdMapper> |
findAll(int start,
int end)
Returns a range of all the user ID mappers.
|
static List<UserIdMapper> |
findAll(int start,
int end,
OrderByComparator<UserIdMapper> orderByComparator)
Returns an ordered range of all the user ID mappers.
|
static List<UserIdMapper> |
findAll(int start,
int end,
OrderByComparator<UserIdMapper> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the user ID mappers.
|
static UserIdMapper |
findByPrimaryKey(long userIdMapperId)
Returns 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)
Returns 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)
Returns 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<UserIdMapper> orderByComparator)
Returns the first user ID mapper in the ordered set where userId = ?.
|
static UserIdMapper |
findByUserId_Last(long userId,
OrderByComparator<UserIdMapper> orderByComparator)
Returns the last user ID mapper in the ordered set where userId = ?.
|
static UserIdMapper[] |
findByUserId_PrevAndNext(long userIdMapperId,
long userId,
OrderByComparator<UserIdMapper> orderByComparator)
Returns the user ID mappers before and after the current user ID mapper in the ordered set where userId = ?.
|
static List<UserIdMapper> |
findByUserId(long userId)
Returns all the user ID mappers where userId = ?.
|
static List<UserIdMapper> |
findByUserId(long userId,
int start,
int end)
Returns a range of all the user ID mappers where userId = ?.
|
static List<UserIdMapper> |
findByUserId(long userId,
int start,
int end,
OrderByComparator<UserIdMapper> orderByComparator)
Returns an ordered range of all the user ID mappers where userId = ?.
|
static List<UserIdMapper> |
findByUserId(long userId,
int start,
int end,
OrderByComparator<UserIdMapper> orderByComparator,
boolean retrieveFromCache)
Returns 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<UserIdMapper> orderByComparator) |
static Set<String> |
getBadColumnNames() |
static UserIdMapperPersistence |
getPersistence() |
static UserIdMapper |
remove(long userIdMapperId)
Removes the user ID mapper with the primary key from the database.
|
static void |
removeAll()
Removes all the user ID mappers from the database.
|
static UserIdMapper |
removeByT_E(String type,
String externalUserId)
Removes the user ID mapper where type = ? and externalUserId = ? from the database.
|
static UserIdMapper |
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.
|
static UserIdMapper |
update(UserIdMapper userIdMapper) |
static UserIdMapper |
update(UserIdMapper userIdMapper,
ServiceContext serviceContext) |
static UserIdMapper |
updateImpl(UserIdMapper userIdMapper) |
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(UserIdMapper userIdMapper)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
public static List<UserIdMapper> findWithDynamicQuery(DynamicQuery dynamicQuery)
public static List<UserIdMapper> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
public static List<UserIdMapper> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<UserIdMapper> orderByComparator)
public static UserIdMapper update(UserIdMapper userIdMapper)
public static UserIdMapper update(UserIdMapper userIdMapper, ServiceContext serviceContext)
public static List<UserIdMapper> findByUserId(long userId)
userId
- the user IDpublic static List<UserIdMapper> findByUserId(long userId, int start, int end)
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 UserIdMapperModelImpl
. 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 user ID mappersend
- the upper bound of the range of user ID mappers (not inclusive)public static List<UserIdMapper> findByUserId(long userId, int start, int end, OrderByComparator<UserIdMapper> orderByComparator)
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 UserIdMapperModelImpl
. 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 user ID mappersend
- the upper bound of the range of user ID mappers (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<UserIdMapper> findByUserId(long userId, int start, int end, OrderByComparator<UserIdMapper> orderByComparator, boolean retrieveFromCache)
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 UserIdMapperModelImpl
. 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 user ID mappersend
- the upper bound of the range of user ID mappers (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static UserIdMapper findByUserId_First(long userId, OrderByComparator<UserIdMapper> orderByComparator) throws NoSuchUserIdMapperException
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchUserIdMapperException
- if a matching user ID mapper could not be foundpublic static UserIdMapper fetchByUserId_First(long userId, OrderByComparator<UserIdMapper> orderByComparator)
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching user ID mapper could not be foundpublic static UserIdMapper findByUserId_Last(long userId, OrderByComparator<UserIdMapper> orderByComparator) throws NoSuchUserIdMapperException
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchUserIdMapperException
- if a matching user ID mapper could not be foundpublic static UserIdMapper fetchByUserId_Last(long userId, OrderByComparator<UserIdMapper> orderByComparator)
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching user ID mapper could not be foundpublic static UserIdMapper[] findByUserId_PrevAndNext(long userIdMapperId, long userId, OrderByComparator<UserIdMapper> orderByComparator) throws NoSuchUserIdMapperException
userIdMapperId
- the primary key of the current user ID mapperuserId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchUserIdMapperException
- if a user ID mapper with the primary key could not be foundpublic static void removeByUserId(long userId)
userId
- the user IDpublic static int countByUserId(long userId)
userId
- the user IDpublic static UserIdMapper findByU_T(long userId, String type) throws NoSuchUserIdMapperException
NoSuchUserIdMapperException
if it could not be found.userId
- the user IDtype
- the typeNoSuchUserIdMapperException
- if a matching user ID mapper could not be foundpublic static UserIdMapper fetchByU_T(long userId, String type)
null
if it could not be found. Uses the finder cache.userId
- the user IDtype
- the typenull
if a matching user ID mapper could not be foundpublic static UserIdMapper fetchByU_T(long userId, String type, boolean retrieveFromCache)
null
if it could not be found, optionally using the finder cache.userId
- the user IDtype
- the typeretrieveFromCache
- whether to retrieve from the finder cachenull
if a matching user ID mapper could not be foundpublic static UserIdMapper removeByU_T(long userId, String type) throws NoSuchUserIdMapperException
userId
- the user IDtype
- the typeNoSuchUserIdMapperException
public static int countByU_T(long userId, String type)
userId
- the user IDtype
- the typepublic static UserIdMapper findByT_E(String type, String externalUserId) throws NoSuchUserIdMapperException
NoSuchUserIdMapperException
if it could not be found.type
- the typeexternalUserId
- the external user IDNoSuchUserIdMapperException
- if a matching user ID mapper could not be foundpublic static UserIdMapper fetchByT_E(String type, String externalUserId)
null
if it could not be found. Uses the finder cache.type
- the typeexternalUserId
- the external user IDnull
if a matching user ID mapper could not be foundpublic static UserIdMapper fetchByT_E(String type, String externalUserId, boolean retrieveFromCache)
null
if it could not be found, optionally using the finder cache.type
- the typeexternalUserId
- the external user IDretrieveFromCache
- whether to retrieve from the finder cachenull
if a matching user ID mapper could not be foundpublic static UserIdMapper removeByT_E(String type, String externalUserId) throws NoSuchUserIdMapperException
type
- the typeexternalUserId
- the external user IDNoSuchUserIdMapperException
public static int countByT_E(String type, String externalUserId)
type
- the typeexternalUserId
- the external user IDpublic static void cacheResult(UserIdMapper userIdMapper)
userIdMapper
- the user ID mapperpublic static void cacheResult(List<UserIdMapper> userIdMappers)
userIdMappers
- the user ID mapperspublic static UserIdMapper create(long userIdMapperId)
userIdMapperId
- the primary key for the new user ID mapperpublic static UserIdMapper remove(long userIdMapperId) throws NoSuchUserIdMapperException
userIdMapperId
- the primary key of the user ID mapperNoSuchUserIdMapperException
- if a user ID mapper with the primary key could not be foundpublic static UserIdMapper updateImpl(UserIdMapper userIdMapper)
public static UserIdMapper findByPrimaryKey(long userIdMapperId) throws NoSuchUserIdMapperException
NoSuchUserIdMapperException
if it could not be found.userIdMapperId
- the primary key of the user ID mapperNoSuchUserIdMapperException
- if a user ID mapper with the primary key could not be foundpublic static UserIdMapper fetchByPrimaryKey(long userIdMapperId)
null
if it could not be found.userIdMapperId
- the primary key of the user ID mappernull
if a user ID mapper with the primary key could not be foundpublic static Map<Serializable,UserIdMapper> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
public static List<UserIdMapper> findAll()
public static List<UserIdMapper> findAll(int start, int end)
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 UserIdMapperModelImpl
. 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 user ID mappersend
- the upper bound of the range of user ID mappers (not inclusive)public static List<UserIdMapper> findAll(int start, int end, OrderByComparator<UserIdMapper> orderByComparator)
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 UserIdMapperModelImpl
. 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 user ID mappersend
- the upper bound of the range of user ID mappers (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<UserIdMapper> findAll(int start, int end, OrderByComparator<UserIdMapper> orderByComparator, boolean retrieveFromCache)
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 UserIdMapperModelImpl
. 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 user ID mappersend
- the upper bound of the range of user ID mappers (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static void removeAll()
public static int countAll()
public static Set<String> getBadColumnNames()
public static UserIdMapperPersistence getPersistence()