Liferay 6.0.5

com.liferay.portlet.social.service.persistence
Interface SocialEquityHistoryPersistence

All Superinterfaces:
BasePersistence<SocialEquityHistory>
All Known Implementing Classes:
SocialEquityHistoryPersistenceImpl

public interface SocialEquityHistoryPersistence
extends BasePersistence<SocialEquityHistory>

The persistence interface for the social equity history service.

Never modify or reference this interface directly. Always use SocialEquityHistoryUtil to access the social equity history persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface.

Caching information and settings can be found in portal.properties

See Also:
SocialEquityHistoryPersistenceImpl, SocialEquityHistoryUtil
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Method Summary
 void cacheResult(List<SocialEquityHistory> socialEquityHistories)
          Caches the social equity histories in the entity cache if it is enabled.
 void cacheResult(SocialEquityHistory socialEquityHistory)
          Caches the social equity history in the entity cache if it is enabled.
 int countAll()
          Counts all the social equity histories.
 SocialEquityHistory create(long equityHistoryId)
          Creates a new social equity history with the primary key.
 SocialEquityHistory fetchByPrimaryKey(long equityHistoryId)
          Finds the social equity history with the primary key or returns null if it could not be found.
 List<SocialEquityHistory> findAll()
          Finds all the social equity histories.
 List<SocialEquityHistory> findAll(int start, int end)
          Finds a range of all the social equity histories.
 List<SocialEquityHistory> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the social equity histories.
 SocialEquityHistory findByPrimaryKey(long equityHistoryId)
          Finds the social equity history with the primary key or throws a NoSuchEquityHistoryException if it could not be found.
 SocialEquityHistory remove(long equityHistoryId)
          Removes the social equity history with the primary key from the database.
 void removeAll()
          Removes all the social equity histories from the database.
 SocialEquityHistory updateImpl(SocialEquityHistory socialEquityHistory, 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

cacheResult

void cacheResult(SocialEquityHistory socialEquityHistory)
Caches the social equity history in the entity cache if it is enabled.

Parameters:
socialEquityHistory - the social equity history to cache

cacheResult

void cacheResult(List<SocialEquityHistory> socialEquityHistories)
Caches the social equity histories in the entity cache if it is enabled.

Parameters:
socialEquityHistories - the social equity histories to cache

create

SocialEquityHistory create(long equityHistoryId)
Creates a new social equity history with the primary key. Does not add the social equity history to the database.

Parameters:
equityHistoryId - the primary key for the new social equity history
Returns:
the new social equity history

remove

SocialEquityHistory remove(long equityHistoryId)
                           throws SystemException,
                                  NoSuchEquityHistoryException
Removes the social equity history with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
equityHistoryId - the primary key of the social equity history to remove
Returns:
the social equity history that was removed
Throws:
NoSuchEquityHistoryException - if a social equity history with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

SocialEquityHistory updateImpl(SocialEquityHistory socialEquityHistory,
                               boolean merge)
                               throws SystemException
Throws:
SystemException

findByPrimaryKey

SocialEquityHistory findByPrimaryKey(long equityHistoryId)
                                     throws SystemException,
                                            NoSuchEquityHistoryException
Finds the social equity history with the primary key or throws a NoSuchEquityHistoryException if it could not be found.

Parameters:
equityHistoryId - the primary key of the social equity history to find
Returns:
the social equity history
Throws:
NoSuchEquityHistoryException - if a social equity history with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

SocialEquityHistory fetchByPrimaryKey(long equityHistoryId)
                                      throws SystemException
Finds the social equity history with the primary key or returns null if it could not be found.

Parameters:
equityHistoryId - the primary key of the social equity history to find
Returns:
the social equity history, or null if a social equity history with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findAll

List<SocialEquityHistory> findAll()
                                  throws SystemException
Finds all the social equity histories.

Returns:
the social equity histories
Throws:
SystemException - if a system exception occurred

findAll

List<SocialEquityHistory> findAll(int start,
                                  int end)
                                  throws SystemException
Finds a range of all the social equity histories.

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.

Parameters:
start - the lower bound of the range of social equity histories to return
end - the upper bound of the range of social equity histories to return (not inclusive)
Returns:
the range of social equity histories
Throws:
SystemException - if a system exception occurred

findAll

List<SocialEquityHistory> findAll(int start,
                                  int end,
                                  OrderByComparator orderByComparator)
                                  throws SystemException
Finds an ordered range of all the social equity histories.

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.

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

removeAll

void removeAll()
               throws SystemException
Removes all the social equity histories from the database.

Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Counts all the social equity histories.

Returns:
the number of social equity histories
Throws:
SystemException - if a system exception occurred

Liferay 6.0.5