Liferay 6.0.5

com.liferay.portlet.shopping.service.persistence
Interface ShoppingItemPricePersistence

All Superinterfaces:
BasePersistence<ShoppingItemPrice>
All Known Implementing Classes:
ShoppingItemPricePersistenceImpl

public interface ShoppingItemPricePersistence
extends BasePersistence<ShoppingItemPrice>

The persistence interface for the shopping item price service.

Never modify or reference this interface directly. Always use ShoppingItemPriceUtil to access the shopping item price persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface.

Caching information and settings can be found in portal.properties

See Also:
ShoppingItemPricePersistenceImpl, ShoppingItemPriceUtil
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Method Summary
 void cacheResult(List<ShoppingItemPrice> shoppingItemPrices)
          Caches the shopping item prices in the entity cache if it is enabled.
 void cacheResult(ShoppingItemPrice shoppingItemPrice)
          Caches the shopping item price in the entity cache if it is enabled.
 int countAll()
          Counts all the shopping item prices.
 int countByItemId(long itemId)
          Counts all the shopping item prices where itemId = ?.
 ShoppingItemPrice create(long itemPriceId)
          Creates a new shopping item price with the primary key.
 ShoppingItemPrice fetchByPrimaryKey(long itemPriceId)
          Finds the shopping item price with the primary key or returns null if it could not be found.
 List<ShoppingItemPrice> findAll()
          Finds all the shopping item prices.
 List<ShoppingItemPrice> findAll(int start, int end)
          Finds a range of all the shopping item prices.
 List<ShoppingItemPrice> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the shopping item prices.
 ShoppingItemPrice findByItemId_First(long itemId, OrderByComparator orderByComparator)
          Finds the first shopping item price in the ordered set where itemId = ?.
 ShoppingItemPrice findByItemId_Last(long itemId, OrderByComparator orderByComparator)
          Finds the last shopping item price in the ordered set where itemId = ?.
 ShoppingItemPrice[] findByItemId_PrevAndNext(long itemPriceId, long itemId, OrderByComparator orderByComparator)
          Finds the shopping item prices before and after the current shopping item price in the ordered set where itemId = ?.
 List<ShoppingItemPrice> findByItemId(long itemId)
          Finds all the shopping item prices where itemId = ?.
 List<ShoppingItemPrice> findByItemId(long itemId, int start, int end)
          Finds a range of all the shopping item prices where itemId = ?.
 List<ShoppingItemPrice> findByItemId(long itemId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the shopping item prices where itemId = ?.
 ShoppingItemPrice findByPrimaryKey(long itemPriceId)
          Finds the shopping item price with the primary key or throws a NoSuchItemPriceException if it could not be found.
 ShoppingItemPrice remove(long itemPriceId)
          Removes the shopping item price with the primary key from the database.
 void removeAll()
          Removes all the shopping item prices from the database.
 void removeByItemId(long itemId)
          Removes all the shopping item prices where itemId = ? from the database.
 ShoppingItemPrice updateImpl(ShoppingItemPrice shoppingItemPrice, 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

cacheResult

void cacheResult(ShoppingItemPrice shoppingItemPrice)
Caches the shopping item price in the entity cache if it is enabled.

Parameters:
shoppingItemPrice - the shopping item price to cache

cacheResult

void cacheResult(List<ShoppingItemPrice> shoppingItemPrices)
Caches the shopping item prices in the entity cache if it is enabled.

Parameters:
shoppingItemPrices - the shopping item prices to cache

create

ShoppingItemPrice create(long itemPriceId)
Creates a new shopping item price with the primary key. Does not add the shopping item price to the database.

Parameters:
itemPriceId - the primary key for the new shopping item price
Returns:
the new shopping item price

remove

ShoppingItemPrice remove(long itemPriceId)
                         throws SystemException,
                                NoSuchItemPriceException
Removes the shopping item price with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
itemPriceId - the primary key of the shopping item price to remove
Returns:
the shopping item price that was removed
Throws:
NoSuchItemPriceException - if a shopping item price with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

ShoppingItemPrice updateImpl(ShoppingItemPrice shoppingItemPrice,
                             boolean merge)
                             throws SystemException
Throws:
SystemException

findByPrimaryKey

ShoppingItemPrice findByPrimaryKey(long itemPriceId)
                                   throws SystemException,
                                          NoSuchItemPriceException
Finds the shopping item price with the primary key or throws a NoSuchItemPriceException if it could not be found.

Parameters:
itemPriceId - the primary key of the shopping item price to find
Returns:
the shopping item price
Throws:
NoSuchItemPriceException - if a shopping item price with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

ShoppingItemPrice fetchByPrimaryKey(long itemPriceId)
                                    throws SystemException
Finds the shopping item price with the primary key or returns null if it could not be found.

Parameters:
itemPriceId - the primary key of the shopping item price to find
Returns:
the shopping item price, or null if a shopping item price with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByItemId

List<ShoppingItemPrice> findByItemId(long itemId)
                                     throws SystemException
Finds all the shopping item prices where itemId = ?.

Parameters:
itemId - the item id to search with
Returns:
the matching shopping item prices
Throws:
SystemException - if a system exception occurred

findByItemId

List<ShoppingItemPrice> findByItemId(long itemId,
                                     int start,
                                     int end)
                                     throws SystemException
Finds a range of all the shopping item prices where itemId = ?.

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.

Parameters:
itemId - the item id to search with
start - the lower bound of the range of shopping item prices to return
end - the upper bound of the range of shopping item prices to return (not inclusive)
Returns:
the range of matching shopping item prices
Throws:
SystemException - if a system exception occurred

findByItemId

List<ShoppingItemPrice> findByItemId(long itemId,
                                     int start,
                                     int end,
                                     OrderByComparator orderByComparator)
                                     throws SystemException
Finds an ordered range of all the shopping item prices where itemId = ?.

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.

Parameters:
itemId - the item id to search with
start - the lower bound of the range of shopping item prices to return
end - the upper bound of the range of shopping item prices to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching shopping item prices
Throws:
SystemException - if a system exception occurred

findByItemId_First

ShoppingItemPrice findByItemId_First(long itemId,
                                     OrderByComparator orderByComparator)
                                     throws SystemException,
                                            NoSuchItemPriceException
Finds the first shopping item price in the ordered set where itemId = ?.

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.

Parameters:
itemId - the item id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching shopping item price
Throws:
NoSuchItemPriceException - if a matching shopping item price could not be found
SystemException - if a system exception occurred

findByItemId_Last

ShoppingItemPrice findByItemId_Last(long itemId,
                                    OrderByComparator orderByComparator)
                                    throws SystemException,
                                           NoSuchItemPriceException
Finds the last shopping item price in the ordered set where itemId = ?.

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.

Parameters:
itemId - the item id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching shopping item price
Throws:
NoSuchItemPriceException - if a matching shopping item price could not be found
SystemException - if a system exception occurred

findByItemId_PrevAndNext

ShoppingItemPrice[] findByItemId_PrevAndNext(long itemPriceId,
                                             long itemId,
                                             OrderByComparator orderByComparator)
                                             throws SystemException,
                                                    NoSuchItemPriceException
Finds the shopping item prices before and after the current shopping item price in the ordered set where itemId = ?.

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.

Parameters:
itemPriceId - the primary key of the current shopping item price
itemId - the item id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next shopping item price
Throws:
NoSuchItemPriceException - if a shopping item price with the primary key could not be found
SystemException - if a system exception occurred

findAll

List<ShoppingItemPrice> findAll()
                                throws SystemException
Finds all the shopping item prices.

Returns:
the shopping item prices
Throws:
SystemException - if a system exception occurred

findAll

List<ShoppingItemPrice> findAll(int start,
                                int end)
                                throws SystemException
Finds a range of all the shopping item prices.

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.

Parameters:
start - the lower bound of the range of shopping item prices to return
end - the upper bound of the range of shopping item prices to return (not inclusive)
Returns:
the range of shopping item prices
Throws:
SystemException - if a system exception occurred

findAll

List<ShoppingItemPrice> findAll(int start,
                                int end,
                                OrderByComparator orderByComparator)
                                throws SystemException
Finds an ordered range of all the shopping item prices.

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.

Parameters:
start - the lower bound of the range of shopping item prices to return
end - the upper bound of the range of shopping item prices to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of shopping item prices
Throws:
SystemException - if a system exception occurred

removeByItemId

void removeByItemId(long itemId)
                    throws SystemException
Removes all the shopping item prices where itemId = ? from the database.

Parameters:
itemId - the item id to search with
Throws:
SystemException - if a system exception occurred

removeAll

void removeAll()
               throws SystemException
Removes all the shopping item prices from the database.

Throws:
SystemException - if a system exception occurred

countByItemId

int countByItemId(long itemId)
                  throws SystemException
Counts all the shopping item prices where itemId = ?.

Parameters:
itemId - the item id to search with
Returns:
the number of matching shopping item prices
Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Counts all the shopping item prices.

Returns:
the number of shopping item prices
Throws:
SystemException - if a system exception occurred

Liferay 6.0.5