|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ShoppingItemPricePersistence
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
ShoppingItemPricePersistenceImpl
,
ShoppingItemPriceUtil
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 |
---|
void cacheResult(ShoppingItemPrice shoppingItemPrice)
shoppingItemPrice
- the shopping item price to cachevoid cacheResult(List<ShoppingItemPrice> shoppingItemPrices)
shoppingItemPrices
- the shopping item prices to cacheShoppingItemPrice create(long itemPriceId)
itemPriceId
- the primary key for the new shopping item price
ShoppingItemPrice remove(long itemPriceId) throws SystemException, NoSuchItemPriceException
itemPriceId
- the primary key of the shopping item price to remove
NoSuchItemPriceException
- if a shopping item price with the primary key could not be found
SystemException
- if a system exception occurredShoppingItemPrice updateImpl(ShoppingItemPrice shoppingItemPrice, boolean merge) throws SystemException
SystemException
ShoppingItemPrice findByPrimaryKey(long itemPriceId) throws SystemException, NoSuchItemPriceException
NoSuchItemPriceException
if it could not be found.
itemPriceId
- the primary key of the shopping item price to find
NoSuchItemPriceException
- if a shopping item price with the primary key could not be found
SystemException
- if a system exception occurredShoppingItemPrice fetchByPrimaryKey(long itemPriceId) throws SystemException
null
if it could not be found.
itemPriceId
- the primary key of the shopping item price to find
null
if a shopping item price with the primary key could not be found
SystemException
- if a system exception occurredList<ShoppingItemPrice> findByItemId(long itemId) throws SystemException
itemId
- the item id to search with
SystemException
- if a system exception occurredList<ShoppingItemPrice> findByItemId(long itemId, 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.
itemId
- the item id to search withstart
- the lower bound of the range of shopping item prices to returnend
- the upper bound of the range of shopping item prices to return (not inclusive)
SystemException
- if a system exception occurredList<ShoppingItemPrice> findByItemId(long itemId, 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.
itemId
- the item id to search withstart
- the lower bound of the range of shopping item prices to returnend
- the upper bound of the range of shopping item prices to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredShoppingItemPrice findByItemId_First(long itemId, OrderByComparator orderByComparator) throws SystemException, NoSuchItemPriceException
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.
itemId
- the item id to search withorderByComparator
- the comparator to order the set by
NoSuchItemPriceException
- if a matching shopping item price could not be found
SystemException
- if a system exception occurredShoppingItemPrice findByItemId_Last(long itemId, OrderByComparator orderByComparator) throws SystemException, NoSuchItemPriceException
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.
itemId
- the item id to search withorderByComparator
- the comparator to order the set by
NoSuchItemPriceException
- if a matching shopping item price could not be found
SystemException
- if a system exception occurredShoppingItemPrice[] findByItemId_PrevAndNext(long itemPriceId, long itemId, OrderByComparator orderByComparator) throws SystemException, NoSuchItemPriceException
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.
itemPriceId
- the primary key of the current shopping item priceitemId
- the item id to search withorderByComparator
- the comparator to order the set by
NoSuchItemPriceException
- if a shopping item price with the primary key could not be found
SystemException
- if a system exception occurredList<ShoppingItemPrice> findAll() throws SystemException
SystemException
- if a system exception occurredList<ShoppingItemPrice> 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 shopping item prices to returnend
- the upper bound of the range of shopping item prices to return (not inclusive)
SystemException
- if a system exception occurredList<ShoppingItemPrice> 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 shopping item prices to returnend
- the upper bound of the range of shopping item prices to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredvoid removeByItemId(long itemId) throws SystemException
itemId
- the item id to search with
SystemException
- if a system exception occurredvoid removeAll() throws SystemException
SystemException
- if a system exception occurredint countByItemId(long itemId) throws SystemException
itemId
- the item id 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 |