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 |
---|---|
UserNotificationDelivery |
UserNotificationDeliveryPersistence.findByPrimaryKey(long userNotificationDeliveryId)
Returns the user notification delivery with the primary key or throws a
NoSuchUserNotificationDeliveryException if it could not be found. |
static UserNotificationDelivery |
UserNotificationDeliveryUtil.findByPrimaryKey(long userNotificationDeliveryId)
Returns the user notification delivery with the primary key or throws a
NoSuchUserNotificationDeliveryException if it could not be found. |
UserNotificationDelivery |
UserNotificationDeliveryPersistence.findByU_P_C_N_D(long userId,
String portletId,
long classNameId,
int notificationType,
int deliveryType)
Returns the user notification delivery where userId = ? and portletId = ? and classNameId = ? and notificationType = ? and deliveryType = ? or throws a
NoSuchUserNotificationDeliveryException if it could not be found. |
static UserNotificationDelivery |
UserNotificationDeliveryUtil.findByU_P_C_N_D(long userId,
String portletId,
long classNameId,
int notificationType,
int deliveryType)
Returns the user notification delivery where userId = ? and portletId = ? and classNameId = ? and notificationType = ? and deliveryType = ? or throws a
NoSuchUserNotificationDeliveryException if it could not be found. |
UserNotificationDelivery |
UserNotificationDeliveryPersistence.findByUserId_First(long userId,
OrderByComparator<UserNotificationDelivery> orderByComparator)
Returns the first user notification delivery in the ordered set where userId = ?.
|
static UserNotificationDelivery |
UserNotificationDeliveryUtil.findByUserId_First(long userId,
OrderByComparator<UserNotificationDelivery> orderByComparator)
Returns the first user notification delivery in the ordered set where userId = ?.
|
UserNotificationDelivery |
UserNotificationDeliveryPersistence.findByUserId_Last(long userId,
OrderByComparator<UserNotificationDelivery> orderByComparator)
Returns the last user notification delivery in the ordered set where userId = ?.
|
static UserNotificationDelivery |
UserNotificationDeliveryUtil.findByUserId_Last(long userId,
OrderByComparator<UserNotificationDelivery> orderByComparator)
Returns the last user notification delivery in the ordered set where userId = ?.
|
UserNotificationDelivery[] |
UserNotificationDeliveryPersistence.findByUserId_PrevAndNext(long userNotificationDeliveryId,
long userId,
OrderByComparator<UserNotificationDelivery> orderByComparator)
Returns the user notification deliveries before and after the current user notification delivery in the ordered set where userId = ?.
|
static UserNotificationDelivery[] |
UserNotificationDeliveryUtil.findByUserId_PrevAndNext(long userNotificationDeliveryId,
long userId,
OrderByComparator<UserNotificationDelivery> orderByComparator)
Returns the user notification deliveries before and after the current user notification delivery in the ordered set where userId = ?.
|
UserNotificationDelivery |
UserNotificationDeliveryPersistence.remove(long userNotificationDeliveryId)
Removes the user notification delivery with the primary key from the database.
|
static UserNotificationDelivery |
UserNotificationDeliveryUtil.remove(long userNotificationDeliveryId)
Removes the user notification delivery with the primary key from the database.
|
UserNotificationDelivery |
UserNotificationDeliveryPersistence.removeByU_P_C_N_D(long userId,
String portletId,
long classNameId,
int notificationType,
int deliveryType)
Removes the user notification delivery where userId = ? and portletId = ? and classNameId = ? and notificationType = ? and deliveryType = ? from the database.
|
static UserNotificationDelivery |
UserNotificationDeliveryUtil.removeByU_P_C_N_D(long userId,
String portletId,
long classNameId,
int notificationType,
int deliveryType)
Removes the user notification delivery where userId = ? and portletId = ? and classNameId = ? and notificationType = ? and deliveryType = ? from the database.
|