|
Liferay 6.1.2-ce-ga3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface CounterPersistence
The persistence interface for the counter service.
Caching information and settings can be found in portal.properties
CounterPersistenceImpl
,
CounterUtil
Method Summary | |
---|---|
void |
cacheResult(Counter counter)
Caches the counter in the entity cache if it is enabled. |
void |
cacheResult(List<Counter> counters)
Caches the counters in the entity cache if it is enabled. |
int |
countAll()
Returns the number of counters. |
Counter |
create(String name)
Creates a new counter with the primary key. |
Counter |
fetchByPrimaryKey(String name)
Returns the counter with the primary key or returns null if it could not be found. |
List<Counter> |
findAll()
Returns all the counters. |
List<Counter> |
findAll(int start,
int end)
Returns a range of all the counters. |
List<Counter> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the counters. |
Counter |
findByPrimaryKey(String name)
Returns the counter with the primary key or throws a NoSuchCounterException if it could not be found. |
Counter |
remove(String name)
Removes the counter with the primary key from the database. |
void |
removeAll()
Removes all the counters from the database. |
Counter |
updateImpl(Counter counter,
boolean merge)
|
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence |
---|
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update |
Method Detail |
---|
void cacheResult(Counter counter)
counter
- the countervoid cacheResult(List<Counter> counters)
counters
- the countersCounter create(String name)
name
- the primary key for the new counter
Counter remove(String name) throws NoSuchCounterException, SystemException
name
- the primary key of the counter
NoSuchCounterException
- if a counter with the primary key could not be found
SystemException
- if a system exception occurredCounter updateImpl(Counter counter, boolean merge) throws SystemException
SystemException
Counter findByPrimaryKey(String name) throws NoSuchCounterException, SystemException
NoSuchCounterException
if it could not be found.
name
- the primary key of the counter
NoSuchCounterException
- if a counter with the primary key could not be found
SystemException
- if a system exception occurredCounter fetchByPrimaryKey(String name) throws SystemException
null
if it could not be found.
name
- the primary key of the counter
null
if a counter with the primary key could not be found
SystemException
- if a system exception occurredList<Counter> findAll() throws SystemException
SystemException
- if a system exception occurredList<Counter> 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 countersend
- the upper bound of the range of counters (not inclusive)
SystemException
- if a system exception occurredList<Counter> 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 countersend
- the upper bound of the range of counters (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)
SystemException
- if a system exception occurredvoid removeAll() throws SystemException
SystemException
- if a system exception occurredint countAll() throws SystemException
SystemException
- if a system exception occurred
|
Liferay 6.1.2-ce-ga3 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |