|
Liferay 7.0-ce-b4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
@ProviderType public interface AnnouncementsDeliveryPersistence
The persistence interface for the announcements delivery service.
Caching information and settings can be found in portal.properties
com.liferay.portlet.announcements.service.persistence.impl.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()
Returns the number of announcements deliveries. |
int |
countByU_T(long userId,
String type)
Returns the number of announcements deliveries where userId = ? and type = ?. |
int |
countByUserId(long userId)
Returns the number of announcements deliveries where userId = ?. |
AnnouncementsDelivery |
create(long deliveryId)
Creates a new announcements delivery with the primary key. |
AnnouncementsDelivery |
fetchByPrimaryKey(long deliveryId)
Returns the announcements delivery with the primary key or returns null if it could not be found. |
Map<Serializable,AnnouncementsDelivery> |
fetchByPrimaryKeys(Set<Serializable> primaryKeys)
|
AnnouncementsDelivery |
fetchByU_T(long userId,
String type)
Returns 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)
Returns the announcements delivery where userId = ? and type = ? or returns null if it could not be found, optionally using the finder cache. |
AnnouncementsDelivery |
fetchByUserId_First(long userId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns the first announcements delivery in the ordered set where userId = ?. |
AnnouncementsDelivery |
fetchByUserId_Last(long userId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns the last announcements delivery in the ordered set where userId = ?. |
List<AnnouncementsDelivery> |
findAll()
Returns all the announcements deliveries. |
List<AnnouncementsDelivery> |
findAll(int start,
int end)
Returns a range of all the announcements deliveries. |
List<AnnouncementsDelivery> |
findAll(int start,
int end,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns an ordered range of all the announcements deliveries. |
List<AnnouncementsDelivery> |
findAll(int start,
int end,
OrderByComparator<AnnouncementsDelivery> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the announcements deliveries. |
AnnouncementsDelivery |
findByPrimaryKey(long deliveryId)
Returns the announcements delivery with the primary key or throws a NoSuchDeliveryException if it could not be found. |
AnnouncementsDelivery |
findByU_T(long userId,
String type)
Returns the announcements delivery where userId = ? and type = ? or throws a NoSuchDeliveryException if it could not be found. |
AnnouncementsDelivery |
findByUserId_First(long userId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns the first announcements delivery in the ordered set where userId = ?. |
AnnouncementsDelivery |
findByUserId_Last(long userId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns the last announcements delivery in the ordered set where userId = ?. |
AnnouncementsDelivery[] |
findByUserId_PrevAndNext(long deliveryId,
long userId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns the announcements deliveries before and after the current announcements delivery in the ordered set where userId = ?. |
List<AnnouncementsDelivery> |
findByUserId(long userId)
Returns all the announcements deliveries where userId = ?. |
List<AnnouncementsDelivery> |
findByUserId(long userId,
int start,
int end)
Returns a range of all the announcements deliveries where userId = ?. |
List<AnnouncementsDelivery> |
findByUserId(long userId,
int start,
int end,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
Returns an ordered range of all the announcements deliveries where userId = ?. |
List<AnnouncementsDelivery> |
findByUserId(long userId,
int start,
int end,
OrderByComparator<AnnouncementsDelivery> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the announcements deliveries where userId = ?. |
Set<String> |
getBadColumnNames()
|
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. |
AnnouncementsDelivery |
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)
|
| 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<AnnouncementsDelivery> findByUserId(long userId)
userId - the user ID
List<AnnouncementsDelivery> 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 AnnouncementsDeliveryModelImpl. 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 announcements deliveriesend - the upper bound of the range of announcements deliveries (not inclusive)
List<AnnouncementsDelivery> findByUserId(long userId,
int start,
int end,
OrderByComparator<AnnouncementsDelivery> 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 AnnouncementsDeliveryModelImpl. 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 announcements deliveriesend - the upper bound of the range of announcements deliveries (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
List<AnnouncementsDelivery> findByUserId(long userId,
int start,
int end,
OrderByComparator<AnnouncementsDelivery> 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 AnnouncementsDeliveryModelImpl. 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 announcements deliveriesend - the upper bound of the range of announcements deliveries (not inclusive)orderByComparator - the comparator to order the results by (optionally null)retrieveFromCache - whether to retrieve from the finder cache
AnnouncementsDelivery findByUserId_First(long userId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
throws NoSuchDeliveryException
userId - the user IDorderByComparator - the comparator to order the set by (optionally null)
NoSuchDeliveryException - if a matching announcements delivery could not be found
AnnouncementsDelivery fetchByUserId_First(long userId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
userId - the user IDorderByComparator - the comparator to order the set by (optionally null)
null if a matching announcements delivery could not be found
AnnouncementsDelivery findByUserId_Last(long userId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
throws NoSuchDeliveryException
userId - the user IDorderByComparator - the comparator to order the set by (optionally null)
NoSuchDeliveryException - if a matching announcements delivery could not be found
AnnouncementsDelivery fetchByUserId_Last(long userId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
userId - the user IDorderByComparator - the comparator to order the set by (optionally null)
null if a matching announcements delivery could not be found
AnnouncementsDelivery[] findByUserId_PrevAndNext(long deliveryId,
long userId,
OrderByComparator<AnnouncementsDelivery> orderByComparator)
throws NoSuchDeliveryException
deliveryId - the primary key of the current announcements deliveryuserId - the user IDorderByComparator - the comparator to order the set by (optionally null)
NoSuchDeliveryException - if a announcements delivery with the primary key could not be foundvoid removeByUserId(long userId)
userId - the user IDint countByUserId(long userId)
userId - the user ID
AnnouncementsDelivery findByU_T(long userId,
String type)
throws NoSuchDeliveryException
NoSuchDeliveryException if it could not be found.
userId - the user IDtype - the type
NoSuchDeliveryException - if a matching announcements delivery could not be found
AnnouncementsDelivery 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 announcements delivery could not be found
AnnouncementsDelivery 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 announcements delivery could not be found
AnnouncementsDelivery removeByU_T(long userId,
String type)
throws NoSuchDeliveryException
userId - the user IDtype - the type
NoSuchDeliveryException
int countByU_T(long userId,
String type)
userId - the user IDtype - the type
void cacheResult(AnnouncementsDelivery announcementsDelivery)
announcementsDelivery - the announcements deliveryvoid cacheResult(List<AnnouncementsDelivery> announcementsDeliveries)
announcementsDeliveries - the announcements deliveriesAnnouncementsDelivery create(long deliveryId)
deliveryId - the primary key for the new announcements delivery
AnnouncementsDelivery remove(long deliveryId)
throws NoSuchDeliveryException
deliveryId - the primary key of the announcements delivery
NoSuchDeliveryException - if a announcements delivery with the primary key could not be foundAnnouncementsDelivery updateImpl(AnnouncementsDelivery announcementsDelivery)
AnnouncementsDelivery findByPrimaryKey(long deliveryId)
throws NoSuchDeliveryException
NoSuchDeliveryException if it could not be found.
deliveryId - the primary key of the announcements delivery
NoSuchDeliveryException - if a announcements delivery with the primary key could not be foundAnnouncementsDelivery fetchByPrimaryKey(long deliveryId)
null if it could not be found.
deliveryId - the primary key of the announcements delivery
null if a announcements delivery with the primary key could not be foundMap<Serializable,AnnouncementsDelivery> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
fetchByPrimaryKeys in interface BasePersistence<AnnouncementsDelivery>List<AnnouncementsDelivery> findAll()
List<AnnouncementsDelivery> 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 AnnouncementsDeliveryModelImpl. 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 announcements deliveriesend - the upper bound of the range of announcements deliveries (not inclusive)
List<AnnouncementsDelivery> findAll(int start,
int end,
OrderByComparator<AnnouncementsDelivery> 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 AnnouncementsDeliveryModelImpl. 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 announcements deliveriesend - the upper bound of the range of announcements deliveries (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
List<AnnouncementsDelivery> findAll(int start,
int end,
OrderByComparator<AnnouncementsDelivery> 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 AnnouncementsDeliveryModelImpl. 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 announcements deliveriesend - the upper bound of the range of announcements deliveries (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<AnnouncementsDelivery>
|
Liferay 7.0-ce-b4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||