|
Liferay 6.1.2-ce-ga3 | |||||||||
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.
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()
Returns the number of shopping item prices. |
int |
countByItemId(long itemId)
Returns the number of shopping item prices where itemId = ?. |
ShoppingItemPrice |
create(long itemPriceId)
Creates a new shopping item price with the primary key. |
ShoppingItemPrice |
fetchByItemId_First(long itemId,
OrderByComparator orderByComparator)
Returns the first shopping item price in the ordered set where itemId = ?. |
ShoppingItemPrice |
fetchByItemId_Last(long itemId,
OrderByComparator orderByComparator)
Returns the last shopping item price in the ordered set where itemId = ?. |
ShoppingItemPrice |
fetchByPrimaryKey(long itemPriceId)
Returns the shopping item price with the primary key or returns null if it could not be found. |
List<ShoppingItemPrice> |
findAll()
Returns all the shopping item prices. |
List<ShoppingItemPrice> |
findAll(int start,
int end)
Returns a range of all the shopping item prices. |
List<ShoppingItemPrice> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the shopping item prices. |
ShoppingItemPrice |
findByItemId_First(long itemId,
OrderByComparator orderByComparator)
Returns the first shopping item price in the ordered set where itemId = ?. |
ShoppingItemPrice |
findByItemId_Last(long itemId,
OrderByComparator orderByComparator)
Returns the last shopping item price in the ordered set where itemId = ?. |
ShoppingItemPrice[] |
findByItemId_PrevAndNext(long itemPriceId,
long itemId,
OrderByComparator orderByComparator)
Returns the shopping item prices before and after the current shopping item price in the ordered set where itemId = ?. |
List<ShoppingItemPrice> |
findByItemId(long itemId)
Returns all the shopping item prices where itemId = ?. |
List<ShoppingItemPrice> |
findByItemId(long itemId,
int start,
int end)
Returns a range of all the shopping item prices where itemId = ?. |
List<ShoppingItemPrice> |
findByItemId(long itemId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the shopping item prices where itemId = ?. |
ShoppingItemPrice |
findByPrimaryKey(long itemPriceId)
Returns 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, clearCache, closeSession, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update |
Method Detail |
---|
void cacheResult(ShoppingItemPrice shoppingItemPrice)
shoppingItemPrice
- the shopping item pricevoid cacheResult(List<ShoppingItemPrice> shoppingItemPrices)
shoppingItemPrices
- the shopping item pricesShoppingItemPrice 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
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
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
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
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 IDstart
- the lower bound of the range of shopping item pricesend
- the upper bound of the range of shopping item prices (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 IDstart
- the lower bound of the range of shopping item pricesend
- the upper bound of the range of shopping item prices (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)
SystemException
- if a system exception occurredShoppingItemPrice findByItemId_First(long itemId, OrderByComparator orderByComparator) throws SystemException, NoSuchItemPriceException
itemId
- the item IDorderByComparator
- the comparator to order the set by (optionally null
)
NoSuchItemPriceException
- if a matching shopping item price could not be found
SystemException
- if a system exception occurredShoppingItemPrice fetchByItemId_First(long itemId, OrderByComparator orderByComparator) throws SystemException
itemId
- the item IDorderByComparator
- the comparator to order the set by (optionally null
)
null
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
itemId
- the item IDorderByComparator
- the comparator to order the set by (optionally null
)
NoSuchItemPriceException
- if a matching shopping item price could not be found
SystemException
- if a system exception occurredShoppingItemPrice fetchByItemId_Last(long itemId, OrderByComparator orderByComparator) throws SystemException
itemId
- the item IDorderByComparator
- the comparator to order the set by (optionally null
)
null
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
itemPriceId
- the primary key of the current shopping item priceitemId
- the item IDorderByComparator
- the comparator to order the set by (optionally null
)
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 pricesend
- the upper bound of the range of shopping item prices (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 pricesend
- the upper bound of the range of shopping item prices (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)
SystemException
- if a system exception occurredvoid removeByItemId(long itemId) throws SystemException
itemId
- the item ID
SystemException
- if a system exception occurredvoid removeAll() throws SystemException
SystemException
- if a system exception occurredint countByItemId(long itemId) throws SystemException
itemId
- the item ID
SystemException
- if a system exception occurredint countAll() throws SystemException
SystemException
- if a system exception occurred
|
Liferay 6.1.2-ce-ga3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |