|
Liferay 7.0-ce-b4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
@ProviderType public interface UserIdMapperPersistence
The persistence interface for the user ID mapper service.
Caching information and settings can be found in portal.properties
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()
Returns the number of user ID mappers. |
int |
countByT_E(String type,
String externalUserId)
Returns the number of user ID mappers where type = ? and externalUserId = ?. |
int |
countByU_T(long userId,
String type)
Returns the number of user ID mappers where userId = ? and type = ?. |
int |
countByUserId(long userId)
Returns the number of user ID mappers where userId = ?. |
UserIdMapper |
create(long userIdMapperId)
Creates a new user ID mapper with the primary key. |
UserIdMapper |
fetchByPrimaryKey(long userIdMapperId)
Returns the user ID mapper with the primary key or returns null if it could not be found. |
Map<Serializable,UserIdMapper> |
fetchByPrimaryKeys(Set<Serializable> primaryKeys)
|
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. |
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. |
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. |
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. |
UserIdMapper |
fetchByUserId_First(long userId,
OrderByComparator<UserIdMapper> orderByComparator)
Returns the first user ID mapper in the ordered set where userId = ?. |
UserIdMapper |
fetchByUserId_Last(long userId,
OrderByComparator<UserIdMapper> orderByComparator)
Returns the last user ID mapper in the ordered set where userId = ?. |
List<UserIdMapper> |
findAll()
Returns all the user ID mappers. |
List<UserIdMapper> |
findAll(int start,
int end)
Returns a range of all the user ID mappers. |
List<UserIdMapper> |
findAll(int start,
int end,
OrderByComparator<UserIdMapper> orderByComparator)
Returns an ordered range of all the user ID mappers. |
List<UserIdMapper> |
findAll(int start,
int end,
OrderByComparator<UserIdMapper> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the user ID mappers. |
UserIdMapper |
findByPrimaryKey(long userIdMapperId)
Returns 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)
Returns 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)
Returns the user ID mapper where userId = ? and type = ? or throws a NoSuchUserIdMapperException if it could not be found. |
UserIdMapper |
findByUserId_First(long userId,
OrderByComparator<UserIdMapper> orderByComparator)
Returns the first user ID mapper in the ordered set where userId = ?. |
UserIdMapper |
findByUserId_Last(long userId,
OrderByComparator<UserIdMapper> orderByComparator)
Returns the last user ID mapper in the ordered set where userId = ?. |
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 = ?. |
List<UserIdMapper> |
findByUserId(long userId)
Returns all the user ID mappers where userId = ?. |
List<UserIdMapper> |
findByUserId(long userId,
int start,
int end)
Returns a range of all the user ID mappers where userId = ?. |
List<UserIdMapper> |
findByUserId(long userId,
int start,
int end,
OrderByComparator<UserIdMapper> orderByComparator)
Returns an ordered range of all the user ID mappers where userId = ?. |
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 = ?. |
Set<String> |
getBadColumnNames()
|
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. |
UserIdMapper |
removeByT_E(String type,
String externalUserId)
Removes the user ID mapper where type = ? and externalUserId = ? from the database. |
UserIdMapper |
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)
|
| Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence |
|---|
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getCurrentSession, getDataSource, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update, update, update |
| Method Detail |
|---|
List<UserIdMapper> findByUserId(long userId)
userId - the user ID
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)
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)
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 cache
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 found
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 found
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 found
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 found
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 foundvoid removeByUserId(long userId)
userId - the user IDint countByUserId(long userId)
userId - the user ID
UserIdMapper findByU_T(long userId,
String type)
throws NoSuchUserIdMapperException
NoSuchUserIdMapperException if it could not be found.
userId - the user IDtype - the type
NoSuchUserIdMapperException - if a matching user ID mapper could not be found
UserIdMapper fetchByU_T(long userId,
String type)
null if it could not be found. Uses the finder cache.
userId - the user IDtype - the type
null if a matching user ID mapper could not be found
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 cache
null if a matching user ID mapper could not be found
UserIdMapper removeByU_T(long userId,
String type)
throws NoSuchUserIdMapperException
userId - the user IDtype - the type
NoSuchUserIdMapperException
int countByU_T(long userId,
String type)
userId - the user IDtype - the type
UserIdMapper findByT_E(String type,
String externalUserId)
throws NoSuchUserIdMapperException
NoSuchUserIdMapperException if it could not be found.
type - the typeexternalUserId - the external user ID
NoSuchUserIdMapperException - if a matching user ID mapper could not be found
UserIdMapper fetchByT_E(String type,
String externalUserId)
null if it could not be found. Uses the finder cache.
type - the typeexternalUserId - the external user ID
null if a matching user ID mapper could not be found
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 cache
null if a matching user ID mapper could not be found
UserIdMapper removeByT_E(String type,
String externalUserId)
throws NoSuchUserIdMapperException
type - the typeexternalUserId - the external user ID
NoSuchUserIdMapperException
int countByT_E(String type,
String externalUserId)
type - the typeexternalUserId - the external user ID
void cacheResult(UserIdMapper userIdMapper)
userIdMapper - the user ID mappervoid cacheResult(List<UserIdMapper> userIdMappers)
userIdMappers - the user ID mappersUserIdMapper create(long userIdMapperId)
userIdMapperId - the primary key for the new user ID mapper
UserIdMapper remove(long userIdMapperId)
throws NoSuchUserIdMapperException
userIdMapperId - the primary key of the user ID mapper
NoSuchUserIdMapperException - if a user ID mapper with the primary key could not be foundUserIdMapper updateImpl(UserIdMapper userIdMapper)
UserIdMapper findByPrimaryKey(long userIdMapperId)
throws NoSuchUserIdMapperException
NoSuchUserIdMapperException if it could not be found.
userIdMapperId - the primary key of the user ID mapper
NoSuchUserIdMapperException - if a user ID mapper with the primary key could not be foundUserIdMapper fetchByPrimaryKey(long userIdMapperId)
null if it could not be found.
userIdMapperId - the primary key of the user ID mapper
null if a user ID mapper with the primary key could not be foundMap<Serializable,UserIdMapper> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
fetchByPrimaryKeys in interface BasePersistence<UserIdMapper>List<UserIdMapper> findAll()
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)
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)
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 cache
void removeAll()
int countAll()
Set<String> getBadColumnNames()
getBadColumnNames in interface BasePersistence<UserIdMapper>
|
Liferay 7.0-ce-b4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||