|
Liferay 6.2.0-ce-m4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.liferay.portal.service.persistence.impl.BasePersistenceImpl<SocialActivitySet>
com.liferay.portlet.social.service.persistence.SocialActivitySetPersistenceImpl
public class SocialActivitySetPersistenceImpl
The persistence implementation for the social activity set service.
Caching information and settings can be found in portal.properties
SocialActivitySetPersistence,
SocialActivitySetUtil| Field Summary | |
|---|---|
static String |
FINDER_CLASS_NAME_ENTITY
|
static String |
FINDER_CLASS_NAME_LIST_WITH_PAGINATION
|
static String |
FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION
|
static FinderPath |
FINDER_PATH_COUNT_ALL
|
static FinderPath |
FINDER_PATH_WITH_PAGINATION_FIND_ALL
|
static FinderPath |
FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL
|
| Fields inherited from class com.liferay.portal.service.persistence.impl.BasePersistenceImpl |
|---|
COUNT_COLUMN_NAME, FINDER_ARGS_EMPTY, listeners, ORDER_BY_ASC, ORDER_BY_ASC_HAS_NEXT, ORDER_BY_CLAUSE, ORDER_BY_DESC, ORDER_BY_DESC_HAS_NEXT, WHERE_AND, WHERE_GREATER_THAN, WHERE_GREATER_THAN_HAS_NEXT, WHERE_LESSER_THAN, WHERE_LESSER_THAN_HAS_NEXT, WHERE_OR |
| Constructor Summary | |
|---|---|
SocialActivitySetPersistenceImpl()
|
|
| Method Summary | |
|---|---|
void |
afterPropertiesSet()
Initializes the social activity set persistence. |
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. |
void |
clearCache()
Clears the cache for all social activity sets. |
void |
clearCache(List<SocialActivitySet> socialActivitySets)
Clears the cache for a List instances of this model. |
void |
clearCache(SocialActivitySet socialActivitySet)
Clears the cache for the social activity set. |
int |
countAll()
Returns the number of social activity sets. |
SocialActivitySet |
create(long activitySetId)
Creates a new social activity set with the primary key. |
void |
destroy()
|
SocialActivitySet |
fetchByPrimaryKey(long activitySetId)
Returns the social activity set with the primary key or returns null if it could not be found. |
SocialActivitySet |
fetchByPrimaryKey(Serializable primaryKey)
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 |
findByPrimaryKey(Serializable primaryKey)
Returns the social activity set with the primary key or throws a NoSuchModelException if it could not be found. |
SocialActivitySet |
remove(long activitySetId)
Removes the social activity set with the primary key from the database. |
SocialActivitySet |
remove(Serializable primaryKey)
Removes the social activity set with the primary key from the database. |
void |
removeAll()
Removes all the social activity sets from the database. |
protected SocialActivitySet |
removeImpl(SocialActivitySet socialActivitySet)
Removes the model instance from the database. |
protected SocialActivitySet |
toUnwrappedModel(SocialActivitySet socialActivitySet)
|
SocialActivitySet |
updateImpl(SocialActivitySet socialActivitySet)
Updates the model instance in the database or adds it if it does not yet exist. |
| Methods inherited from class com.liferay.portal.service.persistence.impl.BasePersistenceImpl |
|---|
appendOrderByComparator, closeSession, countWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getCurrentSession, getDataSource, getDB, getDialect, getListeners, openNewSession, openSession, processException, registerListener, remove, removeConjunction, setDataSource, setSessionFactory, unregisterListener, update, update, update, update, updateImpl |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence |
|---|
closeSession, countWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getCurrentSession, getDataSource, getListeners, openSession, processException, registerListener, remove, setDataSource, unregisterListener, update, update, update, update |
| Field Detail |
|---|
public static final String FINDER_CLASS_NAME_ENTITY
public static final String FINDER_CLASS_NAME_LIST_WITH_PAGINATION
public static final String FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION
public static final FinderPath FINDER_PATH_WITH_PAGINATION_FIND_ALL
public static final FinderPath FINDER_PATH_WITHOUT_PAGINATION_FIND_ALL
public static final FinderPath FINDER_PATH_COUNT_ALL
| Constructor Detail |
|---|
public SocialActivitySetPersistenceImpl()
| Method Detail |
|---|
public void cacheResult(SocialActivitySet socialActivitySet)
cacheResult in interface SocialActivitySetPersistencesocialActivitySet - the social activity setpublic void cacheResult(List<SocialActivitySet> socialActivitySets)
cacheResult in interface SocialActivitySetPersistencesocialActivitySets - the social activity setspublic void clearCache()
The EntityCache and FinderCache are both cleared by this method.
clearCache in interface BasePersistence<SocialActivitySet>clearCache in class BasePersistenceImpl<SocialActivitySet>public void clearCache(SocialActivitySet socialActivitySet)
The EntityCache and FinderCache are both cleared by this method.
clearCache in interface BasePersistence<SocialActivitySet>clearCache in class BasePersistenceImpl<SocialActivitySet>socialActivitySet - the instance of this model to clear the cache forpublic void clearCache(List<SocialActivitySet> socialActivitySets)
BasePersistence
The EntityCache and FinderCache are both cleared by this
method.
clearCache in interface BasePersistence<SocialActivitySet>clearCache in class BasePersistenceImpl<SocialActivitySet>socialActivitySets - the List instances of this model to clear the cache forpublic SocialActivitySet create(long activitySetId)
create in interface SocialActivitySetPersistenceactivitySetId - the primary key for the new social activity set
public SocialActivitySet remove(long activitySetId)
throws NoSuchActivitySetException,
SystemException
remove in interface SocialActivitySetPersistenceactivitySetId - the primary key of the social activity set
NoSuchActivitySetException - if a social activity set with the primary key could not be found
SystemException - if a system exception occurred
public SocialActivitySet remove(Serializable primaryKey)
throws NoSuchActivitySetException,
SystemException
remove in interface BasePersistence<SocialActivitySet>remove in class BasePersistenceImpl<SocialActivitySet>primaryKey - the primary key of the social activity set
NoSuchActivitySetException - if a social activity set with the primary key could not be found
SystemException - if a system exception occurred
protected SocialActivitySet removeImpl(SocialActivitySet socialActivitySet)
throws SystemException
BasePersistenceImplBasePersistenceImpl.update(BaseModel,
boolean) depends on this method to implement the remove operation; it
only notifies the model listeners.
removeImpl in class BasePersistenceImpl<SocialActivitySet>socialActivitySet - the model instance to remove
SystemException - if a system exception occurred
public SocialActivitySet updateImpl(SocialActivitySet socialActivitySet)
throws SystemException
BasePersistenceImplBasePersistenceImpl.remove(BaseModel) depends on this method to implement the
update operation; it only notifies the model listeners.
updateImpl in interface SocialActivitySetPersistenceupdateImpl in class BasePersistenceImpl<SocialActivitySet>socialActivitySet - the model instance to update
SystemException - if a system exception occurredprotected SocialActivitySet toUnwrappedModel(SocialActivitySet socialActivitySet)
public SocialActivitySet findByPrimaryKey(Serializable primaryKey)
throws NoSuchActivitySetException,
SystemException
NoSuchModelException if it could not be found.
findByPrimaryKey in interface BasePersistence<SocialActivitySet>findByPrimaryKey in class BasePersistenceImpl<SocialActivitySet>primaryKey - the primary key of the social activity set
NoSuchActivitySetException - if a social activity set with the primary key could not be found
SystemException - if a system exception occurred
public SocialActivitySet findByPrimaryKey(long activitySetId)
throws NoSuchActivitySetException,
SystemException
NoSuchActivitySetException if it could not be found.
findByPrimaryKey in interface SocialActivitySetPersistenceactivitySetId - the primary key of the social activity set
NoSuchActivitySetException - if a social activity set with the primary key could not be found
SystemException - if a system exception occurred
public SocialActivitySet fetchByPrimaryKey(Serializable primaryKey)
throws SystemException
null if it could not be found.
fetchByPrimaryKey in interface BasePersistence<SocialActivitySet>fetchByPrimaryKey in class BasePersistenceImpl<SocialActivitySet>primaryKey - the primary key of the social activity set
null if a social activity set with the primary key could not be found
SystemException - if a system exception occurred
public SocialActivitySet fetchByPrimaryKey(long activitySetId)
throws SystemException
null if it could not be found.
fetchByPrimaryKey in interface SocialActivitySetPersistenceactivitySetId - the primary key of the social activity set
null if a social activity set with the primary key could not be found
SystemException - if a system exception occurred
public List<SocialActivitySet> findAll()
throws SystemException
findAll in interface SocialActivitySetPersistenceSystemException - if a system exception occurred
public List<SocialActivitySet> 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. 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.
findAll in interface SocialActivitySetPersistencestart - the lower bound of the range of social activity setsend - the upper bound of the range of social activity sets (not inclusive)
SystemException - if a system exception occurred
public List<SocialActivitySet> 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. 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.
findAll in interface SocialActivitySetPersistencestart - the lower bound of the range of social activity setsend - the upper bound of the range of social activity sets (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
SystemException - if a system exception occurred
public void removeAll()
throws SystemException
removeAll in interface SocialActivitySetPersistenceSystemException - if a system exception occurred
public int countAll()
throws SystemException
countAll in interface SocialActivitySetPersistenceSystemException - if a system exception occurredpublic void afterPropertiesSet()
public void destroy()
|
Liferay 6.2.0-ce-m4 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||