Liferay 6.2-ce-ga5

com.liferay.portlet.announcements.service.persistence
Interface AnnouncementsDeliveryPersistence

All Superinterfaces:
BasePersistence<AnnouncementsDelivery>

@ProviderType
public interface AnnouncementsDeliveryPersistence
extends BasePersistence<AnnouncementsDelivery>

The persistence interface for the announcements delivery service.

Caching information and settings can be found in portal.properties

See Also:
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.
 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 orderByComparator)
          Returns the first announcements delivery in the ordered set where userId = ?.
 AnnouncementsDelivery fetchByUserId_Last(long userId, OrderByComparator 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 orderByComparator)
          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 orderByComparator)
          Returns the first announcements delivery in the ordered set where userId = ?.
 AnnouncementsDelivery findByUserId_Last(long userId, OrderByComparator orderByComparator)
          Returns the last announcements delivery in the ordered set where userId = ?.
 AnnouncementsDelivery[] findByUserId_PrevAndNext(long deliveryId, long userId, OrderByComparator 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 orderByComparator)
          Returns 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.
 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

findByUserId

List<AnnouncementsDelivery> findByUserId(long userId)
                                         throws SystemException
Returns all the announcements deliveries where userId = ?.

Parameters:
userId - the user ID
Returns:
the matching announcements deliveries
Throws:
SystemException - if a system exception occurred

findByUserId

List<AnnouncementsDelivery> findByUserId(long userId,
                                         int start,
                                         int end)
                                         throws SystemException
Returns a range of all the announcements deliveries where userId = ?.

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.

Parameters:
userId - the user ID
start - the lower bound of the range of announcements deliveries
end - the upper bound of the range of announcements deliveries (not inclusive)
Returns:
the range of matching announcements deliveries
Throws:
SystemException - if a system exception occurred

findByUserId

List<AnnouncementsDelivery> findByUserId(long userId,
                                         int start,
                                         int end,
                                         OrderByComparator orderByComparator)
                                         throws SystemException
Returns an ordered range of all the announcements deliveries where userId = ?.

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.

Parameters:
userId - the user ID
start - the lower bound of the range of announcements deliveries
end - the upper bound of the range of announcements deliveries (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching announcements deliveries
Throws:
SystemException - if a system exception occurred

findByUserId_First

AnnouncementsDelivery findByUserId_First(long userId,
                                         OrderByComparator orderByComparator)
                                         throws SystemException,
                                                NoSuchDeliveryException
Returns the first announcements delivery in the ordered set where userId = ?.

Parameters:
userId - the user ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching announcements delivery
Throws:
NoSuchDeliveryException - if a matching announcements delivery could not be found
SystemException - if a system exception occurred

fetchByUserId_First

AnnouncementsDelivery fetchByUserId_First(long userId,
                                          OrderByComparator orderByComparator)
                                          throws SystemException
Returns the first announcements delivery in the ordered set where userId = ?.

Parameters:
userId - the user ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching announcements delivery, or null if a matching announcements delivery could not be found
Throws:
SystemException - if a system exception occurred

findByUserId_Last

AnnouncementsDelivery findByUserId_Last(long userId,
                                        OrderByComparator orderByComparator)
                                        throws SystemException,
                                               NoSuchDeliveryException
Returns the last announcements delivery in the ordered set where userId = ?.

Parameters:
userId - the user ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching announcements delivery
Throws:
NoSuchDeliveryException - if a matching announcements delivery could not be found
SystemException - if a system exception occurred

fetchByUserId_Last

AnnouncementsDelivery fetchByUserId_Last(long userId,
                                         OrderByComparator orderByComparator)
                                         throws SystemException
Returns the last announcements delivery in the ordered set where userId = ?.

Parameters:
userId - the user ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching announcements delivery, or null if a matching announcements delivery could not be found
Throws:
SystemException - if a system exception occurred

findByUserId_PrevAndNext

AnnouncementsDelivery[] findByUserId_PrevAndNext(long deliveryId,
                                                 long userId,
                                                 OrderByComparator orderByComparator)
                                                 throws SystemException,
                                                        NoSuchDeliveryException
Returns the announcements deliveries before and after the current announcements delivery in the ordered set where userId = ?.

Parameters:
deliveryId - the primary key of the current announcements delivery
userId - the user ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next announcements delivery
Throws:
NoSuchDeliveryException - if a announcements delivery with the primary key could not be found
SystemException - if a system exception occurred

removeByUserId

void removeByUserId(long userId)
                    throws SystemException
Removes all the announcements deliveries where userId = ? from the database.

Parameters:
userId - the user ID
Throws:
SystemException - if a system exception occurred

countByUserId

int countByUserId(long userId)
                  throws SystemException
Returns the number of announcements deliveries where userId = ?.

Parameters:
userId - the user ID
Returns:
the number of matching announcements deliveries
Throws:
SystemException - if a system exception occurred

findByU_T

AnnouncementsDelivery findByU_T(long userId,
                                String type)
                                throws SystemException,
                                       NoSuchDeliveryException
Returns the announcements delivery where userId = ? and type = ? or throws a NoSuchDeliveryException if it could not be found.

Parameters:
userId - the user ID
type - the type
Returns:
the matching announcements delivery
Throws:
NoSuchDeliveryException - if a matching announcements delivery could not be found
SystemException - if a system exception occurred

fetchByU_T

AnnouncementsDelivery fetchByU_T(long userId,
                                 String type)
                                 throws SystemException
Returns the announcements delivery where userId = ? and type = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
userId - the user ID
type - the type
Returns:
the matching announcements delivery, or null if a matching announcements delivery could not be found
Throws:
SystemException - if a system exception occurred

fetchByU_T

AnnouncementsDelivery fetchByU_T(long userId,
                                 String type,
                                 boolean retrieveFromCache)
                                 throws SystemException
Returns the announcements delivery where userId = ? and type = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
userId - the user ID
type - the type
retrieveFromCache - whether to use the finder cache
Returns:
the matching announcements delivery, or null if a matching announcements delivery could not be found
Throws:
SystemException - if a system exception occurred

removeByU_T

AnnouncementsDelivery removeByU_T(long userId,
                                  String type)
                                  throws SystemException,
                                         NoSuchDeliveryException
Removes the announcements delivery where userId = ? and type = ? from the database.

Parameters:
userId - the user ID
type - the type
Returns:
the announcements delivery that was removed
Throws:
SystemException - if a system exception occurred
NoSuchDeliveryException

countByU_T

int countByU_T(long userId,
               String type)
               throws SystemException
Returns the number of announcements deliveries where userId = ? and type = ?.

Parameters:
userId - the user ID
type - the type
Returns:
the number of matching announcements deliveries
Throws:
SystemException - if a system exception occurred

cacheResult

void cacheResult(AnnouncementsDelivery announcementsDelivery)
Caches the announcements delivery in the entity cache if it is enabled.

Parameters:
announcementsDelivery - the announcements delivery

cacheResult

void cacheResult(List<AnnouncementsDelivery> announcementsDeliveries)
Caches the announcements deliveries in the entity cache if it is enabled.

Parameters:
announcementsDeliveries - the announcements deliveries

create

AnnouncementsDelivery create(long deliveryId)
Creates a new announcements delivery with the primary key. Does not add the announcements delivery to the database.

Parameters:
deliveryId - the primary key for the new announcements delivery
Returns:
the new announcements delivery

remove

AnnouncementsDelivery remove(long deliveryId)
                             throws SystemException,
                                    NoSuchDeliveryException
Removes the announcements delivery with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
deliveryId - the primary key of the announcements delivery
Returns:
the announcements delivery that was removed
Throws:
NoSuchDeliveryException - if a announcements delivery with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

AnnouncementsDelivery updateImpl(AnnouncementsDelivery announcementsDelivery)
                                 throws SystemException
Throws:
SystemException

findByPrimaryKey

AnnouncementsDelivery findByPrimaryKey(long deliveryId)
                                       throws SystemException,
                                              NoSuchDeliveryException
Returns the announcements delivery with the primary key or throws a NoSuchDeliveryException if it could not be found.

Parameters:
deliveryId - the primary key of the announcements delivery
Returns:
the announcements delivery
Throws:
NoSuchDeliveryException - if a announcements delivery with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

AnnouncementsDelivery fetchByPrimaryKey(long deliveryId)
                                        throws SystemException
Returns the announcements delivery with the primary key or returns null if it could not be found.

Parameters:
deliveryId - the primary key of the announcements delivery
Returns:
the announcements delivery, or null if a announcements delivery with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findAll

List<AnnouncementsDelivery> findAll()
                                    throws SystemException
Returns all the announcements deliveries.

Returns:
the announcements deliveries
Throws:
SystemException - if a system exception occurred

findAll

List<AnnouncementsDelivery> findAll(int start,
                                    int end)
                                    throws SystemException
Returns a range of all the announcements deliveries.

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.

Parameters:
start - the lower bound of the range of announcements deliveries
end - the upper bound of the range of announcements deliveries (not inclusive)
Returns:
the range of announcements deliveries
Throws:
SystemException - if a system exception occurred

findAll

List<AnnouncementsDelivery> findAll(int start,
                                    int end,
                                    OrderByComparator orderByComparator)
                                    throws SystemException
Returns an ordered range of all the announcements deliveries.

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.

Parameters:
start - the lower bound of the range of announcements deliveries
end - the upper bound of the range of announcements deliveries (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of announcements deliveries
Throws:
SystemException - if a system exception occurred

removeAll

void removeAll()
               throws SystemException
Removes all the announcements deliveries from the database.

Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Returns the number of announcements deliveries.

Returns:
the number of announcements deliveries
Throws:
SystemException - if a system exception occurred

Liferay 6.2-ce-ga5