Liferay 6.0.5

com.liferay.portlet.shopping.service
Class ShoppingOrderItemLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portlet.shopping.service.ShoppingOrderItemLocalServiceWrapper
All Implemented Interfaces:
ShoppingOrderItemLocalService

public class ShoppingOrderItemLocalServiceWrapper
extends Object
implements ShoppingOrderItemLocalService

This class is a wrapper for ShoppingOrderItemLocalService.

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

Constructor Summary
ShoppingOrderItemLocalServiceWrapper(ShoppingOrderItemLocalService shoppingOrderItemLocalService)
           
 
Method Summary
 ShoppingOrderItem addShoppingOrderItem(ShoppingOrderItem shoppingOrderItem)
          Adds the shopping order item to the database.
 ShoppingOrderItem createShoppingOrderItem(long orderItemId)
          Creates a new shopping order item with the primary key.
 void deleteShoppingOrderItem(long orderItemId)
          Deletes the shopping order item with the primary key from the database.
 void deleteShoppingOrderItem(ShoppingOrderItem shoppingOrderItem)
          Deletes the shopping order item from the database.
 List dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
          Performs a dynamic query on the database and returns a range of the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
          Performs a dynamic query on the database and returns an ordered range of the matching rows.
 long dynamicQueryCount(DynamicQuery dynamicQuery)
          Counts the number of rows that match the dynamic query.
 List<ShoppingOrderItem> getOrderItems(long orderId)
           
 ShoppingOrderItem getShoppingOrderItem(long orderItemId)
          Gets the shopping order item with the primary key.
 List<ShoppingOrderItem> getShoppingOrderItems(int start, int end)
          Gets a range of all the shopping order items.
 int getShoppingOrderItemsCount()
          Gets the number of shopping order items.
 ShoppingOrderItemLocalService getWrappedShoppingOrderItemLocalService()
           
 ShoppingOrderItem updateShoppingOrderItem(ShoppingOrderItem shoppingOrderItem)
          Updates the shopping order item in the database.
 ShoppingOrderItem updateShoppingOrderItem(ShoppingOrderItem shoppingOrderItem, boolean merge)
          Updates the shopping order item in the database.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ShoppingOrderItemLocalServiceWrapper

public ShoppingOrderItemLocalServiceWrapper(ShoppingOrderItemLocalService shoppingOrderItemLocalService)
Method Detail

addShoppingOrderItem

public ShoppingOrderItem addShoppingOrderItem(ShoppingOrderItem shoppingOrderItem)
                                       throws SystemException
Adds the shopping order item to the database. Also notifies the appropriate model listeners.

Specified by:
addShoppingOrderItem in interface ShoppingOrderItemLocalService
Parameters:
shoppingOrderItem - the shopping order item to add
Returns:
the shopping order item that was added
Throws:
SystemException - if a system exception occurred

createShoppingOrderItem

public ShoppingOrderItem createShoppingOrderItem(long orderItemId)
Creates a new shopping order item with the primary key. Does not add the shopping order item to the database.

Specified by:
createShoppingOrderItem in interface ShoppingOrderItemLocalService
Parameters:
orderItemId - the primary key for the new shopping order item
Returns:
the new shopping order item

deleteShoppingOrderItem

public void deleteShoppingOrderItem(long orderItemId)
                             throws PortalException,
                                    SystemException
Deletes the shopping order item with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
deleteShoppingOrderItem in interface ShoppingOrderItemLocalService
Parameters:
orderItemId - the primary key of the shopping order item to delete
Throws:
PortalException - if a shopping order item with the primary key could not be found
SystemException - if a system exception occurred

deleteShoppingOrderItem

public void deleteShoppingOrderItem(ShoppingOrderItem shoppingOrderItem)
                             throws SystemException
Deletes the shopping order item from the database. Also notifies the appropriate model listeners.

Specified by:
deleteShoppingOrderItem in interface ShoppingOrderItemLocalService
Parameters:
shoppingOrderItem - the shopping order item to delete
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery)
                  throws SystemException
Performs a dynamic query on the database and returns the matching rows.

Specified by:
dynamicQuery in interface ShoppingOrderItemLocalService
Parameters:
dynamicQuery - the dynamic query to search with
Returns:
the matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery,
                         int start,
                         int end)
                  throws SystemException
Performs a dynamic query on the database and returns a range of the matching rows.

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.

Specified by:
dynamicQuery in interface ShoppingOrderItemLocalService
Parameters:
dynamicQuery - the dynamic query to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (not inclusive)
Returns:
the range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery,
                         int start,
                         int end,
                         OrderByComparator orderByComparator)
                  throws SystemException
Performs a dynamic query on the database and returns an ordered range of the matching rows.

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.

Specified by:
dynamicQuery in interface ShoppingOrderItemLocalService
Parameters:
dynamicQuery - the dynamic query to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

public long dynamicQueryCount(DynamicQuery dynamicQuery)
                       throws SystemException
Counts the number of rows that match the dynamic query.

Specified by:
dynamicQueryCount in interface ShoppingOrderItemLocalService
Parameters:
dynamicQuery - the dynamic query to search with
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

getShoppingOrderItem

public ShoppingOrderItem getShoppingOrderItem(long orderItemId)
                                       throws PortalException,
                                              SystemException
Gets the shopping order item with the primary key.

Specified by:
getShoppingOrderItem in interface ShoppingOrderItemLocalService
Parameters:
orderItemId - the primary key of the shopping order item to get
Returns:
the shopping order item
Throws:
PortalException - if a shopping order item with the primary key could not be found
SystemException - if a system exception occurred

getShoppingOrderItems

public List<ShoppingOrderItem> getShoppingOrderItems(int start,
                                                     int end)
                                              throws SystemException
Gets a range of all the shopping order items.

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.

Specified by:
getShoppingOrderItems in interface ShoppingOrderItemLocalService
Parameters:
start - the lower bound of the range of shopping order items to return
end - the upper bound of the range of shopping order items to return (not inclusive)
Returns:
the range of shopping order items
Throws:
SystemException - if a system exception occurred

getShoppingOrderItemsCount

public int getShoppingOrderItemsCount()
                               throws SystemException
Gets the number of shopping order items.

Specified by:
getShoppingOrderItemsCount in interface ShoppingOrderItemLocalService
Returns:
the number of shopping order items
Throws:
SystemException - if a system exception occurred

updateShoppingOrderItem

public ShoppingOrderItem updateShoppingOrderItem(ShoppingOrderItem shoppingOrderItem)
                                          throws SystemException
Updates the shopping order item in the database. Also notifies the appropriate model listeners.

Specified by:
updateShoppingOrderItem in interface ShoppingOrderItemLocalService
Parameters:
shoppingOrderItem - the shopping order item to update
Returns:
the shopping order item that was updated
Throws:
SystemException - if a system exception occurred

updateShoppingOrderItem

public ShoppingOrderItem updateShoppingOrderItem(ShoppingOrderItem shoppingOrderItem,
                                                 boolean merge)
                                          throws SystemException
Updates the shopping order item in the database. Also notifies the appropriate model listeners.

Specified by:
updateShoppingOrderItem in interface ShoppingOrderItemLocalService
Parameters:
shoppingOrderItem - the shopping order item to update
merge - whether to merge the shopping order item with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean) for an explanation.
Returns:
the shopping order item that was updated
Throws:
SystemException - if a system exception occurred

getOrderItems

public List<ShoppingOrderItem> getOrderItems(long orderId)
                                      throws SystemException
Specified by:
getOrderItems in interface ShoppingOrderItemLocalService
Throws:
SystemException

getWrappedShoppingOrderItemLocalService

public ShoppingOrderItemLocalService getWrappedShoppingOrderItemLocalService()

Liferay 6.0.5