@ProviderType
public class SocialActivityUtil
extends Object
SocialActivityPersistenceImpl
and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.
Caching information and settings can be found in portal.properties
SocialActivityPersistence
,
SocialActivityPersistenceImpl
Constructor and Description |
---|
SocialActivityUtil() |
Modifier and Type | Method and Description |
---|---|
static void |
cacheResult(List<SocialActivity> socialActivities)
Caches the social activities in the entity cache if it is enabled.
|
static void |
cacheResult(SocialActivity socialActivity)
Caches the social activity in the entity cache if it is enabled.
|
static void |
clearCache() |
static void |
clearCache(SocialActivity socialActivity) |
static int |
countAll()
Returns the number of social activities.
|
static int |
countByActivitySetId(long activitySetId)
Returns the number of social activities where activitySetId = ?.
|
static int |
countByC_C_T(long classNameId,
long classPK,
int type)
Returns the number of social activities where classNameId = ? and classPK = ? and type = ?.
|
static int |
countByC_C(long classNameId,
long classPK)
Returns the number of social activities where classNameId = ? and classPK = ?.
|
static int |
countByClassNameId(long classNameId)
Returns the number of social activities where classNameId = ?.
|
static int |
countByCompanyId(long companyId)
Returns the number of social activities where companyId = ?.
|
static int |
countByG_U_C_C_T_R(long groupId,
long userId,
long classNameId,
long classPK,
int type,
long receiverUserId)
Returns the number of social activities where groupId = ? and userId = ? and classNameId = ? and classPK = ? and type = ? and receiverUserId = ?.
|
static int |
countByG_U_CD_C_C_T_R(long groupId,
long userId,
long createDate,
long classNameId,
long classPK,
int type,
long receiverUserId)
Returns the number of social activities where groupId = ? and userId = ? and createDate = ? and classNameId = ? and classPK = ? and type = ? and receiverUserId = ?.
|
static int |
countByGroupId(long groupId)
Returns the number of social activities where groupId = ?.
|
static int |
countByM_C_C(long mirrorActivityId,
long classNameId,
long classPK)
Returns the number of social activities where mirrorActivityId = ? and classNameId = ? and classPK = ?.
|
static int |
countByMirrorActivityId(long mirrorActivityId)
Returns the number of social activities where mirrorActivityId = ?.
|
static int |
countByReceiverUserId(long receiverUserId)
Returns the number of social activities where receiverUserId = ?.
|
static int |
countByUserId(long userId)
Returns the number of social activities where userId = ?.
|
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery) |
static SocialActivity |
create(long activityId)
Creates a new social activity with the primary key.
|
static SocialActivity |
fetchByActivitySetId_First(long activitySetId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where activitySetId = ?.
|
static SocialActivity |
fetchByActivitySetId_Last(long activitySetId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where activitySetId = ?.
|
static SocialActivity |
fetchByC_C_First(long classNameId,
long classPK,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where classNameId = ? and classPK = ?.
|
static SocialActivity |
fetchByC_C_Last(long classNameId,
long classPK,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where classNameId = ? and classPK = ?.
|
static SocialActivity |
fetchByC_C_T_First(long classNameId,
long classPK,
int type,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where classNameId = ? and classPK = ? and type = ?.
|
static SocialActivity |
fetchByC_C_T_Last(long classNameId,
long classPK,
int type,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where classNameId = ? and classPK = ? and type = ?.
|
static SocialActivity |
fetchByClassNameId_First(long classNameId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where classNameId = ?.
|
static SocialActivity |
fetchByClassNameId_Last(long classNameId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where classNameId = ?.
|
static SocialActivity |
fetchByCompanyId_First(long companyId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where companyId = ?.
|
static SocialActivity |
fetchByCompanyId_Last(long companyId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where companyId = ?.
|
static SocialActivity |
fetchByG_U_C_C_T_R_First(long groupId,
long userId,
long classNameId,
long classPK,
int type,
long receiverUserId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where groupId = ? and userId = ? and classNameId = ? and classPK = ? and type = ? and receiverUserId = ?.
|
static SocialActivity |
fetchByG_U_C_C_T_R_Last(long groupId,
long userId,
long classNameId,
long classPK,
int type,
long receiverUserId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where groupId = ? and userId = ? and classNameId = ? and classPK = ? and type = ? and receiverUserId = ?.
|
static SocialActivity |
fetchByG_U_CD_C_C_T_R(long groupId,
long userId,
long createDate,
long classNameId,
long classPK,
int type,
long receiverUserId)
Returns the social activity where groupId = ? and userId = ? and createDate = ? and classNameId = ? and classPK = ? and type = ? and receiverUserId = ? or returns
null if it could not be found. |
static SocialActivity |
fetchByG_U_CD_C_C_T_R(long groupId,
long userId,
long createDate,
long classNameId,
long classPK,
int type,
long receiverUserId,
boolean retrieveFromCache)
Returns the social activity where groupId = ? and userId = ? and createDate = ? and classNameId = ? and classPK = ? and type = ? and receiverUserId = ? or returns
null if it could not be found, optionally using the finder cache. |
static SocialActivity |
fetchByGroupId_First(long groupId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where groupId = ?.
|
static SocialActivity |
fetchByGroupId_Last(long groupId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where groupId = ?.
|
static SocialActivity |
fetchByM_C_C_First(long mirrorActivityId,
long classNameId,
long classPK,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where mirrorActivityId = ? and classNameId = ? and classPK = ?.
|
static SocialActivity |
fetchByM_C_C_Last(long mirrorActivityId,
long classNameId,
long classPK,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where mirrorActivityId = ? and classNameId = ? and classPK = ?.
|
static SocialActivity |
fetchByMirrorActivityId(long mirrorActivityId)
Returns the social activity where mirrorActivityId = ? or returns
null if it could not be found. |
static SocialActivity |
fetchByMirrorActivityId(long mirrorActivityId,
boolean retrieveFromCache)
Returns the social activity where mirrorActivityId = ? or returns
null if it could not be found, optionally using the finder cache. |
static SocialActivity |
fetchByPrimaryKey(long activityId)
Returns the social activity with the primary key or returns
null if it could not be found. |
static Map<Serializable,SocialActivity> |
fetchByPrimaryKeys(Set<Serializable> primaryKeys) |
static SocialActivity |
fetchByReceiverUserId_First(long receiverUserId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where receiverUserId = ?.
|
static SocialActivity |
fetchByReceiverUserId_Last(long receiverUserId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where receiverUserId = ?.
|
static SocialActivity |
fetchByUserId_First(long userId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where userId = ?.
|
static SocialActivity |
fetchByUserId_Last(long userId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where userId = ?.
|
static List<SocialActivity> |
findAll()
Returns all the social activities.
|
static List<SocialActivity> |
findAll(int start,
int end)
Returns a range of all the social activities.
|
static List<SocialActivity> |
findAll(int start,
int end,
OrderByComparator<SocialActivity> orderByComparator)
Returns an ordered range of all the social activities.
|
static List<SocialActivity> |
findAll(int start,
int end,
OrderByComparator<SocialActivity> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the social activities.
|
static SocialActivity |
findByActivitySetId_First(long activitySetId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where activitySetId = ?.
|
static SocialActivity |
findByActivitySetId_Last(long activitySetId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where activitySetId = ?.
|
static SocialActivity[] |
findByActivitySetId_PrevAndNext(long activityId,
long activitySetId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the social activities before and after the current social activity in the ordered set where activitySetId = ?.
|
static List<SocialActivity> |
findByActivitySetId(long activitySetId)
Returns all the social activities where activitySetId = ?.
|
static List<SocialActivity> |
findByActivitySetId(long activitySetId,
int start,
int end)
Returns a range of all the social activities where activitySetId = ?.
|
static List<SocialActivity> |
findByActivitySetId(long activitySetId,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator)
Returns an ordered range of all the social activities where activitySetId = ?.
|
static List<SocialActivity> |
findByActivitySetId(long activitySetId,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the social activities where activitySetId = ?.
|
static SocialActivity |
findByC_C_First(long classNameId,
long classPK,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where classNameId = ? and classPK = ?.
|
static SocialActivity |
findByC_C_Last(long classNameId,
long classPK,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where classNameId = ? and classPK = ?.
|
static SocialActivity[] |
findByC_C_PrevAndNext(long activityId,
long classNameId,
long classPK,
OrderByComparator<SocialActivity> orderByComparator)
Returns the social activities before and after the current social activity in the ordered set where classNameId = ? and classPK = ?.
|
static SocialActivity |
findByC_C_T_First(long classNameId,
long classPK,
int type,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where classNameId = ? and classPK = ? and type = ?.
|
static SocialActivity |
findByC_C_T_Last(long classNameId,
long classPK,
int type,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where classNameId = ? and classPK = ? and type = ?.
|
static SocialActivity[] |
findByC_C_T_PrevAndNext(long activityId,
long classNameId,
long classPK,
int type,
OrderByComparator<SocialActivity> orderByComparator)
Returns the social activities before and after the current social activity in the ordered set where classNameId = ? and classPK = ? and type = ?.
|
static List<SocialActivity> |
findByC_C_T(long classNameId,
long classPK,
int type)
Returns all the social activities where classNameId = ? and classPK = ? and type = ?.
|
static List<SocialActivity> |
findByC_C_T(long classNameId,
long classPK,
int type,
int start,
int end)
Returns a range of all the social activities where classNameId = ? and classPK = ? and type = ?.
|
static List<SocialActivity> |
findByC_C_T(long classNameId,
long classPK,
int type,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator)
Returns an ordered range of all the social activities where classNameId = ? and classPK = ? and type = ?.
|
static List<SocialActivity> |
findByC_C_T(long classNameId,
long classPK,
int type,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the social activities where classNameId = ? and classPK = ? and type = ?.
|
static List<SocialActivity> |
findByC_C(long classNameId,
long classPK)
Returns all the social activities where classNameId = ? and classPK = ?.
|
static List<SocialActivity> |
findByC_C(long classNameId,
long classPK,
int start,
int end)
Returns a range of all the social activities where classNameId = ? and classPK = ?.
|
static List<SocialActivity> |
findByC_C(long classNameId,
long classPK,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator)
Returns an ordered range of all the social activities where classNameId = ? and classPK = ?.
|
static List<SocialActivity> |
findByC_C(long classNameId,
long classPK,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the social activities where classNameId = ? and classPK = ?.
|
static SocialActivity |
findByClassNameId_First(long classNameId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where classNameId = ?.
|
static SocialActivity |
findByClassNameId_Last(long classNameId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where classNameId = ?.
|
static SocialActivity[] |
findByClassNameId_PrevAndNext(long activityId,
long classNameId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the social activities before and after the current social activity in the ordered set where classNameId = ?.
|
static List<SocialActivity> |
findByClassNameId(long classNameId)
Returns all the social activities where classNameId = ?.
|
static List<SocialActivity> |
findByClassNameId(long classNameId,
int start,
int end)
Returns a range of all the social activities where classNameId = ?.
|
static List<SocialActivity> |
findByClassNameId(long classNameId,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator)
Returns an ordered range of all the social activities where classNameId = ?.
|
static List<SocialActivity> |
findByClassNameId(long classNameId,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the social activities where classNameId = ?.
|
static SocialActivity |
findByCompanyId_First(long companyId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where companyId = ?.
|
static SocialActivity |
findByCompanyId_Last(long companyId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where companyId = ?.
|
static SocialActivity[] |
findByCompanyId_PrevAndNext(long activityId,
long companyId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the social activities before and after the current social activity in the ordered set where companyId = ?.
|
static List<SocialActivity> |
findByCompanyId(long companyId)
Returns all the social activities where companyId = ?.
|
static List<SocialActivity> |
findByCompanyId(long companyId,
int start,
int end)
Returns a range of all the social activities where companyId = ?.
|
static List<SocialActivity> |
findByCompanyId(long companyId,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator)
Returns an ordered range of all the social activities where companyId = ?.
|
static List<SocialActivity> |
findByCompanyId(long companyId,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the social activities where companyId = ?.
|
static SocialActivity |
findByG_U_C_C_T_R_First(long groupId,
long userId,
long classNameId,
long classPK,
int type,
long receiverUserId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where groupId = ? and userId = ? and classNameId = ? and classPK = ? and type = ? and receiverUserId = ?.
|
static SocialActivity |
findByG_U_C_C_T_R_Last(long groupId,
long userId,
long classNameId,
long classPK,
int type,
long receiverUserId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where groupId = ? and userId = ? and classNameId = ? and classPK = ? and type = ? and receiverUserId = ?.
|
static SocialActivity[] |
findByG_U_C_C_T_R_PrevAndNext(long activityId,
long groupId,
long userId,
long classNameId,
long classPK,
int type,
long receiverUserId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the social activities before and after the current social activity in the ordered set where groupId = ? and userId = ? and classNameId = ? and classPK = ? and type = ? and receiverUserId = ?.
|
static List<SocialActivity> |
findByG_U_C_C_T_R(long groupId,
long userId,
long classNameId,
long classPK,
int type,
long receiverUserId)
Returns all the social activities where groupId = ? and userId = ? and classNameId = ? and classPK = ? and type = ? and receiverUserId = ?.
|
static List<SocialActivity> |
findByG_U_C_C_T_R(long groupId,
long userId,
long classNameId,
long classPK,
int type,
long receiverUserId,
int start,
int end)
Returns a range of all the social activities where groupId = ? and userId = ? and classNameId = ? and classPK = ? and type = ? and receiverUserId = ?.
|
static List<SocialActivity> |
findByG_U_C_C_T_R(long groupId,
long userId,
long classNameId,
long classPK,
int type,
long receiverUserId,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator)
Returns an ordered range of all the social activities where groupId = ? and userId = ? and classNameId = ? and classPK = ? and type = ? and receiverUserId = ?.
|
static List<SocialActivity> |
findByG_U_C_C_T_R(long groupId,
long userId,
long classNameId,
long classPK,
int type,
long receiverUserId,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the social activities where groupId = ? and userId = ? and classNameId = ? and classPK = ? and type = ? and receiverUserId = ?.
|
static SocialActivity |
findByG_U_CD_C_C_T_R(long groupId,
long userId,
long createDate,
long classNameId,
long classPK,
int type,
long receiverUserId)
Returns the social activity where groupId = ? and userId = ? and createDate = ? and classNameId = ? and classPK = ? and type = ? and receiverUserId = ? or throws a
NoSuchActivityException if it could not be found. |
static SocialActivity |
findByGroupId_First(long groupId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where groupId = ?.
|
static SocialActivity |
findByGroupId_Last(long groupId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where groupId = ?.
|
static SocialActivity[] |
findByGroupId_PrevAndNext(long activityId,
long groupId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the social activities before and after the current social activity in the ordered set where groupId = ?.
|
static List<SocialActivity> |
findByGroupId(long groupId)
Returns all the social activities where groupId = ?.
|
static List<SocialActivity> |
findByGroupId(long groupId,
int start,
int end)
Returns a range of all the social activities where groupId = ?.
|
static List<SocialActivity> |
findByGroupId(long groupId,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator)
Returns an ordered range of all the social activities where groupId = ?.
|
static List<SocialActivity> |
findByGroupId(long groupId,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the social activities where groupId = ?.
|
static SocialActivity |
findByM_C_C_First(long mirrorActivityId,
long classNameId,
long classPK,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where mirrorActivityId = ? and classNameId = ? and classPK = ?.
|
static SocialActivity |
findByM_C_C_Last(long mirrorActivityId,
long classNameId,
long classPK,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where mirrorActivityId = ? and classNameId = ? and classPK = ?.
|
static SocialActivity[] |
findByM_C_C_PrevAndNext(long activityId,
long mirrorActivityId,
long classNameId,
long classPK,
OrderByComparator<SocialActivity> orderByComparator)
Returns the social activities before and after the current social activity in the ordered set where mirrorActivityId = ? and classNameId = ? and classPK = ?.
|
static List<SocialActivity> |
findByM_C_C(long mirrorActivityId,
long classNameId,
long classPK)
Returns all the social activities where mirrorActivityId = ? and classNameId = ? and classPK = ?.
|
static List<SocialActivity> |
findByM_C_C(long mirrorActivityId,
long classNameId,
long classPK,
int start,
int end)
Returns a range of all the social activities where mirrorActivityId = ? and classNameId = ? and classPK = ?.
|
static List<SocialActivity> |
findByM_C_C(long mirrorActivityId,
long classNameId,
long classPK,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator)
Returns an ordered range of all the social activities where mirrorActivityId = ? and classNameId = ? and classPK = ?.
|
static List<SocialActivity> |
findByM_C_C(long mirrorActivityId,
long classNameId,
long classPK,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the social activities where mirrorActivityId = ? and classNameId = ? and classPK = ?.
|
static SocialActivity |
findByMirrorActivityId(long mirrorActivityId)
Returns the social activity where mirrorActivityId = ? or throws a
NoSuchActivityException if it could not be found. |
static SocialActivity |
findByPrimaryKey(long activityId)
Returns the social activity with the primary key or throws a
NoSuchActivityException if it could not be found. |
static SocialActivity |
findByReceiverUserId_First(long receiverUserId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where receiverUserId = ?.
|
static SocialActivity |
findByReceiverUserId_Last(long receiverUserId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where receiverUserId = ?.
|
static SocialActivity[] |
findByReceiverUserId_PrevAndNext(long activityId,
long receiverUserId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the social activities before and after the current social activity in the ordered set where receiverUserId = ?.
|
static List<SocialActivity> |
findByReceiverUserId(long receiverUserId)
Returns all the social activities where receiverUserId = ?.
|
static List<SocialActivity> |
findByReceiverUserId(long receiverUserId,
int start,
int end)
Returns a range of all the social activities where receiverUserId = ?.
|
static List<SocialActivity> |
findByReceiverUserId(long receiverUserId,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator)
Returns an ordered range of all the social activities where receiverUserId = ?.
|
static List<SocialActivity> |
findByReceiverUserId(long receiverUserId,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the social activities where receiverUserId = ?.
|
static SocialActivity |
findByUserId_First(long userId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the first social activity in the ordered set where userId = ?.
|
static SocialActivity |
findByUserId_Last(long userId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the last social activity in the ordered set where userId = ?.
|
static SocialActivity[] |
findByUserId_PrevAndNext(long activityId,
long userId,
OrderByComparator<SocialActivity> orderByComparator)
Returns the social activities before and after the current social activity in the ordered set where userId = ?.
|
static List<SocialActivity> |
findByUserId(long userId)
Returns all the social activities where userId = ?.
|
static List<SocialActivity> |
findByUserId(long userId,
int start,
int end)
Returns a range of all the social activities where userId = ?.
|
static List<SocialActivity> |
findByUserId(long userId,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator)
Returns an ordered range of all the social activities where userId = ?.
|
static List<SocialActivity> |
findByUserId(long userId,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the social activities where userId = ?.
|
static List<SocialActivity> |
findWithDynamicQuery(DynamicQuery dynamicQuery) |
static List<SocialActivity> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end) |
static List<SocialActivity> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<SocialActivity> orderByComparator) |
static Set<String> |
getBadColumnNames() |
static SocialActivityPersistence |
getPersistence() |
static SocialActivity |
remove(long activityId)
Removes the social activity with the primary key from the database.
|
static void |
removeAll()
Removes all the social activities from the database.
|
static void |
removeByActivitySetId(long activitySetId)
Removes all the social activities where activitySetId = ? from the database.
|
static void |
removeByC_C_T(long classNameId,
long classPK,
int type)
Removes all the social activities where classNameId = ? and classPK = ? and type = ? from the database.
|
static void |
removeByC_C(long classNameId,
long classPK)
Removes all the social activities where classNameId = ? and classPK = ? from the database.
|
static void |
removeByClassNameId(long classNameId)
Removes all the social activities where classNameId = ? from the database.
|
static void |
removeByCompanyId(long companyId)
Removes all the social activities where companyId = ? from the database.
|
static void |
removeByG_U_C_C_T_R(long groupId,
long userId,
long classNameId,
long classPK,
int type,
long receiverUserId)
Removes all the social activities where groupId = ? and userId = ? and classNameId = ? and classPK = ? and type = ? and receiverUserId = ? from the database.
|
static SocialActivity |
removeByG_U_CD_C_C_T_R(long groupId,
long userId,
long createDate,
long classNameId,
long classPK,
int type,
long receiverUserId)
Removes the social activity where groupId = ? and userId = ? and createDate = ? and classNameId = ? and classPK = ? and type = ? and receiverUserId = ? from the database.
|
static void |
removeByGroupId(long groupId)
Removes all the social activities where groupId = ? from the database.
|
static void |
removeByM_C_C(long mirrorActivityId,
long classNameId,
long classPK)
Removes all the social activities where mirrorActivityId = ? and classNameId = ? and classPK = ? from the database.
|
static SocialActivity |
removeByMirrorActivityId(long mirrorActivityId)
Removes the social activity where mirrorActivityId = ? from the database.
|
static void |
removeByReceiverUserId(long receiverUserId)
Removes all the social activities where receiverUserId = ? from the database.
|
static void |
removeByUserId(long userId)
Removes all the social activities where userId = ? from the database.
|
static SocialActivity |
update(SocialActivity socialActivity) |
static SocialActivity |
update(SocialActivity socialActivity,
ServiceContext serviceContext) |
static SocialActivity |
updateImpl(SocialActivity socialActivity) |
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(SocialActivity socialActivity)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
public static List<SocialActivity> findWithDynamicQuery(DynamicQuery dynamicQuery)
public static List<SocialActivity> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
public static List<SocialActivity> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<SocialActivity> orderByComparator)
public static SocialActivity update(SocialActivity socialActivity)
public static SocialActivity update(SocialActivity socialActivity, ServiceContext serviceContext)
public static List<SocialActivity> findByGroupId(long groupId)
groupId
- the group IDpublic static List<SocialActivity> findByGroupId(long groupId, int start, int end)
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 SocialActivityModelImpl
. 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.
groupId
- the group IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)public static List<SocialActivity> findByGroupId(long groupId, int start, int end, OrderByComparator<SocialActivity> orderByComparator)
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 SocialActivityModelImpl
. 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.
groupId
- the group IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<SocialActivity> findByGroupId(long groupId, int start, int end, OrderByComparator<SocialActivity> orderByComparator, boolean retrieveFromCache)
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 SocialActivityModelImpl
. 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.
groupId
- the group IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static SocialActivity findByGroupId_First(long groupId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByGroupId_First(long groupId, OrderByComparator<SocialActivity> orderByComparator)
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity findByGroupId_Last(long groupId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByGroupId_Last(long groupId, OrderByComparator<SocialActivity> orderByComparator)
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity[] findByGroupId_PrevAndNext(long activityId, long groupId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
activityId
- the primary key of the current social activitygroupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a social activity with the primary key could not be foundpublic static void removeByGroupId(long groupId)
groupId
- the group IDpublic static int countByGroupId(long groupId)
groupId
- the group IDpublic static List<SocialActivity> findByCompanyId(long companyId)
companyId
- the company IDpublic static List<SocialActivity> findByCompanyId(long companyId, int start, int end)
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 SocialActivityModelImpl
. 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.
companyId
- the company IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)public static List<SocialActivity> findByCompanyId(long companyId, int start, int end, OrderByComparator<SocialActivity> orderByComparator)
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 SocialActivityModelImpl
. 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.
companyId
- the company IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<SocialActivity> findByCompanyId(long companyId, int start, int end, OrderByComparator<SocialActivity> orderByComparator, boolean retrieveFromCache)
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 SocialActivityModelImpl
. 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.
companyId
- the company IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static SocialActivity findByCompanyId_First(long companyId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByCompanyId_First(long companyId, OrderByComparator<SocialActivity> orderByComparator)
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity findByCompanyId_Last(long companyId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByCompanyId_Last(long companyId, OrderByComparator<SocialActivity> orderByComparator)
companyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity[] findByCompanyId_PrevAndNext(long activityId, long companyId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
activityId
- the primary key of the current social activitycompanyId
- the company IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a social activity with the primary key could not be foundpublic static void removeByCompanyId(long companyId)
companyId
- the company IDpublic static int countByCompanyId(long companyId)
companyId
- the company IDpublic static List<SocialActivity> findByUserId(long userId)
userId
- the user IDpublic static List<SocialActivity> findByUserId(long userId, int start, int end)
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 SocialActivityModelImpl
. 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.
userId
- the user IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)public static List<SocialActivity> findByUserId(long userId, int start, int end, OrderByComparator<SocialActivity> orderByComparator)
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 SocialActivityModelImpl
. 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.
userId
- the user IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<SocialActivity> findByUserId(long userId, int start, int end, OrderByComparator<SocialActivity> orderByComparator, boolean retrieveFromCache)
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 SocialActivityModelImpl
. 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.
userId
- the user IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static SocialActivity findByUserId_First(long userId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByUserId_First(long userId, OrderByComparator<SocialActivity> orderByComparator)
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity findByUserId_Last(long userId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByUserId_Last(long userId, OrderByComparator<SocialActivity> orderByComparator)
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity[] findByUserId_PrevAndNext(long activityId, long userId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
activityId
- the primary key of the current social activityuserId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a social activity with the primary key could not be foundpublic static void removeByUserId(long userId)
userId
- the user IDpublic static int countByUserId(long userId)
userId
- the user IDpublic static List<SocialActivity> findByActivitySetId(long activitySetId)
activitySetId
- the activity set IDpublic static List<SocialActivity> findByActivitySetId(long activitySetId, int start, int end)
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 SocialActivityModelImpl
. 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.
activitySetId
- the activity set IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)public static List<SocialActivity> findByActivitySetId(long activitySetId, int start, int end, OrderByComparator<SocialActivity> orderByComparator)
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 SocialActivityModelImpl
. 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.
activitySetId
- the activity set IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<SocialActivity> findByActivitySetId(long activitySetId, int start, int end, OrderByComparator<SocialActivity> orderByComparator, boolean retrieveFromCache)
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 SocialActivityModelImpl
. 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.
activitySetId
- the activity set IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static SocialActivity findByActivitySetId_First(long activitySetId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
activitySetId
- the activity set IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByActivitySetId_First(long activitySetId, OrderByComparator<SocialActivity> orderByComparator)
activitySetId
- the activity set IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity findByActivitySetId_Last(long activitySetId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
activitySetId
- the activity set IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByActivitySetId_Last(long activitySetId, OrderByComparator<SocialActivity> orderByComparator)
activitySetId
- the activity set IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity[] findByActivitySetId_PrevAndNext(long activityId, long activitySetId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
activityId
- the primary key of the current social activityactivitySetId
- the activity set IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a social activity with the primary key could not be foundpublic static void removeByActivitySetId(long activitySetId)
activitySetId
- the activity set IDpublic static int countByActivitySetId(long activitySetId)
activitySetId
- the activity set IDpublic static SocialActivity findByMirrorActivityId(long mirrorActivityId) throws NoSuchActivityException
NoSuchActivityException
if it could not be found.mirrorActivityId
- the mirror activity IDNoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByMirrorActivityId(long mirrorActivityId)
null
if it could not be found. Uses the finder cache.mirrorActivityId
- the mirror activity IDnull
if a matching social activity could not be foundpublic static SocialActivity fetchByMirrorActivityId(long mirrorActivityId, boolean retrieveFromCache)
null
if it could not be found, optionally using the finder cache.mirrorActivityId
- the mirror activity IDretrieveFromCache
- whether to retrieve from the finder cachenull
if a matching social activity could not be foundpublic static SocialActivity removeByMirrorActivityId(long mirrorActivityId) throws NoSuchActivityException
mirrorActivityId
- the mirror activity IDNoSuchActivityException
public static int countByMirrorActivityId(long mirrorActivityId)
mirrorActivityId
- the mirror activity IDpublic static List<SocialActivity> findByClassNameId(long classNameId)
classNameId
- the class name IDpublic static List<SocialActivity> findByClassNameId(long classNameId, int start, int end)
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 SocialActivityModelImpl
. 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.
classNameId
- the class name IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)public static List<SocialActivity> findByClassNameId(long classNameId, int start, int end, OrderByComparator<SocialActivity> orderByComparator)
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 SocialActivityModelImpl
. 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.
classNameId
- the class name IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<SocialActivity> findByClassNameId(long classNameId, int start, int end, OrderByComparator<SocialActivity> orderByComparator, boolean retrieveFromCache)
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 SocialActivityModelImpl
. 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.
classNameId
- the class name IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static SocialActivity findByClassNameId_First(long classNameId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
classNameId
- the class name IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByClassNameId_First(long classNameId, OrderByComparator<SocialActivity> orderByComparator)
classNameId
- the class name IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity findByClassNameId_Last(long classNameId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
classNameId
- the class name IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByClassNameId_Last(long classNameId, OrderByComparator<SocialActivity> orderByComparator)
classNameId
- the class name IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity[] findByClassNameId_PrevAndNext(long activityId, long classNameId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
activityId
- the primary key of the current social activityclassNameId
- the class name IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a social activity with the primary key could not be foundpublic static void removeByClassNameId(long classNameId)
classNameId
- the class name IDpublic static int countByClassNameId(long classNameId)
classNameId
- the class name IDpublic static List<SocialActivity> findByReceiverUserId(long receiverUserId)
receiverUserId
- the receiver user IDpublic static List<SocialActivity> findByReceiverUserId(long receiverUserId, int start, int end)
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 SocialActivityModelImpl
. 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.
receiverUserId
- the receiver user IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)public static List<SocialActivity> findByReceiverUserId(long receiverUserId, int start, int end, OrderByComparator<SocialActivity> orderByComparator)
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 SocialActivityModelImpl
. 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.
receiverUserId
- the receiver user IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<SocialActivity> findByReceiverUserId(long receiverUserId, int start, int end, OrderByComparator<SocialActivity> orderByComparator, boolean retrieveFromCache)
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 SocialActivityModelImpl
. 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.
receiverUserId
- the receiver user IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static SocialActivity findByReceiverUserId_First(long receiverUserId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
receiverUserId
- the receiver user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByReceiverUserId_First(long receiverUserId, OrderByComparator<SocialActivity> orderByComparator)
receiverUserId
- the receiver user IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity findByReceiverUserId_Last(long receiverUserId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
receiverUserId
- the receiver user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByReceiverUserId_Last(long receiverUserId, OrderByComparator<SocialActivity> orderByComparator)
receiverUserId
- the receiver user IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity[] findByReceiverUserId_PrevAndNext(long activityId, long receiverUserId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
activityId
- the primary key of the current social activityreceiverUserId
- the receiver user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a social activity with the primary key could not be foundpublic static void removeByReceiverUserId(long receiverUserId)
receiverUserId
- the receiver user IDpublic static int countByReceiverUserId(long receiverUserId)
receiverUserId
- the receiver user IDpublic static List<SocialActivity> findByC_C(long classNameId, long classPK)
classNameId
- the class name IDclassPK
- the class pkpublic static List<SocialActivity> findByC_C(long classNameId, long classPK, int start, int end)
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 SocialActivityModelImpl
. 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.
classNameId
- the class name IDclassPK
- the class pkstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)public static List<SocialActivity> findByC_C(long classNameId, long classPK, int start, int end, OrderByComparator<SocialActivity> orderByComparator)
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 SocialActivityModelImpl
. 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.
classNameId
- the class name IDclassPK
- the class pkstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<SocialActivity> findByC_C(long classNameId, long classPK, int start, int end, OrderByComparator<SocialActivity> orderByComparator, boolean retrieveFromCache)
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 SocialActivityModelImpl
. 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.
classNameId
- the class name IDclassPK
- the class pkstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static SocialActivity findByC_C_First(long classNameId, long classPK, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
classNameId
- the class name IDclassPK
- the class pkorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByC_C_First(long classNameId, long classPK, OrderByComparator<SocialActivity> orderByComparator)
classNameId
- the class name IDclassPK
- the class pkorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity findByC_C_Last(long classNameId, long classPK, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
classNameId
- the class name IDclassPK
- the class pkorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByC_C_Last(long classNameId, long classPK, OrderByComparator<SocialActivity> orderByComparator)
classNameId
- the class name IDclassPK
- the class pkorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity[] findByC_C_PrevAndNext(long activityId, long classNameId, long classPK, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
activityId
- the primary key of the current social activityclassNameId
- the class name IDclassPK
- the class pkorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a social activity with the primary key could not be foundpublic static void removeByC_C(long classNameId, long classPK)
classNameId
- the class name IDclassPK
- the class pkpublic static int countByC_C(long classNameId, long classPK)
classNameId
- the class name IDclassPK
- the class pkpublic static List<SocialActivity> findByM_C_C(long mirrorActivityId, long classNameId, long classPK)
mirrorActivityId
- the mirror activity IDclassNameId
- the class name IDclassPK
- the class pkpublic static List<SocialActivity> findByM_C_C(long mirrorActivityId, long classNameId, long classPK, int start, int end)
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 SocialActivityModelImpl
. 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.
mirrorActivityId
- the mirror activity IDclassNameId
- the class name IDclassPK
- the class pkstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)public static List<SocialActivity> findByM_C_C(long mirrorActivityId, long classNameId, long classPK, int start, int end, OrderByComparator<SocialActivity> orderByComparator)
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 SocialActivityModelImpl
. 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.
mirrorActivityId
- the mirror activity IDclassNameId
- the class name IDclassPK
- the class pkstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<SocialActivity> findByM_C_C(long mirrorActivityId, long classNameId, long classPK, int start, int end, OrderByComparator<SocialActivity> orderByComparator, boolean retrieveFromCache)
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 SocialActivityModelImpl
. 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.
mirrorActivityId
- the mirror activity IDclassNameId
- the class name IDclassPK
- the class pkstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static SocialActivity findByM_C_C_First(long mirrorActivityId, long classNameId, long classPK, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
mirrorActivityId
- the mirror activity IDclassNameId
- the class name IDclassPK
- the class pkorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByM_C_C_First(long mirrorActivityId, long classNameId, long classPK, OrderByComparator<SocialActivity> orderByComparator)
mirrorActivityId
- the mirror activity IDclassNameId
- the class name IDclassPK
- the class pkorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity findByM_C_C_Last(long mirrorActivityId, long classNameId, long classPK, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
mirrorActivityId
- the mirror activity IDclassNameId
- the class name IDclassPK
- the class pkorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByM_C_C_Last(long mirrorActivityId, long classNameId, long classPK, OrderByComparator<SocialActivity> orderByComparator)
mirrorActivityId
- the mirror activity IDclassNameId
- the class name IDclassPK
- the class pkorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity[] findByM_C_C_PrevAndNext(long activityId, long mirrorActivityId, long classNameId, long classPK, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
activityId
- the primary key of the current social activitymirrorActivityId
- the mirror activity IDclassNameId
- the class name IDclassPK
- the class pkorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a social activity with the primary key could not be foundpublic static void removeByM_C_C(long mirrorActivityId, long classNameId, long classPK)
mirrorActivityId
- the mirror activity IDclassNameId
- the class name IDclassPK
- the class pkpublic static int countByM_C_C(long mirrorActivityId, long classNameId, long classPK)
mirrorActivityId
- the mirror activity IDclassNameId
- the class name IDclassPK
- the class pkpublic static List<SocialActivity> findByC_C_T(long classNameId, long classPK, int type)
classNameId
- the class name IDclassPK
- the class pktype
- the typepublic static List<SocialActivity> findByC_C_T(long classNameId, long classPK, int type, int start, int end)
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 SocialActivityModelImpl
. 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.
classNameId
- the class name IDclassPK
- the class pktype
- the typestart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)public static List<SocialActivity> findByC_C_T(long classNameId, long classPK, int type, int start, int end, OrderByComparator<SocialActivity> orderByComparator)
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 SocialActivityModelImpl
. 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.
classNameId
- the class name IDclassPK
- the class pktype
- the typestart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<SocialActivity> findByC_C_T(long classNameId, long classPK, int type, int start, int end, OrderByComparator<SocialActivity> orderByComparator, boolean retrieveFromCache)
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 SocialActivityModelImpl
. 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.
classNameId
- the class name IDclassPK
- the class pktype
- the typestart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static SocialActivity findByC_C_T_First(long classNameId, long classPK, int type, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
classNameId
- the class name IDclassPK
- the class pktype
- the typeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByC_C_T_First(long classNameId, long classPK, int type, OrderByComparator<SocialActivity> orderByComparator)
classNameId
- the class name IDclassPK
- the class pktype
- the typeorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity findByC_C_T_Last(long classNameId, long classPK, int type, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
classNameId
- the class name IDclassPK
- the class pktype
- the typeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByC_C_T_Last(long classNameId, long classPK, int type, OrderByComparator<SocialActivity> orderByComparator)
classNameId
- the class name IDclassPK
- the class pktype
- the typeorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity[] findByC_C_T_PrevAndNext(long activityId, long classNameId, long classPK, int type, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
activityId
- the primary key of the current social activityclassNameId
- the class name IDclassPK
- the class pktype
- the typeorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a social activity with the primary key could not be foundpublic static void removeByC_C_T(long classNameId, long classPK, int type)
classNameId
- the class name IDclassPK
- the class pktype
- the typepublic static int countByC_C_T(long classNameId, long classPK, int type)
classNameId
- the class name IDclassPK
- the class pktype
- the typepublic static List<SocialActivity> findByG_U_C_C_T_R(long groupId, long userId, long classNameId, long classPK, int type, long receiverUserId)
groupId
- the group IDuserId
- the user IDclassNameId
- the class name IDclassPK
- the class pktype
- the typereceiverUserId
- the receiver user IDpublic static List<SocialActivity> findByG_U_C_C_T_R(long groupId, long userId, long classNameId, long classPK, int type, long receiverUserId, int start, int end)
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 SocialActivityModelImpl
. 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.
groupId
- the group IDuserId
- the user IDclassNameId
- the class name IDclassPK
- the class pktype
- the typereceiverUserId
- the receiver user IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)public static List<SocialActivity> findByG_U_C_C_T_R(long groupId, long userId, long classNameId, long classPK, int type, long receiverUserId, int start, int end, OrderByComparator<SocialActivity> orderByComparator)
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 SocialActivityModelImpl
. 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.
groupId
- the group IDuserId
- the user IDclassNameId
- the class name IDclassPK
- the class pktype
- the typereceiverUserId
- the receiver user IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<SocialActivity> findByG_U_C_C_T_R(long groupId, long userId, long classNameId, long classPK, int type, long receiverUserId, int start, int end, OrderByComparator<SocialActivity> orderByComparator, boolean retrieveFromCache)
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 SocialActivityModelImpl
. 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.
groupId
- the group IDuserId
- the user IDclassNameId
- the class name IDclassPK
- the class pktype
- the typereceiverUserId
- the receiver user IDstart
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static SocialActivity findByG_U_C_C_T_R_First(long groupId, long userId, long classNameId, long classPK, int type, long receiverUserId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
groupId
- the group IDuserId
- the user IDclassNameId
- the class name IDclassPK
- the class pktype
- the typereceiverUserId
- the receiver user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByG_U_C_C_T_R_First(long groupId, long userId, long classNameId, long classPK, int type, long receiverUserId, OrderByComparator<SocialActivity> orderByComparator)
groupId
- the group IDuserId
- the user IDclassNameId
- the class name IDclassPK
- the class pktype
- the typereceiverUserId
- the receiver user IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity findByG_U_C_C_T_R_Last(long groupId, long userId, long classNameId, long classPK, int type, long receiverUserId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
groupId
- the group IDuserId
- the user IDclassNameId
- the class name IDclassPK
- the class pktype
- the typereceiverUserId
- the receiver user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByG_U_C_C_T_R_Last(long groupId, long userId, long classNameId, long classPK, int type, long receiverUserId, OrderByComparator<SocialActivity> orderByComparator)
groupId
- the group IDuserId
- the user IDclassNameId
- the class name IDclassPK
- the class pktype
- the typereceiverUserId
- the receiver user IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching social activity could not be foundpublic static SocialActivity[] findByG_U_C_C_T_R_PrevAndNext(long activityId, long groupId, long userId, long classNameId, long classPK, int type, long receiverUserId, OrderByComparator<SocialActivity> orderByComparator) throws NoSuchActivityException
activityId
- the primary key of the current social activitygroupId
- the group IDuserId
- the user IDclassNameId
- the class name IDclassPK
- the class pktype
- the typereceiverUserId
- the receiver user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchActivityException
- if a social activity with the primary key could not be foundpublic static void removeByG_U_C_C_T_R(long groupId, long userId, long classNameId, long classPK, int type, long receiverUserId)
groupId
- the group IDuserId
- the user IDclassNameId
- the class name IDclassPK
- the class pktype
- the typereceiverUserId
- the receiver user IDpublic static int countByG_U_C_C_T_R(long groupId, long userId, long classNameId, long classPK, int type, long receiverUserId)
groupId
- the group IDuserId
- the user IDclassNameId
- the class name IDclassPK
- the class pktype
- the typereceiverUserId
- the receiver user IDpublic static SocialActivity findByG_U_CD_C_C_T_R(long groupId, long userId, long createDate, long classNameId, long classPK, int type, long receiverUserId) throws NoSuchActivityException
NoSuchActivityException
if it could not be found.groupId
- the group IDuserId
- the user IDcreateDate
- the create dateclassNameId
- the class name IDclassPK
- the class pktype
- the typereceiverUserId
- the receiver user IDNoSuchActivityException
- if a matching social activity could not be foundpublic static SocialActivity fetchByG_U_CD_C_C_T_R(long groupId, long userId, long createDate, long classNameId, long classPK, int type, long receiverUserId)
null
if it could not be found. Uses the finder cache.groupId
- the group IDuserId
- the user IDcreateDate
- the create dateclassNameId
- the class name IDclassPK
- the class pktype
- the typereceiverUserId
- the receiver user IDnull
if a matching social activity could not be foundpublic static SocialActivity fetchByG_U_CD_C_C_T_R(long groupId, long userId, long createDate, long classNameId, long classPK, int type, long receiverUserId, boolean retrieveFromCache)
null
if it could not be found, optionally using the finder cache.groupId
- the group IDuserId
- the user IDcreateDate
- the create dateclassNameId
- the class name IDclassPK
- the class pktype
- the typereceiverUserId
- the receiver user IDretrieveFromCache
- whether to retrieve from the finder cachenull
if a matching social activity could not be foundpublic static SocialActivity removeByG_U_CD_C_C_T_R(long groupId, long userId, long createDate, long classNameId, long classPK, int type, long receiverUserId) throws NoSuchActivityException
groupId
- the group IDuserId
- the user IDcreateDate
- the create dateclassNameId
- the class name IDclassPK
- the class pktype
- the typereceiverUserId
- the receiver user IDNoSuchActivityException
public static int countByG_U_CD_C_C_T_R(long groupId, long userId, long createDate, long classNameId, long classPK, int type, long receiverUserId)
groupId
- the group IDuserId
- the user IDcreateDate
- the create dateclassNameId
- the class name IDclassPK
- the class pktype
- the typereceiverUserId
- the receiver user IDpublic static void cacheResult(SocialActivity socialActivity)
socialActivity
- the social activitypublic static void cacheResult(List<SocialActivity> socialActivities)
socialActivities
- the social activitiespublic static SocialActivity create(long activityId)
activityId
- the primary key for the new social activitypublic static SocialActivity remove(long activityId) throws NoSuchActivityException
activityId
- the primary key of the social activityNoSuchActivityException
- if a social activity with the primary key could not be foundpublic static SocialActivity updateImpl(SocialActivity socialActivity)
public static SocialActivity findByPrimaryKey(long activityId) throws NoSuchActivityException
NoSuchActivityException
if it could not be found.activityId
- the primary key of the social activityNoSuchActivityException
- if a social activity with the primary key could not be foundpublic static SocialActivity fetchByPrimaryKey(long activityId)
null
if it could not be found.activityId
- the primary key of the social activitynull
if a social activity with the primary key could not be foundpublic static Map<Serializable,SocialActivity> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
public static List<SocialActivity> findAll()
public static List<SocialActivity> findAll(int start, int end)
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 SocialActivityModelImpl
. 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.
start
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)public static List<SocialActivity> findAll(int start, int end, OrderByComparator<SocialActivity> orderByComparator)
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 SocialActivityModelImpl
. 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.
start
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static List<SocialActivity> findAll(int start, int end, OrderByComparator<SocialActivity> orderByComparator, boolean retrieveFromCache)
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 SocialActivityModelImpl
. 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.
start
- the lower bound of the range of social activitiesend
- the upper bound of the range of social activities (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachepublic static void removeAll()
public static int countAll()
public static Set<String> getBadColumnNames()
public static SocialActivityPersistence getPersistence()