Liferay 6.2-ce-ga5

com.liferay.counter.service.persistence
Interface CounterPersistence

All Superinterfaces:
BasePersistence<Counter>
All Known Implementing Classes:
CounterPersistenceImpl

@ProviderType
public interface CounterPersistence
extends BasePersistence<Counter>

The persistence interface for the counter service.

Caching information and settings can be found in portal.properties

See Also:
CounterPersistenceImpl, CounterUtil
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

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)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getCurrentSession, getDataSource, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update, update, update
 

Method Detail

cacheResult

void cacheResult(Counter counter)
Caches the counter in the entity cache if it is enabled.

Parameters:
counter - the counter

cacheResult

void cacheResult(List<Counter> counters)
Caches the counters in the entity cache if it is enabled.

Parameters:
counters - the counters

create

Counter create(String name)
Creates a new counter with the primary key. Does not add the counter to the database.

Parameters:
name - the primary key for the new counter
Returns:
the new counter

remove

Counter remove(String name)
               throws NoSuchCounterException,
                      SystemException
Removes the counter with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
name - the primary key of the counter
Returns:
the counter that was removed
Throws:
NoSuchCounterException - if a counter with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

Counter updateImpl(Counter counter)
                   throws SystemException
Throws:
SystemException

findByPrimaryKey

Counter findByPrimaryKey(String name)
                         throws NoSuchCounterException,
                                SystemException
Returns the counter with the primary key or throws a NoSuchCounterException if it could not be found.

Parameters:
name - the primary key of the counter
Returns:
the counter
Throws:
NoSuchCounterException - if a counter with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

Counter fetchByPrimaryKey(String name)
                          throws SystemException
Returns the counter with the primary key or returns null if it could not be found.

Parameters:
name - the primary key of the counter
Returns:
the counter, or null if a counter with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findAll

List<Counter> findAll()
                      throws SystemException
Returns all the counters.

Returns:
the counters
Throws:
SystemException - if a system exception occurred

findAll

List<Counter> findAll(int start,
                      int end)
                      throws SystemException
Returns a range of all the counters.

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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from CounterModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
start - the lower bound of the range of counters
end - the upper bound of the range of counters (not inclusive)
Returns:
the range of counters
Throws:
SystemException - if a system exception occurred

findAll

List<Counter> findAll(int start,
                      int end,
                      OrderByComparator orderByComparator)
                      throws SystemException
Returns an ordered range of all the counters.

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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from CounterModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

Parameters:
start - the lower bound of the range of counters
end - the upper bound of the range of counters (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of counters
Throws:
SystemException - if a system exception occurred

removeAll

void removeAll()
               throws SystemException
Removes all the counters from the database.

Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Returns the number of counters.

Returns:
the number of counters
Throws:
SystemException - if a system exception occurred

Liferay 6.2-ce-ga5