Liferay 6.2.0-ce-m4

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

All Superinterfaces:
BasePersistence<SocialActivitySet>
All Known Implementing Classes:
SocialActivitySetPersistenceImpl

public interface SocialActivitySetPersistence
extends BasePersistence<SocialActivitySet>

The persistence interface for the social activity set service.

Caching information and settings can be found in portal.properties

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

Method Summary
 void cacheResult(List<SocialActivitySet> socialActivitySets)
          Caches the social activity sets in the entity cache if it is enabled.
 void cacheResult(SocialActivitySet socialActivitySet)
          Caches the social activity set in the entity cache if it is enabled.
 int countAll()
          Returns the number of social activity sets.
 SocialActivitySet create(long activitySetId)
          Creates a new social activity set with the primary key.
 SocialActivitySet fetchByPrimaryKey(long activitySetId)
          Returns the social activity set with the primary key or returns null if it could not be found.
 List<SocialActivitySet> findAll()
          Returns all the social activity sets.
 List<SocialActivitySet> findAll(int start, int end)
          Returns a range of all the social activity sets.
 List<SocialActivitySet> findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the social activity sets.
 SocialActivitySet findByPrimaryKey(long activitySetId)
          Returns the social activity set with the primary key or throws a NoSuchActivitySetException if it could not be found.
 SocialActivitySet remove(long activitySetId)
          Removes the social activity set with the primary key from the database.
 void removeAll()
          Removes all the social activity sets from the database.
 SocialActivitySet updateImpl(SocialActivitySet socialActivitySet)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getCurrentSession, getDataSource, getListeners, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update, update, update
 

Method Detail

cacheResult

void cacheResult(SocialActivitySet socialActivitySet)
Caches the social activity set in the entity cache if it is enabled.

Parameters:
socialActivitySet - the social activity set

cacheResult

void cacheResult(List<SocialActivitySet> socialActivitySets)
Caches the social activity sets in the entity cache if it is enabled.

Parameters:
socialActivitySets - the social activity sets

create

SocialActivitySet create(long activitySetId)
Creates a new social activity set with the primary key. Does not add the social activity set to the database.

Parameters:
activitySetId - the primary key for the new social activity set
Returns:
the new social activity set

remove

SocialActivitySet remove(long activitySetId)
                         throws SystemException,
                                NoSuchActivitySetException
Removes the social activity set with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
activitySetId - the primary key of the social activity set
Returns:
the social activity set that was removed
Throws:
NoSuchActivitySetException - if a social activity set with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

SocialActivitySet updateImpl(SocialActivitySet socialActivitySet)
                             throws SystemException
Throws:
SystemException

findByPrimaryKey

SocialActivitySet findByPrimaryKey(long activitySetId)
                                   throws SystemException,
                                          NoSuchActivitySetException
Returns the social activity set with the primary key or throws a NoSuchActivitySetException if it could not be found.

Parameters:
activitySetId - the primary key of the social activity set
Returns:
the social activity set
Throws:
NoSuchActivitySetException - if a social activity set with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

SocialActivitySet fetchByPrimaryKey(long activitySetId)
                                    throws SystemException
Returns the social activity set with the primary key or returns null if it could not be found.

Parameters:
activitySetId - the primary key of the social activity set
Returns:
the social activity set, or null if a social activity set with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findAll

List<SocialActivitySet> findAll()
                                throws SystemException
Returns all the social activity sets.

Returns:
the social activity sets
Throws:
SystemException - if a system exception occurred

findAll

List<SocialActivitySet> findAll(int start,
                                int end)
                                throws SystemException
Returns a range of all the social activity sets.

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

findAll

List<SocialActivitySet> findAll(int start,
                                int end,
                                OrderByComparator orderByComparator)
                                throws SystemException
Returns an ordered range of all the social activity sets.

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

removeAll

void removeAll()
               throws SystemException
Removes all the social activity sets from the database.

Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Returns the number of social activity sets.

Returns:
the number of social activity sets
Throws:
SystemException - if a system exception occurred

Liferay 6.2.0-ce-m4