com.liferay.portlet.shopping.service
Interface ShoppingOrderItemLocalService

All Known Implementing Classes:
ShoppingOrderItemLocalServiceWrapper

@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface ShoppingOrderItemLocalService

View Source

ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

This interface defines the service. The default implementation is com.liferay.portlet.shopping.service.impl.ShoppingOrderItemLocalServiceImpl}. Modify methods in that class and rerun ServiceBuilder to populate this class and all other generated classes.

This is a local service. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.

Author:
Brian Wing Shun Chan
See Also:
ShoppingOrderItemLocalServiceUtil
Generated:

Method Summary
 ShoppingOrderItem addShoppingOrderItem(ShoppingOrderItem shoppingOrderItem)
           
 ShoppingOrderItem createShoppingOrderItem(long orderItemId)
           
 void deleteShoppingOrderItem(long orderItemId)
           
 void deleteShoppingOrderItem(ShoppingOrderItem shoppingOrderItem)
           
 java.util.List dynamicQuery(DynamicQuery dynamicQuery)
           
 java.util.List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
 java.util.List dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
 long dynamicQueryCount(DynamicQuery dynamicQuery)
           
 java.util.List<ShoppingOrderItem> getOrderItems(long orderId)
           
 ShoppingOrderItem getShoppingOrderItem(long orderItemId)
           
 java.util.List<ShoppingOrderItem> getShoppingOrderItems(int start, int end)
           
 int getShoppingOrderItemsCount()
           
 ShoppingOrderItem updateShoppingOrderItem(ShoppingOrderItem shoppingOrderItem)
           
 ShoppingOrderItem updateShoppingOrderItem(ShoppingOrderItem shoppingOrderItem, boolean merge)
           
 

Method Detail

addShoppingOrderItem

ShoppingOrderItem addShoppingOrderItem(ShoppingOrderItem shoppingOrderItem)
                                       throws SystemException
Throws:
SystemException

createShoppingOrderItem

ShoppingOrderItem createShoppingOrderItem(long orderItemId)

deleteShoppingOrderItem

void deleteShoppingOrderItem(long orderItemId)
                             throws PortalException,
                                    SystemException
Throws:
PortalException
SystemException

deleteShoppingOrderItem

void deleteShoppingOrderItem(ShoppingOrderItem shoppingOrderItem)
                             throws SystemException
Throws:
SystemException

dynamicQuery

java.util.List dynamicQuery(DynamicQuery dynamicQuery)
                            throws SystemException
Throws:
SystemException

dynamicQuery

java.util.List dynamicQuery(DynamicQuery dynamicQuery,
                            int start,
                            int end)
                            throws SystemException
Throws:
SystemException

dynamicQuery

java.util.List dynamicQuery(DynamicQuery dynamicQuery,
                            int start,
                            int end,
                            OrderByComparator orderByComparator)
                            throws SystemException
Throws:
SystemException

dynamicQueryCount

long dynamicQueryCount(DynamicQuery dynamicQuery)
                       throws SystemException
Throws:
SystemException

getShoppingOrderItem

@Transactional(propagation=SUPPORTS,
               readOnly=true)
ShoppingOrderItem getShoppingOrderItem(long orderItemId)
                                       throws PortalException,
                                              SystemException
Throws:
PortalException
SystemException

getShoppingOrderItems

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<ShoppingOrderItem> getShoppingOrderItems(int start,
                                                                                                 int end)
                                                        throws SystemException
Throws:
SystemException

getShoppingOrderItemsCount

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int getShoppingOrderItemsCount()
                               throws SystemException
Throws:
SystemException

updateShoppingOrderItem

ShoppingOrderItem updateShoppingOrderItem(ShoppingOrderItem shoppingOrderItem)
                                          throws SystemException
Throws:
SystemException

updateShoppingOrderItem

ShoppingOrderItem updateShoppingOrderItem(ShoppingOrderItem shoppingOrderItem,
                                          boolean merge)
                                          throws SystemException
Throws:
SystemException

getOrderItems

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<ShoppingOrderItem> getOrderItems(long orderId)
                                                throws SystemException
Throws:
SystemException