|
Liferay 6.0.4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface UserIdMapperPersistence
The persistence interface for the user id mapper service.
Never modify this interface directly. Modify service.xml and rerun ServiceBuilder to regnerate this interface.
UserIdMapperPersistenceImpl,
UserIdMapperUtil| Method Summary | |
|---|---|
void |
cacheResult(List<UserIdMapper> userIdMappers)
Caches the user id mappers in the entity cache if it is enabled. |
void |
cacheResult(UserIdMapper userIdMapper)
Caches the user id mapper in the entity cache if it is enabled. |
int |
countAll()
Counts all the user id mappers. |
int |
countByT_E(String type,
String externalUserId)
Counts all the user id mappers where type = ? and externalUserId = ?. |
int |
countByU_T(long userId,
String type)
Counts all the user id mappers where userId = ? and type = ?. |
int |
countByUserId(long userId)
Counts all the user id mappers where userId = ?. |
UserIdMapper |
create(long userIdMapperId)
Creates a new user id mapper with the primary key. |
UserIdMapper |
fetchByPrimaryKey(long userIdMapperId)
Finds the user id mapper with the primary key or returns null if it could not be found. |
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. |
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. |
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. |
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. |
List<UserIdMapper> |
findAll()
Finds all the user id mappers. |
List<UserIdMapper> |
findAll(int start,
int end)
Finds a range of all the user id mappers. |
List<UserIdMapper> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the user id mappers. |
UserIdMapper |
findByPrimaryKey(long userIdMapperId)
Finds the user id mapper with the primary key or throws a NoSuchUserIdMapperException if it could not be found. |
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. |
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. |
UserIdMapper |
findByUserId_First(long userId,
OrderByComparator orderByComparator)
Finds the first user id mapper in the ordered set where userId = ?. |
UserIdMapper |
findByUserId_Last(long userId,
OrderByComparator orderByComparator)
Finds the last user id mapper in the ordered set where userId = ?. |
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 = ?. |
List<UserIdMapper> |
findByUserId(long userId)
Finds all the user id mappers where userId = ?. |
List<UserIdMapper> |
findByUserId(long userId,
int start,
int end)
Finds a range of all the user id mappers where userId = ?. |
List<UserIdMapper> |
findByUserId(long userId,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the user id mappers where userId = ?. |
UserIdMapper |
remove(long userIdMapperId)
Removes the user id mapper with the primary key from the database. |
void |
removeAll()
Removes all the user id mappers from the database. |
void |
removeByT_E(String type,
String externalUserId)
Removes the user id mapper where type = ? and externalUserId = ? from the database. |
void |
removeByU_T(long userId,
String type)
Removes the user id mapper where userId = ? and type = ? from the database. |
void |
removeByUserId(long userId)
Removes all the user id mappers where userId = ? from the database. |
UserIdMapper |
updateImpl(UserIdMapper userIdMapper,
boolean merge)
|
| Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence |
|---|
clearCache, clearCache, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, registerListener, remove, remove, setDataSource, unregisterListener, update, update |
| Method Detail |
|---|
void cacheResult(UserIdMapper userIdMapper)
userIdMapper - the user id mapper to cachevoid cacheResult(List<UserIdMapper> userIdMappers)
userIdMappers - the user id mappers to cacheUserIdMapper create(long userIdMapperId)
userIdMapperId - the primary key for the new user id mapper
UserIdMapper remove(long userIdMapperId)
throws NoSuchUserIdMapperException,
SystemException
userIdMapperId - the primary key of the user id mapper to remove
NoSuchUserIdMapperException - if a user id mapper with the primary key could not be found
SystemException - if a system exception occurred
UserIdMapper updateImpl(UserIdMapper userIdMapper,
boolean merge)
throws SystemException
SystemException
UserIdMapper findByPrimaryKey(long userIdMapperId)
throws NoSuchUserIdMapperException,
SystemException
NoSuchUserIdMapperException if it could not be found.
userIdMapperId - the primary key of the user id mapper to find
NoSuchUserIdMapperException - if a user id mapper with the primary key could not be found
SystemException - if a system exception occurred
UserIdMapper fetchByPrimaryKey(long userIdMapperId)
throws SystemException
null if it could not be found.
userIdMapperId - the primary key of the user id mapper to find
null if a user id mapper with the primary key could not be found
SystemException - if a system exception occurred
List<UserIdMapper> findByUserId(long userId)
throws SystemException
userId - the user id to search with
SystemException - if a system exception occurred
List<UserIdMapper> 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 user id mappers to returnend - the upper bound of the range of user id mappers to return (not inclusive)
SystemException - if a system exception occurred
List<UserIdMapper> 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 user id mappers to returnend - the upper bound of the range of user id mappers to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
UserIdMapper findByUserId_First(long userId,
OrderByComparator orderByComparator)
throws NoSuchUserIdMapperException,
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
NoSuchUserIdMapperException - if a matching user id mapper could not be found
SystemException - if a system exception occurred
UserIdMapper findByUserId_Last(long userId,
OrderByComparator orderByComparator)
throws NoSuchUserIdMapperException,
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
NoSuchUserIdMapperException - if a matching user id mapper could not be found
SystemException - if a system exception occurred
UserIdMapper[] findByUserId_PrevAndNext(long userIdMapperId,
long userId,
OrderByComparator orderByComparator)
throws NoSuchUserIdMapperException,
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.
userIdMapperId - the primary key of the current user id mapperuserId - the user id to search withorderByComparator - the comparator to order the set by
NoSuchUserIdMapperException - if a user id mapper with the primary key could not be found
SystemException - if a system exception occurred
UserIdMapper findByU_T(long userId,
String type)
throws NoSuchUserIdMapperException,
SystemException
NoSuchUserIdMapperException if it could not be found.
userId - the user id to search withtype - the type to search with
NoSuchUserIdMapperException - if a matching user id mapper could not be found
SystemException - if a system exception occurred
UserIdMapper fetchByU_T(long userId,
String type)
throws SystemException
null if it could not be found. Uses the finder cache.
userId - the user id to search withtype - the type to search with
null if a matching user id mapper could not be found
SystemException - if a system exception occurred
UserIdMapper fetchByU_T(long userId,
String type,
boolean retrieveFromCache)
throws SystemException
null if it could not be found, optionally using the finder cache.
userId - the user id to search withtype - the type to search with
null if a matching user id mapper could not be found
SystemException - if a system exception occurred
UserIdMapper findByT_E(String type,
String externalUserId)
throws NoSuchUserIdMapperException,
SystemException
NoSuchUserIdMapperException if it could not be found.
type - the type to search withexternalUserId - the external user id to search with
NoSuchUserIdMapperException - if a matching user id mapper could not be found
SystemException - if a system exception occurred
UserIdMapper fetchByT_E(String type,
String externalUserId)
throws SystemException
null if it could not be found. Uses the finder cache.
type - the type to search withexternalUserId - the external user id to search with
null if a matching user id mapper could not be found
SystemException - if a system exception occurred
UserIdMapper fetchByT_E(String type,
String externalUserId,
boolean retrieveFromCache)
throws SystemException
null if it could not be found, optionally using the finder cache.
type - the type to search withexternalUserId - the external user id to search with
null if a matching user id mapper could not be found
SystemException - if a system exception occurred
List<UserIdMapper> findAll()
throws SystemException
SystemException - if a system exception occurred
List<UserIdMapper> 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 user id mappers to returnend - the upper bound of the range of user id mappers to return (not inclusive)
SystemException - if a system exception occurred
List<UserIdMapper> 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 user id mappers to returnend - the upper bound of the range of user id mappers to return (not inclusive)orderByComparator - the comparator to order the results by
SystemException - if a system exception occurred
void removeByUserId(long userId)
throws SystemException
userId - the user id to search with
SystemException - if a system exception occurred
void removeByU_T(long userId,
String type)
throws NoSuchUserIdMapperException,
SystemException
userId - the user id to search withtype - the type to search with
SystemException - if a system exception occurred
NoSuchUserIdMapperException
void removeByT_E(String type,
String externalUserId)
throws NoSuchUserIdMapperException,
SystemException
type - the type to search withexternalUserId - the external user id to search with
SystemException - if a system exception occurred
NoSuchUserIdMapperException
void removeAll()
throws SystemException
SystemException - if a system exception occurred
int countByUserId(long userId)
throws SystemException
userId - the user id to search with
SystemException - if a system exception occurred
int countByU_T(long userId,
String type)
throws SystemException
userId - the user id to search withtype - the type to search with
SystemException - if a system exception occurred
int countByT_E(String type,
String externalUserId)
throws SystemException
type - the type to search withexternalUserId - the external user id to search with
SystemException - if a system exception occurred
int countAll()
throws SystemException
SystemException - if a system exception occurred
|
Liferay 6.0.4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||