Liferay 6.1.0

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

All Superinterfaces:
BasePersistence<SocialEquityAssetEntry>

public interface SocialEquityAssetEntryPersistence
extends BasePersistence<SocialEquityAssetEntry>

The persistence interface for the social equity asset entry service.

Caching information and settings can be found in portal.properties

See Also:
SocialEquityAssetEntryPersistenceImpl, SocialEquityAssetEntryUtil

Method Summary
 void cacheResult(List<SocialEquityAssetEntry> socialEquityAssetEntries)
          Caches the social equity asset entries in the entity cache if it is enabled.
 void cacheResult(SocialEquityAssetEntry socialEquityAssetEntry)
          Caches the social equity asset entry in the entity cache if it is enabled.
 int countAll()
          Returns the number of social equity asset entries.
 int countByAssetEntryId(long assetEntryId)
          Returns the number of social equity asset entries where assetEntryId = ?.
 SocialEquityAssetEntry create(long equityAssetEntryId)
          Creates a new social equity asset entry with the primary key.
 SocialEquityAssetEntry fetchByAssetEntryId(long assetEntryId)
          Returns the social equity asset entry where assetEntryId = ? or returns null if it could not be found.
 SocialEquityAssetEntry fetchByAssetEntryId(long assetEntryId, boolean retrieveFromCache)
          Returns the social equity asset entry where assetEntryId = ? or returns null if it could not be found, optionally using the finder cache.
 SocialEquityAssetEntry fetchByPrimaryKey(long equityAssetEntryId)
          Returns the social equity asset entry with the primary key or returns null if it could not be found.
 List<SocialEquityAssetEntry> findAll()
          Returns all the social equity asset entries.
 List<SocialEquityAssetEntry> findAll(int start, int end)
          Returns a range of all the social equity asset entries.
 List<SocialEquityAssetEntry> findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the social equity asset entries.
 SocialEquityAssetEntry findByAssetEntryId(long assetEntryId)
          Returns the social equity asset entry where assetEntryId = ? or throws a NoSuchEquityAssetEntryException if it could not be found.
 SocialEquityAssetEntry findByPrimaryKey(long equityAssetEntryId)
          Returns the social equity asset entry with the primary key or throws a NoSuchEquityAssetEntryException if it could not be found.
 SocialEquityAssetEntry remove(long equityAssetEntryId)
          Removes the social equity asset entry with the primary key from the database.
 SocialEquityAssetEntry remove(SocialEquityAssetEntry socialEquityAssetEntry)
          Removes the model instance from the database.
 void removeAll()
          Removes all the social equity asset entries from the database.
 void removeByAssetEntryId(long assetEntryId)
          Removes the social equity asset entry where assetEntryId = ? from the database.
 SocialEquityAssetEntry updateImpl(SocialEquityAssetEntry socialEquityAssetEntry, boolean merge)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
clearCache, clearCache, closeSession, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, openSession, processException, registerListener, remove, setDataSource, unregisterListener, update, update
 

Method Detail

cacheResult

void cacheResult(SocialEquityAssetEntry socialEquityAssetEntry)
Caches the social equity asset entry in the entity cache if it is enabled.

Parameters:
socialEquityAssetEntry - the social equity asset entry

cacheResult

void cacheResult(List<SocialEquityAssetEntry> socialEquityAssetEntries)
Caches the social equity asset entries in the entity cache if it is enabled.

Parameters:
socialEquityAssetEntries - the social equity asset entries

create

SocialEquityAssetEntry create(long equityAssetEntryId)
Creates a new social equity asset entry with the primary key. Does not add the social equity asset entry to the database.

Parameters:
equityAssetEntryId - the primary key for the new social equity asset entry
Returns:
the new social equity asset entry

remove

SocialEquityAssetEntry remove(long equityAssetEntryId)
                              throws SystemException,
                                     NoSuchEquityAssetEntryException
Removes the social equity asset entry with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
equityAssetEntryId - the primary key of the social equity asset entry
Returns:
the social equity asset entry that was removed
Throws:
NoSuchEquityAssetEntryException - if a social equity asset entry with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

SocialEquityAssetEntry updateImpl(SocialEquityAssetEntry socialEquityAssetEntry,
                                  boolean merge)
                                  throws SystemException
Throws:
SystemException

findByPrimaryKey

SocialEquityAssetEntry findByPrimaryKey(long equityAssetEntryId)
                                        throws SystemException,
                                               NoSuchEquityAssetEntryException
Returns the social equity asset entry with the primary key or throws a NoSuchEquityAssetEntryException if it could not be found.

Parameters:
equityAssetEntryId - the primary key of the social equity asset entry
Returns:
the social equity asset entry
Throws:
NoSuchEquityAssetEntryException - if a social equity asset entry with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

SocialEquityAssetEntry fetchByPrimaryKey(long equityAssetEntryId)
                                         throws SystemException
Returns the social equity asset entry with the primary key or returns null if it could not be found.

Parameters:
equityAssetEntryId - the primary key of the social equity asset entry
Returns:
the social equity asset entry, or null if a social equity asset entry with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByAssetEntryId

SocialEquityAssetEntry findByAssetEntryId(long assetEntryId)
                                          throws SystemException,
                                                 NoSuchEquityAssetEntryException
Returns the social equity asset entry where assetEntryId = ? or throws a NoSuchEquityAssetEntryException if it could not be found.

Parameters:
assetEntryId - the asset entry ID
Returns:
the matching social equity asset entry
Throws:
NoSuchEquityAssetEntryException - if a matching social equity asset entry could not be found
SystemException - if a system exception occurred

fetchByAssetEntryId

SocialEquityAssetEntry fetchByAssetEntryId(long assetEntryId)
                                           throws SystemException
Returns the social equity asset entry where assetEntryId = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
assetEntryId - the asset entry ID
Returns:
the matching social equity asset entry, or null if a matching social equity asset entry could not be found
Throws:
SystemException - if a system exception occurred

fetchByAssetEntryId

SocialEquityAssetEntry fetchByAssetEntryId(long assetEntryId,
                                           boolean retrieveFromCache)
                                           throws SystemException
Returns the social equity asset entry where assetEntryId = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
assetEntryId - the asset entry ID
retrieveFromCache - whether to use the finder cache
Returns:
the matching social equity asset entry, or null if a matching social equity asset entry could not be found
Throws:
SystemException - if a system exception occurred

findAll

List<SocialEquityAssetEntry> findAll()
                                     throws SystemException
Returns all the social equity asset entries.

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

findAll

List<SocialEquityAssetEntry> findAll(int start,
                                     int end)
                                     throws SystemException
Returns a range of all the social equity asset entries.

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 asset entries
end - the upper bound of the range of social equity asset entries (not inclusive)
Returns:
the range of social equity asset entries
Throws:
SystemException - if a system exception occurred

findAll

List<SocialEquityAssetEntry> findAll(int start,
                                     int end,
                                     OrderByComparator orderByComparator)
                                     throws SystemException
Returns an ordered range of all the social equity asset entries.

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 asset entries
end - the upper bound of the range of social equity asset entries (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of social equity asset entries
Throws:
SystemException - if a system exception occurred

removeByAssetEntryId

void removeByAssetEntryId(long assetEntryId)
                          throws SystemException,
                                 NoSuchEquityAssetEntryException
Removes the social equity asset entry where assetEntryId = ? from the database.

Parameters:
assetEntryId - the asset entry ID
Throws:
SystemException - if a system exception occurred
NoSuchEquityAssetEntryException

removeAll

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

Throws:
SystemException - if a system exception occurred

countByAssetEntryId

int countByAssetEntryId(long assetEntryId)
                        throws SystemException
Returns the number of social equity asset entries where assetEntryId = ?.

Parameters:
assetEntryId - the asset entry ID
Returns:
the number of matching social equity asset entries
Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Returns the number of social equity asset entries.

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

remove

SocialEquityAssetEntry remove(SocialEquityAssetEntry socialEquityAssetEntry)
                              throws SystemException
Description copied from interface: BasePersistence
Removes the model instance from the database. Also notifies the appropriate model listeners.

Specified by:
remove in interface BasePersistence<SocialEquityAssetEntry>
Parameters:
socialEquityAssetEntry - the model instance to remove
Returns:
the model instance that was removed
Throws:
SystemException - if a system exception occurred

Liferay 6.1.0