Liferay 6.0.5

com.liferay.portlet.shopping.service.persistence
Interface ShoppingCartPersistence

All Superinterfaces:
BasePersistence<ShoppingCart>
All Known Implementing Classes:
ShoppingCartPersistenceImpl

public interface ShoppingCartPersistence
extends BasePersistence<ShoppingCart>

The persistence interface for the shopping cart service.

Never modify or reference this interface directly. Always use ShoppingCartUtil to access the shopping cart persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface.

Caching information and settings can be found in portal.properties

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

Method Summary
 void cacheResult(List<ShoppingCart> shoppingCarts)
          Caches the shopping carts in the entity cache if it is enabled.
 void cacheResult(ShoppingCart shoppingCart)
          Caches the shopping cart in the entity cache if it is enabled.
 int countAll()
          Counts all the shopping carts.
 int countByG_U(long groupId, long userId)
          Counts all the shopping carts where groupId = ? and userId = ?.
 int countByGroupId(long groupId)
          Counts all the shopping carts where groupId = ?.
 int countByUserId(long userId)
          Counts all the shopping carts where userId = ?.
 ShoppingCart create(long cartId)
          Creates a new shopping cart with the primary key.
 ShoppingCart fetchByG_U(long groupId, long userId)
          Finds the shopping cart where groupId = ? and userId = ? or returns null if it could not be found.
 ShoppingCart fetchByG_U(long groupId, long userId, boolean retrieveFromCache)
          Finds the shopping cart where groupId = ? and userId = ? or returns null if it could not be found, optionally using the finder cache.
 ShoppingCart fetchByPrimaryKey(long cartId)
          Finds the shopping cart with the primary key or returns null if it could not be found.
 List<ShoppingCart> findAll()
          Finds all the shopping carts.
 List<ShoppingCart> findAll(int start, int end)
          Finds a range of all the shopping carts.
 List<ShoppingCart> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the shopping carts.
 ShoppingCart findByG_U(long groupId, long userId)
          Finds the shopping cart where groupId = ? and userId = ? or throws a NoSuchCartException if it could not be found.
 ShoppingCart findByGroupId_First(long groupId, OrderByComparator orderByComparator)
          Finds the first shopping cart in the ordered set where groupId = ?.
 ShoppingCart findByGroupId_Last(long groupId, OrderByComparator orderByComparator)
          Finds the last shopping cart in the ordered set where groupId = ?.
 ShoppingCart[] findByGroupId_PrevAndNext(long cartId, long groupId, OrderByComparator orderByComparator)
          Finds the shopping carts before and after the current shopping cart in the ordered set where groupId = ?.
 List<ShoppingCart> findByGroupId(long groupId)
          Finds all the shopping carts where groupId = ?.
 List<ShoppingCart> findByGroupId(long groupId, int start, int end)
          Finds a range of all the shopping carts where groupId = ?.
 List<ShoppingCart> findByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the shopping carts where groupId = ?.
 ShoppingCart findByPrimaryKey(long cartId)
          Finds the shopping cart with the primary key or throws a NoSuchCartException if it could not be found.
 ShoppingCart findByUserId_First(long userId, OrderByComparator orderByComparator)
          Finds the first shopping cart in the ordered set where userId = ?.
 ShoppingCart findByUserId_Last(long userId, OrderByComparator orderByComparator)
          Finds the last shopping cart in the ordered set where userId = ?.
 ShoppingCart[] findByUserId_PrevAndNext(long cartId, long userId, OrderByComparator orderByComparator)
          Finds the shopping carts before and after the current shopping cart in the ordered set where userId = ?.
 List<ShoppingCart> findByUserId(long userId)
          Finds all the shopping carts where userId = ?.
 List<ShoppingCart> findByUserId(long userId, int start, int end)
          Finds a range of all the shopping carts where userId = ?.
 List<ShoppingCart> findByUserId(long userId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the shopping carts where userId = ?.
 ShoppingCart remove(long cartId)
          Removes the shopping cart with the primary key from the database.
 void removeAll()
          Removes all the shopping carts from the database.
 void removeByG_U(long groupId, long userId)
          Removes the shopping cart where groupId = ? and userId = ? from the database.
 void removeByGroupId(long groupId)
          Removes all the shopping carts where groupId = ? from the database.
 void removeByUserId(long userId)
          Removes all the shopping carts where userId = ? from the database.
 ShoppingCart updateImpl(ShoppingCart shoppingCart, 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

cacheResult

void cacheResult(ShoppingCart shoppingCart)
Caches the shopping cart in the entity cache if it is enabled.

Parameters:
shoppingCart - the shopping cart to cache

cacheResult

void cacheResult(List<ShoppingCart> shoppingCarts)
Caches the shopping carts in the entity cache if it is enabled.

Parameters:
shoppingCarts - the shopping carts to cache

create

ShoppingCart create(long cartId)
Creates a new shopping cart with the primary key. Does not add the shopping cart to the database.

Parameters:
cartId - the primary key for the new shopping cart
Returns:
the new shopping cart

remove

ShoppingCart remove(long cartId)
                    throws SystemException,
                           NoSuchCartException
Removes the shopping cart with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
cartId - the primary key of the shopping cart to remove
Returns:
the shopping cart that was removed
Throws:
NoSuchCartException - if a shopping cart with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

ShoppingCart updateImpl(ShoppingCart shoppingCart,
                        boolean merge)
                        throws SystemException
Throws:
SystemException

findByPrimaryKey

ShoppingCart findByPrimaryKey(long cartId)
                              throws SystemException,
                                     NoSuchCartException
Finds the shopping cart with the primary key or throws a NoSuchCartException if it could not be found.

Parameters:
cartId - the primary key of the shopping cart to find
Returns:
the shopping cart
Throws:
NoSuchCartException - if a shopping cart with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

ShoppingCart fetchByPrimaryKey(long cartId)
                               throws SystemException
Finds the shopping cart with the primary key or returns null if it could not be found.

Parameters:
cartId - the primary key of the shopping cart to find
Returns:
the shopping cart, or null if a shopping cart with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByGroupId

List<ShoppingCart> findByGroupId(long groupId)
                                 throws SystemException
Finds all the shopping carts where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the matching shopping carts
Throws:
SystemException - if a system exception occurred

findByGroupId

List<ShoppingCart> findByGroupId(long groupId,
                                 int start,
                                 int end)
                                 throws SystemException
Finds a range of all the shopping carts where groupId = ?.

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.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of shopping carts to return
end - the upper bound of the range of shopping carts to return (not inclusive)
Returns:
the range of matching shopping carts
Throws:
SystemException - if a system exception occurred

findByGroupId

List<ShoppingCart> findByGroupId(long groupId,
                                 int start,
                                 int end,
                                 OrderByComparator orderByComparator)
                                 throws SystemException
Finds an ordered range of all the shopping carts where groupId = ?.

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.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of shopping carts to return
end - the upper bound of the range of shopping carts to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching shopping carts
Throws:
SystemException - if a system exception occurred

findByGroupId_First

ShoppingCart findByGroupId_First(long groupId,
                                 OrderByComparator orderByComparator)
                                 throws SystemException,
                                        NoSuchCartException
Finds the first shopping cart in the ordered set where groupId = ?.

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.

Parameters:
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching shopping cart
Throws:
NoSuchCartException - if a matching shopping cart could not be found
SystemException - if a system exception occurred

findByGroupId_Last

ShoppingCart findByGroupId_Last(long groupId,
                                OrderByComparator orderByComparator)
                                throws SystemException,
                                       NoSuchCartException
Finds the last shopping cart in the ordered set where groupId = ?.

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.

Parameters:
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching shopping cart
Throws:
NoSuchCartException - if a matching shopping cart could not be found
SystemException - if a system exception occurred

findByGroupId_PrevAndNext

ShoppingCart[] findByGroupId_PrevAndNext(long cartId,
                                         long groupId,
                                         OrderByComparator orderByComparator)
                                         throws SystemException,
                                                NoSuchCartException
Finds the shopping carts before and after the current shopping cart in the ordered set where groupId = ?.

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.

Parameters:
cartId - the primary key of the current shopping cart
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next shopping cart
Throws:
NoSuchCartException - if a shopping cart with the primary key could not be found
SystemException - if a system exception occurred

findByUserId

List<ShoppingCart> findByUserId(long userId)
                                throws SystemException
Finds all the shopping carts where userId = ?.

Parameters:
userId - the user id to search with
Returns:
the matching shopping carts
Throws:
SystemException - if a system exception occurred

findByUserId

List<ShoppingCart> findByUserId(long userId,
                                int start,
                                int end)
                                throws SystemException
Finds a range of all the shopping carts where userId = ?.

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.

Parameters:
userId - the user id to search with
start - the lower bound of the range of shopping carts to return
end - the upper bound of the range of shopping carts to return (not inclusive)
Returns:
the range of matching shopping carts
Throws:
SystemException - if a system exception occurred

findByUserId

List<ShoppingCart> findByUserId(long userId,
                                int start,
                                int end,
                                OrderByComparator orderByComparator)
                                throws SystemException
Finds an ordered range of all the shopping carts where userId = ?.

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.

Parameters:
userId - the user id to search with
start - the lower bound of the range of shopping carts to return
end - the upper bound of the range of shopping carts to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching shopping carts
Throws:
SystemException - if a system exception occurred

findByUserId_First

ShoppingCart findByUserId_First(long userId,
                                OrderByComparator orderByComparator)
                                throws SystemException,
                                       NoSuchCartException
Finds the first shopping cart in the ordered set where userId = ?.

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.

Parameters:
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching shopping cart
Throws:
NoSuchCartException - if a matching shopping cart could not be found
SystemException - if a system exception occurred

findByUserId_Last

ShoppingCart findByUserId_Last(long userId,
                               OrderByComparator orderByComparator)
                               throws SystemException,
                                      NoSuchCartException
Finds the last shopping cart in the ordered set where userId = ?.

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.

Parameters:
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching shopping cart
Throws:
NoSuchCartException - if a matching shopping cart could not be found
SystemException - if a system exception occurred

findByUserId_PrevAndNext

ShoppingCart[] findByUserId_PrevAndNext(long cartId,
                                        long userId,
                                        OrderByComparator orderByComparator)
                                        throws SystemException,
                                               NoSuchCartException
Finds the shopping carts before and after the current shopping cart in the ordered set where userId = ?.

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.

Parameters:
cartId - the primary key of the current shopping cart
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next shopping cart
Throws:
NoSuchCartException - if a shopping cart with the primary key could not be found
SystemException - if a system exception occurred

findByG_U

ShoppingCart findByG_U(long groupId,
                       long userId)
                       throws SystemException,
                              NoSuchCartException
Finds the shopping cart where groupId = ? and userId = ? or throws a NoSuchCartException if it could not be found.

Parameters:
groupId - the group id to search with
userId - the user id to search with
Returns:
the matching shopping cart
Throws:
NoSuchCartException - if a matching shopping cart could not be found
SystemException - if a system exception occurred

fetchByG_U

ShoppingCart fetchByG_U(long groupId,
                        long userId)
                        throws SystemException
Finds the shopping cart where groupId = ? and userId = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
groupId - the group id to search with
userId - the user id to search with
Returns:
the matching shopping cart, or null if a matching shopping cart could not be found
Throws:
SystemException - if a system exception occurred

fetchByG_U

ShoppingCart fetchByG_U(long groupId,
                        long userId,
                        boolean retrieveFromCache)
                        throws SystemException
Finds the shopping cart where groupId = ? and userId = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
groupId - the group id to search with
userId - the user id to search with
Returns:
the matching shopping cart, or null if a matching shopping cart could not be found
Throws:
SystemException - if a system exception occurred

findAll

List<ShoppingCart> findAll()
                           throws SystemException
Finds all the shopping carts.

Returns:
the shopping carts
Throws:
SystemException - if a system exception occurred

findAll

List<ShoppingCart> findAll(int start,
                           int end)
                           throws SystemException
Finds a range of all the shopping carts.

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.

Parameters:
start - the lower bound of the range of shopping carts to return
end - the upper bound of the range of shopping carts to return (not inclusive)
Returns:
the range of shopping carts
Throws:
SystemException - if a system exception occurred

findAll

List<ShoppingCart> findAll(int start,
                           int end,
                           OrderByComparator orderByComparator)
                           throws SystemException
Finds an ordered range of all the shopping carts.

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.

Parameters:
start - the lower bound of the range of shopping carts to return
end - the upper bound of the range of shopping carts to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of shopping carts
Throws:
SystemException - if a system exception occurred

removeByGroupId

void removeByGroupId(long groupId)
                     throws SystemException
Removes all the shopping carts where groupId = ? from the database.

Parameters:
groupId - the group id to search with
Throws:
SystemException - if a system exception occurred

removeByUserId

void removeByUserId(long userId)
                    throws SystemException
Removes all the shopping carts where userId = ? from the database.

Parameters:
userId - the user id to search with
Throws:
SystemException - if a system exception occurred

removeByG_U

void removeByG_U(long groupId,
                 long userId)
                 throws SystemException,
                        NoSuchCartException
Removes the shopping cart where groupId = ? and userId = ? from the database.

Parameters:
groupId - the group id to search with
userId - the user id to search with
Throws:
SystemException - if a system exception occurred
NoSuchCartException

removeAll

void removeAll()
               throws SystemException
Removes all the shopping carts from the database.

Throws:
SystemException - if a system exception occurred

countByGroupId

int countByGroupId(long groupId)
                   throws SystemException
Counts all the shopping carts where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the number of matching shopping carts
Throws:
SystemException - if a system exception occurred

countByUserId

int countByUserId(long userId)
                  throws SystemException
Counts all the shopping carts where userId = ?.

Parameters:
userId - the user id to search with
Returns:
the number of matching shopping carts
Throws:
SystemException - if a system exception occurred

countByG_U

int countByG_U(long groupId,
               long userId)
               throws SystemException
Counts all the shopping carts where groupId = ? and userId = ?.

Parameters:
groupId - the group id to search with
userId - the user id to search with
Returns:
the number of matching shopping carts
Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Counts all the shopping carts.

Returns:
the number of shopping carts
Throws:
SystemException - if a system exception occurred

Liferay 6.0.5