|
Liferay 6.1.2-ce-ga3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.liferay.portlet.shopping.service.persistence.ShoppingCartUtil
public class ShoppingCartUtil
The persistence utility for the shopping cart service. This utility wraps ShoppingCartPersistenceImpl
and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.
Caching information and settings can be found in portal.properties
ShoppingCartPersistence
,
ShoppingCartPersistenceImpl
Constructor Summary | |
---|---|
ShoppingCartUtil()
|
Method Summary | |
---|---|
static void |
cacheResult(List<ShoppingCart> shoppingCarts)
Caches the shopping carts in the entity cache if it is enabled. |
static void |
cacheResult(ShoppingCart shoppingCart)
Caches the shopping cart in the entity cache if it is enabled. |
static void |
clearCache()
|
static void |
clearCache(ShoppingCart shoppingCart)
|
static int |
countAll()
Returns the number of shopping carts. |
static int |
countByG_U(long groupId,
long userId)
Returns the number of shopping carts where groupId = ? and userId = ?. |
static int |
countByGroupId(long groupId)
Returns the number of shopping carts where groupId = ?. |
static int |
countByUserId(long userId)
Returns the number of shopping carts where userId = ?. |
long |
countWithDynamicQuery(DynamicQuery dynamicQuery)
|
static ShoppingCart |
create(long cartId)
Creates a new shopping cart with the primary key. |
static ShoppingCart |
fetchByG_U(long groupId,
long userId)
Returns the shopping cart where groupId = ? and userId = ? or returns null if it could not be found. |
static ShoppingCart |
fetchByG_U(long groupId,
long userId,
boolean retrieveFromCache)
Returns the shopping cart where groupId = ? and userId = ? or returns null if it could not be found, optionally using the finder cache. |
static ShoppingCart |
fetchByGroupId_First(long groupId,
OrderByComparator orderByComparator)
Returns the first shopping cart in the ordered set where groupId = ?. |
static ShoppingCart |
fetchByGroupId_Last(long groupId,
OrderByComparator orderByComparator)
Returns the last shopping cart in the ordered set where groupId = ?. |
static ShoppingCart |
fetchByPrimaryKey(long cartId)
Returns the shopping cart with the primary key or returns null if it could not be found. |
static ShoppingCart |
fetchByUserId_First(long userId,
OrderByComparator orderByComparator)
Returns the first shopping cart in the ordered set where userId = ?. |
static ShoppingCart |
fetchByUserId_Last(long userId,
OrderByComparator orderByComparator)
Returns the last shopping cart in the ordered set where userId = ?. |
static List<ShoppingCart> |
findAll()
Returns all the shopping carts. |
static List<ShoppingCart> |
findAll(int start,
int end)
Returns a range of all the shopping carts. |
static List<ShoppingCart> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the shopping carts. |
static ShoppingCart |
findByG_U(long groupId,
long userId)
Returns the shopping cart where groupId = ? and userId = ? or throws a NoSuchCartException if it could not be found. |
static ShoppingCart |
findByGroupId_First(long groupId,
OrderByComparator orderByComparator)
Returns the first shopping cart in the ordered set where groupId = ?. |
static ShoppingCart |
findByGroupId_Last(long groupId,
OrderByComparator orderByComparator)
Returns the last shopping cart in the ordered set where groupId = ?. |
static ShoppingCart[] |
findByGroupId_PrevAndNext(long cartId,
long groupId,
OrderByComparator orderByComparator)
Returns the shopping carts before and after the current shopping cart in the ordered set where groupId = ?. |
static List<ShoppingCart> |
findByGroupId(long groupId)
Returns all the shopping carts where groupId = ?. |
static List<ShoppingCart> |
findByGroupId(long groupId,
int start,
int end)
Returns a range of all the shopping carts where groupId = ?. |
static List<ShoppingCart> |
findByGroupId(long groupId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the shopping carts where groupId = ?. |
static ShoppingCart |
findByPrimaryKey(long cartId)
Returns the shopping cart with the primary key or throws a NoSuchCartException if it could not be found. |
static ShoppingCart |
findByUserId_First(long userId,
OrderByComparator orderByComparator)
Returns the first shopping cart in the ordered set where userId = ?. |
static ShoppingCart |
findByUserId_Last(long userId,
OrderByComparator orderByComparator)
Returns the last shopping cart in the ordered set where userId = ?. |
static ShoppingCart[] |
findByUserId_PrevAndNext(long cartId,
long userId,
OrderByComparator orderByComparator)
Returns the shopping carts before and after the current shopping cart in the ordered set where userId = ?. |
static List<ShoppingCart> |
findByUserId(long userId)
Returns all the shopping carts where userId = ?. |
static List<ShoppingCart> |
findByUserId(long userId,
int start,
int end)
Returns a range of all the shopping carts where userId = ?. |
static List<ShoppingCart> |
findByUserId(long userId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the shopping carts where userId = ?. |
static List<ShoppingCart> |
findWithDynamicQuery(DynamicQuery dynamicQuery)
|
static List<ShoppingCart> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
|
static List<ShoppingCart> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
|
static ShoppingCartPersistence |
getPersistence()
|
static ShoppingCart |
remove(long cartId)
Removes the shopping cart with the primary key from the database. |
static void |
removeAll()
Removes all the shopping carts from the database. |
static ShoppingCart |
removeByG_U(long groupId,
long userId)
Removes the shopping cart where groupId = ? and userId = ? from the database. |
static void |
removeByGroupId(long groupId)
Removes all the shopping carts where groupId = ? from the database. |
static void |
removeByUserId(long userId)
Removes all the shopping carts where userId = ? from the database. |
void |
setPersistence(ShoppingCartPersistence persistence)
Deprecated. |
static ShoppingCart |
update(ShoppingCart shoppingCart,
boolean merge)
|
static ShoppingCart |
update(ShoppingCart shoppingCart,
boolean merge,
ServiceContext serviceContext)
|
static ShoppingCart |
updateImpl(ShoppingCart shoppingCart,
boolean merge)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ShoppingCartUtil()
Method Detail |
---|
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(ShoppingCart shoppingCart)
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)
public long countWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemException
BasePersistence.countWithDynamicQuery(DynamicQuery)
public static List<ShoppingCart> findWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery)
public static List<ShoppingCart> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
public static List<ShoppingCart> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
SystemException
BasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
public static ShoppingCart update(ShoppingCart shoppingCart, boolean merge) throws SystemException
SystemException
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean)
public static ShoppingCart update(ShoppingCart shoppingCart, boolean merge, ServiceContext serviceContext) throws SystemException
SystemException
BasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)
public static void cacheResult(ShoppingCart shoppingCart)
shoppingCart
- the shopping cartpublic static void cacheResult(List<ShoppingCart> shoppingCarts)
shoppingCarts
- the shopping cartspublic static ShoppingCart create(long cartId)
cartId
- the primary key for the new shopping cart
public static ShoppingCart remove(long cartId) throws SystemException, NoSuchCartException
cartId
- the primary key of the shopping cart
NoSuchCartException
- if a shopping cart with the primary key could not be found
SystemException
- if a system exception occurredpublic static ShoppingCart updateImpl(ShoppingCart shoppingCart, boolean merge) throws SystemException
SystemException
public static ShoppingCart findByPrimaryKey(long cartId) throws SystemException, NoSuchCartException
NoSuchCartException
if it could not be found.
cartId
- the primary key of the shopping cart
NoSuchCartException
- if a shopping cart with the primary key could not be found
SystemException
- if a system exception occurredpublic static ShoppingCart fetchByPrimaryKey(long cartId) throws SystemException
null
if it could not be found.
cartId
- the primary key of the shopping cart
null
if a shopping cart with the primary key could not be found
SystemException
- if a system exception occurredpublic static List<ShoppingCart> findByGroupId(long groupId) throws SystemException
groupId
- the group ID
SystemException
- if a system exception occurredpublic static List<ShoppingCart> findByGroupId(long groupId, 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.
groupId
- the group IDstart
- the lower bound of the range of shopping cartsend
- the upper bound of the range of shopping carts (not inclusive)
SystemException
- if a system exception occurredpublic static List<ShoppingCart> findByGroupId(long groupId, 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.
groupId
- the group IDstart
- the lower bound of the range of shopping cartsend
- the upper bound of the range of shopping carts (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)
SystemException
- if a system exception occurredpublic static ShoppingCart findByGroupId_First(long groupId, OrderByComparator orderByComparator) throws SystemException, NoSuchCartException
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)
NoSuchCartException
- if a matching shopping cart could not be found
SystemException
- if a system exception occurredpublic static ShoppingCart fetchByGroupId_First(long groupId, OrderByComparator orderByComparator) throws SystemException
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)
null
if a matching shopping cart could not be found
SystemException
- if a system exception occurredpublic static ShoppingCart findByGroupId_Last(long groupId, OrderByComparator orderByComparator) throws SystemException, NoSuchCartException
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)
NoSuchCartException
- if a matching shopping cart could not be found
SystemException
- if a system exception occurredpublic static ShoppingCart fetchByGroupId_Last(long groupId, OrderByComparator orderByComparator) throws SystemException
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)
null
if a matching shopping cart could not be found
SystemException
- if a system exception occurredpublic static ShoppingCart[] findByGroupId_PrevAndNext(long cartId, long groupId, OrderByComparator orderByComparator) throws SystemException, NoSuchCartException
cartId
- the primary key of the current shopping cartgroupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)
NoSuchCartException
- if a shopping cart with the primary key could not be found
SystemException
- if a system exception occurredpublic static List<ShoppingCart> findByUserId(long userId) throws SystemException
userId
- the user ID
SystemException
- if a system exception occurredpublic static List<ShoppingCart> findByUserId(long userId, 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.
userId
- the user IDstart
- the lower bound of the range of shopping cartsend
- the upper bound of the range of shopping carts (not inclusive)
SystemException
- if a system exception occurredpublic static List<ShoppingCart> findByUserId(long userId, 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.
userId
- the user IDstart
- the lower bound of the range of shopping cartsend
- the upper bound of the range of shopping carts (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)
SystemException
- if a system exception occurredpublic static ShoppingCart findByUserId_First(long userId, OrderByComparator orderByComparator) throws SystemException, NoSuchCartException
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)
NoSuchCartException
- if a matching shopping cart could not be found
SystemException
- if a system exception occurredpublic static ShoppingCart fetchByUserId_First(long userId, OrderByComparator orderByComparator) throws SystemException
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)
null
if a matching shopping cart could not be found
SystemException
- if a system exception occurredpublic static ShoppingCart findByUserId_Last(long userId, OrderByComparator orderByComparator) throws SystemException, NoSuchCartException
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)
NoSuchCartException
- if a matching shopping cart could not be found
SystemException
- if a system exception occurredpublic static ShoppingCart fetchByUserId_Last(long userId, OrderByComparator orderByComparator) throws SystemException
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)
null
if a matching shopping cart could not be found
SystemException
- if a system exception occurredpublic static ShoppingCart[] findByUserId_PrevAndNext(long cartId, long userId, OrderByComparator orderByComparator) throws SystemException, NoSuchCartException
cartId
- the primary key of the current shopping cartuserId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)
NoSuchCartException
- if a shopping cart with the primary key could not be found
SystemException
- if a system exception occurredpublic static ShoppingCart findByG_U(long groupId, long userId) throws SystemException, NoSuchCartException
NoSuchCartException
if it could not be found.
groupId
- the group IDuserId
- the user ID
NoSuchCartException
- if a matching shopping cart could not be found
SystemException
- if a system exception occurredpublic static ShoppingCart fetchByG_U(long groupId, long userId) throws SystemException
null
if it could not be found. Uses the finder cache.
groupId
- the group IDuserId
- the user ID
null
if a matching shopping cart could not be found
SystemException
- if a system exception occurredpublic static ShoppingCart fetchByG_U(long groupId, long userId, boolean retrieveFromCache) throws SystemException
null
if it could not be found, optionally using the finder cache.
groupId
- the group IDuserId
- the user IDretrieveFromCache
- whether to use the finder cache
null
if a matching shopping cart could not be found
SystemException
- if a system exception occurredpublic static List<ShoppingCart> findAll() throws SystemException
SystemException
- if a system exception occurredpublic static List<ShoppingCart> 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 cartsend
- the upper bound of the range of shopping carts (not inclusive)
SystemException
- if a system exception occurredpublic static List<ShoppingCart> 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 cartsend
- the upper bound of the range of shopping carts (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)
SystemException
- if a system exception occurredpublic static void removeByGroupId(long groupId) throws SystemException
groupId
- the group ID
SystemException
- if a system exception occurredpublic static void removeByUserId(long userId) throws SystemException
userId
- the user ID
SystemException
- if a system exception occurredpublic static ShoppingCart removeByG_U(long groupId, long userId) throws SystemException, NoSuchCartException
groupId
- the group IDuserId
- the user ID
SystemException
- if a system exception occurred
NoSuchCartException
public static void removeAll() throws SystemException
SystemException
- if a system exception occurredpublic static int countByGroupId(long groupId) throws SystemException
groupId
- the group ID
SystemException
- if a system exception occurredpublic static int countByUserId(long userId) throws SystemException
userId
- the user ID
SystemException
- if a system exception occurredpublic static int countByG_U(long groupId, long userId) throws SystemException
groupId
- the group IDuserId
- the user ID
SystemException
- if a system exception occurredpublic static int countAll() throws SystemException
SystemException
- if a system exception occurredpublic static ShoppingCartPersistence getPersistence()
public void setPersistence(ShoppingCartPersistence persistence)
|
Liferay 6.1.2-ce-ga3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |