|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.liferay.portal.service.persistence.impl.BasePersistenceImpl<ShoppingCoupon> com.liferay.portlet.shopping.service.persistence.ShoppingCouponPersistenceImpl
public class ShoppingCouponPersistenceImpl
The persistence implementation for the shopping coupon service.
Never modify or reference this class directly. Always use ShoppingCouponUtil
to access the shopping coupon persistence. Modify service.xml
and rerun ServiceBuilder to regenerate this class.
Caching information and settings can be found in portal.properties
ShoppingCouponPersistence
,
ShoppingCouponUtil
Field Summary | |
---|---|
static String |
FINDER_CLASS_NAME_ENTITY
|
static String |
FINDER_CLASS_NAME_LIST
|
static FinderPath |
FINDER_PATH_COUNT_ALL
|
static FinderPath |
FINDER_PATH_COUNT_BY_CODE
|
static FinderPath |
FINDER_PATH_COUNT_BY_GROUPID
|
static FinderPath |
FINDER_PATH_FETCH_BY_CODE
|
static FinderPath |
FINDER_PATH_FIND_ALL
|
static FinderPath |
FINDER_PATH_FIND_BY_GROUPID
|
protected ResourcePersistence |
resourcePersistence
|
protected ShoppingCartPersistence |
shoppingCartPersistence
|
protected ShoppingCategoryPersistence |
shoppingCategoryPersistence
|
protected ShoppingCouponPersistence |
shoppingCouponPersistence
|
protected ShoppingItemFieldPersistence |
shoppingItemFieldPersistence
|
protected ShoppingItemPersistence |
shoppingItemPersistence
|
protected ShoppingItemPricePersistence |
shoppingItemPricePersistence
|
protected ShoppingOrderItemPersistence |
shoppingOrderItemPersistence
|
protected ShoppingOrderPersistence |
shoppingOrderPersistence
|
protected UserPersistence |
userPersistence
|
Fields inherited from class com.liferay.portal.service.persistence.impl.BasePersistenceImpl |
---|
COUNT_COLUMN_NAME, listeners, ORDER_BY_ASC, ORDER_BY_ASC_HAS_NEXT, ORDER_BY_CLAUSE, ORDER_BY_DESC, ORDER_BY_DESC_HAS_NEXT, WHERE_AND, WHERE_GREATER_THAN, WHERE_GREATER_THAN_HAS_NEXT, WHERE_LESSER_THAN, WHERE_LESSER_THAN_HAS_NEXT, WHERE_OR |
Constructor Summary | |
---|---|
ShoppingCouponPersistenceImpl()
|
Method Summary | |
---|---|
void |
afterPropertiesSet()
Initializes the shopping coupon persistence. |
void |
cacheResult(List<ShoppingCoupon> shoppingCoupons)
Caches the shopping coupons in the entity cache if it is enabled. |
void |
cacheResult(ShoppingCoupon shoppingCoupon)
Caches the shopping coupon in the entity cache if it is enabled. |
void |
clearCache()
Clears the cache for all shopping coupons. |
void |
clearCache(ShoppingCoupon shoppingCoupon)
Clears the cache for the shopping coupon. |
int |
countAll()
Counts all the shopping coupons. |
int |
countByCode(String code)
Counts all the shopping coupons where code = ?. |
int |
countByGroupId(long groupId)
Counts all the shopping coupons where groupId = ?. |
ShoppingCoupon |
create(long couponId)
Creates a new shopping coupon with the primary key. |
ShoppingCoupon |
fetchByCode(String code)
Finds the shopping coupon where code = ? or returns null if it could not be found. |
ShoppingCoupon |
fetchByCode(String code,
boolean retrieveFromCache)
Finds the shopping coupon where code = ? or returns null if it could not be found, optionally using the finder cache. |
ShoppingCoupon |
fetchByPrimaryKey(long couponId)
Finds the shopping coupon with the primary key or returns null if it could not be found. |
ShoppingCoupon |
fetchByPrimaryKey(Serializable primaryKey)
Finds the shopping coupon with the primary key or returns null if it could not be found. |
List<ShoppingCoupon> |
findAll()
Finds all the shopping coupons. |
List<ShoppingCoupon> |
findAll(int start,
int end)
Finds a range of all the shopping coupons. |
List<ShoppingCoupon> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the shopping coupons. |
ShoppingCoupon |
findByCode(String code)
Finds the shopping coupon where code = ? or throws a NoSuchCouponException if it could not be found. |
ShoppingCoupon |
findByGroupId_First(long groupId,
OrderByComparator orderByComparator)
Finds the first shopping coupon in the ordered set where groupId = ?. |
ShoppingCoupon |
findByGroupId_Last(long groupId,
OrderByComparator orderByComparator)
Finds the last shopping coupon in the ordered set where groupId = ?. |
ShoppingCoupon[] |
findByGroupId_PrevAndNext(long couponId,
long groupId,
OrderByComparator orderByComparator)
Finds the shopping coupons before and after the current shopping coupon in the ordered set where groupId = ?. |
List<ShoppingCoupon> |
findByGroupId(long groupId)
Finds all the shopping coupons where groupId = ?. |
List<ShoppingCoupon> |
findByGroupId(long groupId,
int start,
int end)
Finds a range of all the shopping coupons where groupId = ?. |
List<ShoppingCoupon> |
findByGroupId(long groupId,
int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the shopping coupons where groupId = ?. |
ShoppingCoupon |
findByPrimaryKey(long couponId)
Finds the shopping coupon with the primary key or throws a NoSuchCouponException if it could not be found. |
ShoppingCoupon |
findByPrimaryKey(Serializable primaryKey)
Finds the shopping coupon with the primary key or throws a NoSuchModelException if it could not be found. |
protected ShoppingCoupon |
getByGroupId_PrevAndNext(Session session,
ShoppingCoupon shoppingCoupon,
long groupId,
OrderByComparator orderByComparator,
boolean previous)
|
ShoppingCoupon |
remove(long couponId)
Removes the shopping coupon with the primary key from the database. |
ShoppingCoupon |
remove(Serializable primaryKey)
Removes the shopping coupon with the primary key from the database. |
void |
removeAll()
Removes all the shopping coupons from the database. |
void |
removeByCode(String code)
Removes the shopping coupon where code = ? from the database. |
void |
removeByGroupId(long groupId)
Removes all the shopping coupons where groupId = ? from the database. |
protected ShoppingCoupon |
removeImpl(ShoppingCoupon shoppingCoupon)
Removes the model instance from the database. |
protected ShoppingCoupon |
toUnwrappedModel(ShoppingCoupon shoppingCoupon)
|
ShoppingCoupon |
updateImpl(ShoppingCoupon shoppingCoupon,
boolean merge)
Updates the model instance in the database or adds it if it does not yet exist. |
Methods inherited from class com.liferay.portal.service.persistence.impl.BasePersistenceImpl |
---|
appendOrderByComparator, closeSession, countWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getDialect, getListeners, openNewSession, openSession, processException, registerListener, remove, setDataSource, setSessionFactory, unregisterListener, update, update |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence |
---|
countWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, registerListener, remove, setDataSource, unregisterListener, update, update |
Field Detail |
---|
public static final String FINDER_CLASS_NAME_ENTITY
public static final String FINDER_CLASS_NAME_LIST
public static final FinderPath FINDER_PATH_FIND_BY_GROUPID
public static final FinderPath FINDER_PATH_COUNT_BY_GROUPID
public static final FinderPath FINDER_PATH_FETCH_BY_CODE
public static final FinderPath FINDER_PATH_COUNT_BY_CODE
public static final FinderPath FINDER_PATH_FIND_ALL
public static final FinderPath FINDER_PATH_COUNT_ALL
@BeanReference(type=ShoppingCartPersistence.class) protected ShoppingCartPersistence shoppingCartPersistence
@BeanReference(type=ShoppingCategoryPersistence.class) protected ShoppingCategoryPersistence shoppingCategoryPersistence
@BeanReference(type=ShoppingCouponPersistence.class) protected ShoppingCouponPersistence shoppingCouponPersistence
@BeanReference(type=ShoppingItemPersistence.class) protected ShoppingItemPersistence shoppingItemPersistence
@BeanReference(type=ShoppingItemFieldPersistence.class) protected ShoppingItemFieldPersistence shoppingItemFieldPersistence
@BeanReference(type=ShoppingItemPricePersistence.class) protected ShoppingItemPricePersistence shoppingItemPricePersistence
@BeanReference(type=ShoppingOrderPersistence.class) protected ShoppingOrderPersistence shoppingOrderPersistence
@BeanReference(type=ShoppingOrderItemPersistence.class) protected ShoppingOrderItemPersistence shoppingOrderItemPersistence
@BeanReference(type=ResourcePersistence.class) protected ResourcePersistence resourcePersistence
@BeanReference(type=UserPersistence.class) protected UserPersistence userPersistence
Constructor Detail |
---|
public ShoppingCouponPersistenceImpl()
Method Detail |
---|
public void cacheResult(ShoppingCoupon shoppingCoupon)
cacheResult
in interface ShoppingCouponPersistence
shoppingCoupon
- the shopping coupon to cachepublic void cacheResult(List<ShoppingCoupon> shoppingCoupons)
cacheResult
in interface ShoppingCouponPersistence
shoppingCoupons
- the shopping coupons to cachepublic void clearCache()
The EntityCache
and FinderCache
are both cleared by this method.
clearCache
in interface BasePersistence<ShoppingCoupon>
clearCache
in class BasePersistenceImpl<ShoppingCoupon>
public void clearCache(ShoppingCoupon shoppingCoupon)
The EntityCache
and FinderCache
are both cleared by this method.
clearCache
in interface BasePersistence<ShoppingCoupon>
clearCache
in class BasePersistenceImpl<ShoppingCoupon>
shoppingCoupon
- the instance of this model to clear the cache forpublic ShoppingCoupon create(long couponId)
create
in interface ShoppingCouponPersistence
couponId
- the primary key for the new shopping coupon
public ShoppingCoupon remove(Serializable primaryKey) throws NoSuchModelException, SystemException
remove
in interface BasePersistence<ShoppingCoupon>
remove
in class BasePersistenceImpl<ShoppingCoupon>
primaryKey
- the primary key of the shopping coupon to remove
NoSuchModelException
- if a shopping coupon with the primary key could not be found
SystemException
- if a system exception occurredpublic ShoppingCoupon remove(long couponId) throws NoSuchCouponException, SystemException
remove
in interface ShoppingCouponPersistence
couponId
- the primary key of the shopping coupon to remove
NoSuchCouponException
- if a shopping coupon with the primary key could not be found
SystemException
- if a system exception occurredprotected ShoppingCoupon removeImpl(ShoppingCoupon shoppingCoupon) throws SystemException
BasePersistenceImpl
BasePersistenceImpl.update(BaseModel,
boolean)
depends on this method to implement the remove operation; it
only notifies the model listeners.
removeImpl
in class BasePersistenceImpl<ShoppingCoupon>
shoppingCoupon
- the model instance to remove
SystemException
- if a system exception occurredpublic ShoppingCoupon updateImpl(ShoppingCoupon shoppingCoupon, boolean merge) throws SystemException
BasePersistenceImpl
BasePersistenceImpl.remove(BaseModel)
depends on this method to implement the
update operation; it only notifies the model listeners.
updateImpl
in interface ShoppingCouponPersistence
updateImpl
in class BasePersistenceImpl<ShoppingCoupon>
shoppingCoupon
- the model instance to updatemerge
- whether to merge the model instance with the current
session. See BatchSession.update(
com.liferay.portal.kernel.dao.orm.Session, BaseModel, boolean)
for an explanation.
SystemException
- if a system exception occurredprotected ShoppingCoupon toUnwrappedModel(ShoppingCoupon shoppingCoupon)
public ShoppingCoupon findByPrimaryKey(Serializable primaryKey) throws NoSuchModelException, SystemException
NoSuchModelException
if it could not be found.
findByPrimaryKey
in interface BasePersistence<ShoppingCoupon>
findByPrimaryKey
in class BasePersistenceImpl<ShoppingCoupon>
primaryKey
- the primary key of the shopping coupon to find
NoSuchModelException
- if a shopping coupon with the primary key could not be found
SystemException
- if a system exception occurredpublic ShoppingCoupon findByPrimaryKey(long couponId) throws NoSuchCouponException, SystemException
NoSuchCouponException
if it could not be found.
findByPrimaryKey
in interface ShoppingCouponPersistence
couponId
- the primary key of the shopping coupon to find
NoSuchCouponException
- if a shopping coupon with the primary key could not be found
SystemException
- if a system exception occurredpublic ShoppingCoupon fetchByPrimaryKey(Serializable primaryKey) throws SystemException
null
if it could not be found.
fetchByPrimaryKey
in interface BasePersistence<ShoppingCoupon>
fetchByPrimaryKey
in class BasePersistenceImpl<ShoppingCoupon>
primaryKey
- the primary key of the shopping coupon to find
null
if a shopping coupon with the primary key could not be found
SystemException
- if a system exception occurredpublic ShoppingCoupon fetchByPrimaryKey(long couponId) throws SystemException
null
if it could not be found.
fetchByPrimaryKey
in interface ShoppingCouponPersistence
couponId
- the primary key of the shopping coupon to find
null
if a shopping coupon with the primary key could not be found
SystemException
- if a system exception occurredpublic List<ShoppingCoupon> findByGroupId(long groupId) throws SystemException
findByGroupId
in interface ShoppingCouponPersistence
groupId
- the group id to search with
SystemException
- if a system exception occurredpublic List<ShoppingCoupon> 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.
findByGroupId
in interface ShoppingCouponPersistence
groupId
- the group id to search withstart
- the lower bound of the range of shopping coupons to returnend
- the upper bound of the range of shopping coupons to return (not inclusive)
SystemException
- if a system exception occurredpublic List<ShoppingCoupon> 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.
findByGroupId
in interface ShoppingCouponPersistence
groupId
- the group id to search withstart
- the lower bound of the range of shopping coupons to returnend
- the upper bound of the range of shopping coupons to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredpublic ShoppingCoupon findByGroupId_First(long groupId, OrderByComparator orderByComparator) throws NoSuchCouponException, 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.
findByGroupId_First
in interface ShoppingCouponPersistence
groupId
- the group id to search withorderByComparator
- the comparator to order the set by
NoSuchCouponException
- if a matching shopping coupon could not be found
SystemException
- if a system exception occurredpublic ShoppingCoupon findByGroupId_Last(long groupId, OrderByComparator orderByComparator) throws NoSuchCouponException, 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.
findByGroupId_Last
in interface ShoppingCouponPersistence
groupId
- the group id to search withorderByComparator
- the comparator to order the set by
NoSuchCouponException
- if a matching shopping coupon could not be found
SystemException
- if a system exception occurredpublic ShoppingCoupon[] findByGroupId_PrevAndNext(long couponId, long groupId, OrderByComparator orderByComparator) throws NoSuchCouponException, 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.
findByGroupId_PrevAndNext
in interface ShoppingCouponPersistence
couponId
- the primary key of the current shopping coupongroupId
- the group id to search withorderByComparator
- the comparator to order the set by
NoSuchCouponException
- if a shopping coupon with the primary key could not be found
SystemException
- if a system exception occurredprotected ShoppingCoupon getByGroupId_PrevAndNext(Session session, ShoppingCoupon shoppingCoupon, long groupId, OrderByComparator orderByComparator, boolean previous)
public ShoppingCoupon findByCode(String code) throws NoSuchCouponException, SystemException
NoSuchCouponException
if it could not be found.
findByCode
in interface ShoppingCouponPersistence
code
- the code to search with
NoSuchCouponException
- if a matching shopping coupon could not be found
SystemException
- if a system exception occurredpublic ShoppingCoupon fetchByCode(String code) throws SystemException
null
if it could not be found. Uses the finder cache.
fetchByCode
in interface ShoppingCouponPersistence
code
- the code to search with
null
if a matching shopping coupon could not be found
SystemException
- if a system exception occurredpublic ShoppingCoupon fetchByCode(String code, boolean retrieveFromCache) throws SystemException
null
if it could not be found, optionally using the finder cache.
fetchByCode
in interface ShoppingCouponPersistence
code
- the code to search with
null
if a matching shopping coupon could not be found
SystemException
- if a system exception occurredpublic List<ShoppingCoupon> findAll() throws SystemException
findAll
in interface ShoppingCouponPersistence
SystemException
- if a system exception occurredpublic List<ShoppingCoupon> 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.
findAll
in interface ShoppingCouponPersistence
start
- the lower bound of the range of shopping coupons to returnend
- the upper bound of the range of shopping coupons to return (not inclusive)
SystemException
- if a system exception occurredpublic List<ShoppingCoupon> 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.
findAll
in interface ShoppingCouponPersistence
start
- the lower bound of the range of shopping coupons to returnend
- the upper bound of the range of shopping coupons to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredpublic void removeByGroupId(long groupId) throws SystemException
removeByGroupId
in interface ShoppingCouponPersistence
groupId
- the group id to search with
SystemException
- if a system exception occurredpublic void removeByCode(String code) throws NoSuchCouponException, SystemException
removeByCode
in interface ShoppingCouponPersistence
code
- the code to search with
SystemException
- if a system exception occurred
NoSuchCouponException
public void removeAll() throws SystemException
removeAll
in interface ShoppingCouponPersistence
SystemException
- if a system exception occurredpublic int countByGroupId(long groupId) throws SystemException
countByGroupId
in interface ShoppingCouponPersistence
groupId
- the group id to search with
SystemException
- if a system exception occurredpublic int countByCode(String code) throws SystemException
countByCode
in interface ShoppingCouponPersistence
code
- the code to search with
SystemException
- if a system exception occurredpublic int countAll() throws SystemException
countAll
in interface ShoppingCouponPersistence
SystemException
- if a system exception occurredpublic void afterPropertiesSet()
|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |