|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ShoppingOrderItemPersistence
The persistence interface for the shopping order item service.
Never modify or reference this interface directly. Always use ShoppingOrderItemUtil
to access the shopping order item persistence. Modify service.xml
and rerun ServiceBuilder to regenerate this interface.
Caching information and settings can be found in portal.properties
ShoppingOrderItemPersistenceImpl
,
ShoppingOrderItemUtil
Method Summary | |
---|---|
void |
cacheResult(List<ShoppingOrderItem> shoppingOrderItems)
Caches the shopping order items in the entity cache if it is enabled. |
void |
cacheResult(ShoppingOrderItem shoppingOrderItem)
Caches the shopping order item in the entity cache if it is enabled. |
int |
countAll()
Counts all the shopping order items. |
int |
countByOrderId(long orderId)
Counts all the shopping order items where orderId = ?. |
ShoppingOrderItem |
create(long orderItemId)
Creates a new shopping order item with the primary key. |
ShoppingOrderItem |
fetchByPrimaryKey(long orderItemId)
Finds the shopping order item with the primary key or returns null if it could not be found. |
List<ShoppingOrderItem> |
findAll()
Finds all the shopping order items. |
List<ShoppingOrderItem> |
findAll(int start,
int end)
Finds a range of all the shopping order items. |
List<ShoppingOrderItem> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the shopping order items. |
ShoppingOrderItem |
findByOrderId_First(long orderId,
OrderByComparator orderByComparator)
Finds the first shopping order item in the ordered set where orderId = ?. |
ShoppingOrderItem |
findByOrderId_Last(long orderId,
OrderByComparator orderByComparator)
Finds the last shopping order item in the ordered set where orderId = ?. |
ShoppingOrderItem[] |
findByOrderId_PrevAndNext(long orderItemId,
long orderId,
OrderByComparator orderByComparator)
Finds the shopping order items before and after the current shopping order item in the ordered set where orderId = ?. |
List<ShoppingOrderItem> |
findByOrderId(long orderId)
Finds all the shopping order items where orderId = ?. |
List<ShoppingOrderItem> |
findByOrderId(long orderId,
int start,
int end)
Finds a range of all the shopping order items where orderId = ?. |
List<ShoppingOrderItem> |
findByOrderId(long orderId,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the shopping order items where orderId = ?. |
ShoppingOrderItem |
findByPrimaryKey(long orderItemId)
Finds the shopping order item with the primary key or throws a NoSuchOrderItemException if it could not be found. |
ShoppingOrderItem |
remove(long orderItemId)
Removes the shopping order item with the primary key from the database. |
void |
removeAll()
Removes all the shopping order items from the database. |
void |
removeByOrderId(long orderId)
Removes all the shopping order items where orderId = ? from the database. |
ShoppingOrderItem |
updateImpl(ShoppingOrderItem shoppingOrderItem,
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(ShoppingOrderItem shoppingOrderItem)
shoppingOrderItem
- the shopping order item to cachevoid cacheResult(List<ShoppingOrderItem> shoppingOrderItems)
shoppingOrderItems
- the shopping order items to cacheShoppingOrderItem create(long orderItemId)
orderItemId
- the primary key for the new shopping order item
ShoppingOrderItem remove(long orderItemId) throws SystemException, NoSuchOrderItemException
orderItemId
- the primary key of the shopping order item to remove
NoSuchOrderItemException
- if a shopping order item with the primary key could not be found
SystemException
- if a system exception occurredShoppingOrderItem updateImpl(ShoppingOrderItem shoppingOrderItem, boolean merge) throws SystemException
SystemException
ShoppingOrderItem findByPrimaryKey(long orderItemId) throws SystemException, NoSuchOrderItemException
NoSuchOrderItemException
if it could not be found.
orderItemId
- the primary key of the shopping order item to find
NoSuchOrderItemException
- if a shopping order item with the primary key could not be found
SystemException
- if a system exception occurredShoppingOrderItem fetchByPrimaryKey(long orderItemId) throws SystemException
null
if it could not be found.
orderItemId
- the primary key of the shopping order item to find
null
if a shopping order item with the primary key could not be found
SystemException
- if a system exception occurredList<ShoppingOrderItem> findByOrderId(long orderId) throws SystemException
orderId
- the order id to search with
SystemException
- if a system exception occurredList<ShoppingOrderItem> findByOrderId(long orderId, 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.
orderId
- the order id to search withstart
- the lower bound of the range of shopping order items to returnend
- the upper bound of the range of shopping order items to return (not inclusive)
SystemException
- if a system exception occurredList<ShoppingOrderItem> findByOrderId(long orderId, 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.
orderId
- the order id to search withstart
- the lower bound of the range of shopping order items to returnend
- the upper bound of the range of shopping order items to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredShoppingOrderItem findByOrderId_First(long orderId, OrderByComparator orderByComparator) throws SystemException, NoSuchOrderItemException
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.
orderId
- the order id to search withorderByComparator
- the comparator to order the set by
NoSuchOrderItemException
- if a matching shopping order item could not be found
SystemException
- if a system exception occurredShoppingOrderItem findByOrderId_Last(long orderId, OrderByComparator orderByComparator) throws SystemException, NoSuchOrderItemException
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.
orderId
- the order id to search withorderByComparator
- the comparator to order the set by
NoSuchOrderItemException
- if a matching shopping order item could not be found
SystemException
- if a system exception occurredShoppingOrderItem[] findByOrderId_PrevAndNext(long orderItemId, long orderId, OrderByComparator orderByComparator) throws SystemException, NoSuchOrderItemException
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.
orderItemId
- the primary key of the current shopping order itemorderId
- the order id to search withorderByComparator
- the comparator to order the set by
NoSuchOrderItemException
- if a shopping order item with the primary key could not be found
SystemException
- if a system exception occurredList<ShoppingOrderItem> findAll() throws SystemException
SystemException
- if a system exception occurredList<ShoppingOrderItem> 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 order items to returnend
- the upper bound of the range of shopping order items to return (not inclusive)
SystemException
- if a system exception occurredList<ShoppingOrderItem> 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 order items to returnend
- the upper bound of the range of shopping order items to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredvoid removeByOrderId(long orderId) throws SystemException
orderId
- the order id to search with
SystemException
- if a system exception occurredvoid removeAll() throws SystemException
SystemException
- if a system exception occurredint countByOrderId(long orderId) throws SystemException
orderId
- the order 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 |