|
Liferay 6.1.0-ce-b4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.liferay.counter.service.persistence.CounterUtil
public class CounterUtil
The persistence utility for the counter service. This utility wraps CounterPersistenceImpl 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
CounterPersistence,
CounterPersistenceImpl| Constructor Summary | |
|---|---|
CounterUtil()
|
|
| Method Summary | |
|---|---|
static void |
cacheResult(Counter counter)
Caches the counter in the entity cache if it is enabled. |
static void |
cacheResult(List<Counter> counters)
Caches the counters in the entity cache if it is enabled. |
static void |
clearCache()
|
static void |
clearCache(Counter counter)
|
static int |
countAll()
Returns the number of counters. |
long |
countWithDynamicQuery(DynamicQuery dynamicQuery)
|
static Counter |
create(String name)
Creates a new counter with the primary key. |
static Counter |
fetchByPrimaryKey(String name)
Returns the counter with the primary key or returns null if it could not be found. |
static List<Counter> |
findAll()
Returns all the counters. |
static List<Counter> |
findAll(int start,
int end)
Returns a range of all the counters. |
static List<Counter> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the counters. |
static Counter |
findByPrimaryKey(String name)
Returns the counter with the primary key or throws a NoSuchCounterException if it could not be found. |
static List<Counter> |
findWithDynamicQuery(DynamicQuery dynamicQuery)
|
static List<Counter> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
|
static List<Counter> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
|
static CounterPersistence |
getPersistence()
|
static Counter |
remove(Counter counter)
|
static Counter |
remove(String name)
Removes the counter with the primary key from the database. |
static void |
removeAll()
Removes all the counters from the database. |
void |
setPersistence(CounterPersistence persistence)
|
static Counter |
update(Counter counter,
boolean merge)
|
static Counter |
update(Counter counter,
boolean merge,
ServiceContext serviceContext)
|
static Counter |
updateImpl(Counter counter,
boolean merge)
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public CounterUtil()
| Method Detail |
|---|
public static void clearCache()
BasePersistence.clearCache()public static void clearCache(Counter counter)
BasePersistence.clearCache(com.liferay.portal.model.BaseModel)
public long countWithDynamicQuery(DynamicQuery dynamicQuery)
throws SystemException
SystemExceptionBasePersistence.countWithDynamicQuery(DynamicQuery)
public static List<Counter> findWithDynamicQuery(DynamicQuery dynamicQuery)
throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery)
public static List<Counter> findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery, int, int)
public static List<Counter> findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator)
throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator)
public static Counter remove(Counter counter)
throws SystemException
SystemExceptionBasePersistence.remove(com.liferay.portal.model.BaseModel)
public static Counter update(Counter counter,
boolean merge)
throws SystemException
SystemExceptionBasePersistence.update(com.liferay.portal.model.BaseModel, boolean)
public static Counter update(Counter counter,
boolean merge,
ServiceContext serviceContext)
throws SystemException
SystemExceptionBasePersistence.update(com.liferay.portal.model.BaseModel, boolean, ServiceContext)public static void cacheResult(Counter counter)
counter - the counterpublic static void cacheResult(List<Counter> counters)
counters - the counterspublic static Counter create(String name)
name - the primary key for the new counter
public static 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 occurred
public static Counter updateImpl(Counter counter,
boolean merge)
throws SystemException
SystemException
public static 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 occurred
public static Counter 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 occurred
public static List<Counter> findAll()
throws SystemException
SystemException - if a system exception occurred
public static List<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 occurred
public static List<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 occurred
public static void removeAll()
throws SystemException
SystemException - if a system exception occurred
public static int countAll()
throws SystemException
SystemException - if a system exception occurredpublic static CounterPersistence getPersistence()
public void setPersistence(CounterPersistence persistence)
|
Liferay 6.1.0-ce-b4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||