|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface RatingsStatsPersistence
The persistence interface for the ratings stats service.
Never modify or reference this interface directly. Always use RatingsStatsUtil
to access the ratings stats persistence. Modify service.xml
and rerun ServiceBuilder to regenerate this interface.
Caching information and settings can be found in portal.properties
RatingsStatsPersistenceImpl
,
RatingsStatsUtil
Method Summary | |
---|---|
void |
cacheResult(List<RatingsStats> ratingsStatses)
Caches the ratings statses in the entity cache if it is enabled. |
void |
cacheResult(RatingsStats ratingsStats)
Caches the ratings stats in the entity cache if it is enabled. |
int |
countAll()
Counts all the ratings statses. |
int |
countByC_C(long classNameId,
long classPK)
Counts all the ratings statses where classNameId = ? and classPK = ?. |
RatingsStats |
create(long statsId)
Creates a new ratings stats with the primary key. |
RatingsStats |
fetchByC_C(long classNameId,
long classPK)
Finds the ratings stats where classNameId = ? and classPK = ? or returns null if it could not be found. |
RatingsStats |
fetchByC_C(long classNameId,
long classPK,
boolean retrieveFromCache)
Finds the ratings stats where classNameId = ? and classPK = ? or returns null if it could not be found, optionally using the finder cache. |
RatingsStats |
fetchByPrimaryKey(long statsId)
Finds the ratings stats with the primary key or returns null if it could not be found. |
List<RatingsStats> |
findAll()
Finds all the ratings statses. |
List<RatingsStats> |
findAll(int start,
int end)
Finds a range of all the ratings statses. |
List<RatingsStats> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Finds an ordered range of all the ratings statses. |
RatingsStats |
findByC_C(long classNameId,
long classPK)
Finds the ratings stats where classNameId = ? and classPK = ? or throws a NoSuchStatsException if it could not be found. |
RatingsStats |
findByPrimaryKey(long statsId)
Finds the ratings stats with the primary key or throws a NoSuchStatsException if it could not be found. |
RatingsStats |
remove(long statsId)
Removes the ratings stats with the primary key from the database. |
void |
removeAll()
Removes all the ratings statses from the database. |
void |
removeByC_C(long classNameId,
long classPK)
Removes the ratings stats where classNameId = ? and classPK = ? from the database. |
RatingsStats |
updateImpl(RatingsStats ratingsStats,
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 |
---|
void cacheResult(RatingsStats ratingsStats)
ratingsStats
- the ratings stats to cachevoid cacheResult(List<RatingsStats> ratingsStatses)
ratingsStatses
- the ratings statses to cacheRatingsStats create(long statsId)
statsId
- the primary key for the new ratings stats
RatingsStats remove(long statsId) throws SystemException, NoSuchStatsException
statsId
- the primary key of the ratings stats to remove
NoSuchStatsException
- if a ratings stats with the primary key could not be found
SystemException
- if a system exception occurredRatingsStats updateImpl(RatingsStats ratingsStats, boolean merge) throws SystemException
SystemException
RatingsStats findByPrimaryKey(long statsId) throws SystemException, NoSuchStatsException
NoSuchStatsException
if it could not be found.
statsId
- the primary key of the ratings stats to find
NoSuchStatsException
- if a ratings stats with the primary key could not be found
SystemException
- if a system exception occurredRatingsStats fetchByPrimaryKey(long statsId) throws SystemException
null
if it could not be found.
statsId
- the primary key of the ratings stats to find
null
if a ratings stats with the primary key could not be found
SystemException
- if a system exception occurredRatingsStats findByC_C(long classNameId, long classPK) throws SystemException, NoSuchStatsException
NoSuchStatsException
if it could not be found.
classNameId
- the class name id to search withclassPK
- the class p k to search with
NoSuchStatsException
- if a matching ratings stats could not be found
SystemException
- if a system exception occurredRatingsStats fetchByC_C(long classNameId, long classPK) throws SystemException
null
if it could not be found. Uses the finder cache.
classNameId
- the class name id to search withclassPK
- the class p k to search with
null
if a matching ratings stats could not be found
SystemException
- if a system exception occurredRatingsStats fetchByC_C(long classNameId, long classPK, boolean retrieveFromCache) throws SystemException
null
if it could not be found, optionally using the finder cache.
classNameId
- the class name id to search withclassPK
- the class p k to search with
null
if a matching ratings stats could not be found
SystemException
- if a system exception occurredList<RatingsStats> findAll() throws SystemException
SystemException
- if a system exception occurredList<RatingsStats> 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 ratings statses to returnend
- the upper bound of the range of ratings statses to return (not inclusive)
SystemException
- if a system exception occurredList<RatingsStats> 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 ratings statses to returnend
- the upper bound of the range of ratings statses to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredvoid removeByC_C(long classNameId, long classPK) throws SystemException, NoSuchStatsException
classNameId
- the class name id to search withclassPK
- the class p k to search with
SystemException
- if a system exception occurred
NoSuchStatsException
void removeAll() throws SystemException
SystemException
- if a system exception occurredint countByC_C(long classNameId, long classPK) throws SystemException
classNameId
- the class name id to search withclassPK
- the class p k to search with
SystemException
- if a system exception occurredint countAll() throws SystemException
SystemException
- if a system exception occurred
|
Liferay 6.0.5 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |