|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface AnnouncementsDeliveryPersistence
The persistence interface for the announcements delivery service.
Never modify or reference this interface directly. Always use AnnouncementsDeliveryUtil
to access the announcements delivery persistence. Modify service.xml
and rerun ServiceBuilder to regenerate this interface.
Caching information and settings can be found in portal.properties
AnnouncementsDeliveryPersistenceImpl
,
AnnouncementsDeliveryUtil
Method Summary | |
---|---|
void |
cacheResult(AnnouncementsDelivery announcementsDelivery)
Caches the announcements delivery in the entity cache if it is enabled. |
void |
cacheResult(List<AnnouncementsDelivery> announcementsDeliveries)
Caches the announcements deliveries in the entity cache if it is enabled. |
int |
countAll()
Counts all the announcements deliveries. |
int |
countByU_T(long userId,
String type)
Counts all the announcements deliveries where userId = ? and type = ?. |
int |
countByUserId(long userId)
Counts all the announcements deliveries where userId = ?. |
AnnouncementsDelivery |
create(long deliveryId)
Creates a new announcements delivery with the primary key. |
AnnouncementsDelivery |
fetchByPrimaryKey(long deliveryId)
Finds the announcements delivery with the primary key or returns null if it could not be found. |
AnnouncementsDelivery |
fetchByU_T(long userId,
String type)
Finds the announcements delivery where userId = ? and type = ? or returns null if it could not be found. |
AnnouncementsDelivery |
fetchByU_T(long userId,
String type,
boolean retrieveFromCache)
Finds the announcements delivery where userId = ? and type = ? or returns null if it could not be found, optionally using the finder cache. |
List<AnnouncementsDelivery> |
findAll()
Finds all the announcements deliveries. |
List<AnnouncementsDelivery> |
findAll(int start,
int end)
Finds a range of all the announcements deliveries. |
List<AnnouncementsDelivery> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the announcements deliveries. |
AnnouncementsDelivery |
findByPrimaryKey(long deliveryId)
Finds the announcements delivery with the primary key or throws a NoSuchDeliveryException if it could not be found. |
AnnouncementsDelivery |
findByU_T(long userId,
String type)
Finds the announcements delivery where userId = ? and type = ? or throws a NoSuchDeliveryException if it could not be found. |
AnnouncementsDelivery |
findByUserId_First(long userId,
OrderByComparator orderByComparator)
Finds the first announcements delivery in the ordered set where userId = ?. |
AnnouncementsDelivery |
findByUserId_Last(long userId,
OrderByComparator orderByComparator)
Finds the last announcements delivery in the ordered set where userId = ?. |
AnnouncementsDelivery[] |
findByUserId_PrevAndNext(long deliveryId,
long userId,
OrderByComparator orderByComparator)
Finds the announcements deliveries before and after the current announcements delivery in the ordered set where userId = ?. |
List<AnnouncementsDelivery> |
findByUserId(long userId)
Finds all the announcements deliveries where userId = ?. |
List<AnnouncementsDelivery> |
findByUserId(long userId,
int start,
int end)
Finds a range of all the announcements deliveries where userId = ?. |
List<AnnouncementsDelivery> |
findByUserId(long userId,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the announcements deliveries where userId = ?. |
AnnouncementsDelivery |
remove(long deliveryId)
Removes the announcements delivery with the primary key from the database. |
void |
removeAll()
Removes all the announcements deliveries from the database. |
void |
removeByU_T(long userId,
String type)
Removes the announcements delivery where userId = ? and type = ? from the database. |
void |
removeByUserId(long userId)
Removes all the announcements deliveries where userId = ? from the database. |
AnnouncementsDelivery |
updateImpl(AnnouncementsDelivery announcementsDelivery,
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(AnnouncementsDelivery announcementsDelivery)
announcementsDelivery
- the announcements delivery to cachevoid cacheResult(List<AnnouncementsDelivery> announcementsDeliveries)
announcementsDeliveries
- the announcements deliveries to cacheAnnouncementsDelivery create(long deliveryId)
deliveryId
- the primary key for the new announcements delivery
AnnouncementsDelivery remove(long deliveryId) throws SystemException, NoSuchDeliveryException
deliveryId
- the primary key of the announcements delivery to remove
NoSuchDeliveryException
- if a announcements delivery with the primary key could not be found
SystemException
- if a system exception occurredAnnouncementsDelivery updateImpl(AnnouncementsDelivery announcementsDelivery, boolean merge) throws SystemException
SystemException
AnnouncementsDelivery findByPrimaryKey(long deliveryId) throws SystemException, NoSuchDeliveryException
NoSuchDeliveryException
if it could not be found.
deliveryId
- the primary key of the announcements delivery to find
NoSuchDeliveryException
- if a announcements delivery with the primary key could not be found
SystemException
- if a system exception occurredAnnouncementsDelivery fetchByPrimaryKey(long deliveryId) throws SystemException
null
if it could not be found.
deliveryId
- the primary key of the announcements delivery to find
null
if a announcements delivery with the primary key could not be found
SystemException
- if a system exception occurredList<AnnouncementsDelivery> findByUserId(long userId) throws SystemException
userId
- the user id to search with
SystemException
- if a system exception occurredList<AnnouncementsDelivery> 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 announcements deliveries to returnend
- the upper bound of the range of announcements deliveries to return (not inclusive)
SystemException
- if a system exception occurredList<AnnouncementsDelivery> 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 announcements deliveries to returnend
- the upper bound of the range of announcements deliveries to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredAnnouncementsDelivery findByUserId_First(long userId, OrderByComparator orderByComparator) throws SystemException, NoSuchDeliveryException
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
NoSuchDeliveryException
- if a matching announcements delivery could not be found
SystemException
- if a system exception occurredAnnouncementsDelivery findByUserId_Last(long userId, OrderByComparator orderByComparator) throws SystemException, NoSuchDeliveryException
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
NoSuchDeliveryException
- if a matching announcements delivery could not be found
SystemException
- if a system exception occurredAnnouncementsDelivery[] findByUserId_PrevAndNext(long deliveryId, long userId, OrderByComparator orderByComparator) throws SystemException, NoSuchDeliveryException
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.
deliveryId
- the primary key of the current announcements deliveryuserId
- the user id to search withorderByComparator
- the comparator to order the set by
NoSuchDeliveryException
- if a announcements delivery with the primary key could not be found
SystemException
- if a system exception occurredAnnouncementsDelivery findByU_T(long userId, String type) throws SystemException, NoSuchDeliveryException
NoSuchDeliveryException
if it could not be found.
userId
- the user id to search withtype
- the type to search with
NoSuchDeliveryException
- if a matching announcements delivery could not be found
SystemException
- if a system exception occurredAnnouncementsDelivery 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 announcements delivery could not be found
SystemException
- if a system exception occurredAnnouncementsDelivery 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 announcements delivery could not be found
SystemException
- if a system exception occurredList<AnnouncementsDelivery> findAll() throws SystemException
SystemException
- if a system exception occurredList<AnnouncementsDelivery> 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 announcements deliveries to returnend
- the upper bound of the range of announcements deliveries to return (not inclusive)
SystemException
- if a system exception occurredList<AnnouncementsDelivery> 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 announcements deliveries to returnend
- the upper bound of the range of announcements deliveries to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredvoid removeByUserId(long userId) throws SystemException
userId
- the user id to search with
SystemException
- if a system exception occurredvoid removeByU_T(long userId, String type) throws SystemException, NoSuchDeliveryException
userId
- the user id to search withtype
- the type to search with
SystemException
- if a system exception occurred
NoSuchDeliveryException
void removeAll() throws SystemException
SystemException
- if a system exception occurredint countByUserId(long userId) throws SystemException
userId
- the user id to search with
SystemException
- if a system exception occurredint 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 occurredint countAll() throws SystemException
SystemException
- if a system exception occurred
|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |