Package | Description |
---|---|
com.liferay.portal.kernel.service.persistence |
This package defines the portal service persistence interfaces, classes, and utilities.
|
Modifier and Type | Method and Description |
---|---|
UserIdMapper |
UserIdMapperPersistence.findByPrimaryKey(long userIdMapperId)
Returns the user ID mapper with the primary key or throws a
NoSuchUserIdMapperException if it could not be found. |
static UserIdMapper |
UserIdMapperUtil.findByPrimaryKey(long userIdMapperId)
Returns the user ID mapper with the primary key or throws a
NoSuchUserIdMapperException if it could not be found. |
UserIdMapper |
UserIdMapperPersistence.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 |
UserIdMapperUtil.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 |
UserIdMapperPersistence.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 |
UserIdMapperUtil.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 |
UserIdMapperPersistence.findByUserId_First(long userId,
OrderByComparator<UserIdMapper> orderByComparator)
Returns the first user ID mapper in the ordered set where userId = ?.
|
static UserIdMapper |
UserIdMapperUtil.findByUserId_First(long userId,
OrderByComparator<UserIdMapper> orderByComparator)
Returns the first user ID mapper in the ordered set where userId = ?.
|
UserIdMapper |
UserIdMapperPersistence.findByUserId_Last(long userId,
OrderByComparator<UserIdMapper> orderByComparator)
Returns the last user ID mapper in the ordered set where userId = ?.
|
static UserIdMapper |
UserIdMapperUtil.findByUserId_Last(long userId,
OrderByComparator<UserIdMapper> orderByComparator)
Returns the last user ID mapper in the ordered set where userId = ?.
|
UserIdMapper[] |
UserIdMapperPersistence.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 UserIdMapper[] |
UserIdMapperUtil.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 = ?.
|
UserIdMapper |
UserIdMapperPersistence.remove(long userIdMapperId)
Removes the user ID mapper with the primary key from the database.
|
static UserIdMapper |
UserIdMapperUtil.remove(long userIdMapperId)
Removes the user ID mapper with the primary key from the database.
|
UserIdMapper |
UserIdMapperPersistence.removeByT_E(String type,
String externalUserId)
Removes the user ID mapper where type = ? and externalUserId = ? from the database.
|
static UserIdMapper |
UserIdMapperUtil.removeByT_E(String type,
String externalUserId)
Removes the user ID mapper where type = ? and externalUserId = ? from the database.
|
UserIdMapper |
UserIdMapperPersistence.removeByU_T(long userId,
String type)
Removes the user ID mapper where userId = ? and type = ? from the database.
|
static UserIdMapper |
UserIdMapperUtil.removeByU_T(long userId,
String type)
Removes the user ID mapper where userId = ? and type = ? from the database.
|