@ProviderType
public class SocialActivityAchievementUtil
extends java.lang.Object
SocialActivityAchievementPersistenceImpl 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
SocialActivityAchievementPersistence,
SocialActivityAchievementPersistenceImpl| Constructor and Description |
|---|
SocialActivityAchievementUtil() |
| Modifier and Type | Method and Description |
|---|---|
static void |
cacheResult(java.util.List<SocialActivityAchievement> socialActivityAchievements)
Caches the social activity achievements in the entity cache if it is enabled.
|
static void |
cacheResult(SocialActivityAchievement socialActivityAchievement)
Caches the social activity achievement in the entity cache if it is enabled.
|
static void |
clearCache() |
static void |
clearCache(SocialActivityAchievement socialActivityAchievement) |
static int |
countAll()
Returns the number of social activity achievements.
|
static int |
countByG_F(long groupId,
boolean firstInGroup)
Returns the number of social activity achievements where groupId = ? and firstInGroup = ?.
|
static int |
countByG_N(long groupId,
java.lang.String name)
Returns the number of social activity achievements where groupId = ? and name = ?.
|
static int |
countByG_U_F(long groupId,
long userId,
boolean firstInGroup)
Returns the number of social activity achievements where groupId = ? and userId = ? and firstInGroup = ?.
|
static int |
countByG_U_N(long groupId,
long userId,
java.lang.String name)
Returns the number of social activity achievements where groupId = ? and userId = ? and name = ?.
|
static int |
countByG_U(long groupId,
long userId)
Returns the number of social activity achievements where groupId = ? and userId = ?.
|
static int |
countByGroupId(long groupId)
Returns the number of social activity achievements where groupId = ?.
|
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery) |
static SocialActivityAchievement |
create(long activityAchievementId)
Creates a new social activity achievement with the primary key.
|
static SocialActivityAchievement |
fetchByG_F_First(long groupId,
boolean firstInGroup,
OrderByComparator orderByComparator)
Returns the first social activity achievement in the ordered set where groupId = ? and firstInGroup = ?.
|
static SocialActivityAchievement |
fetchByG_F_Last(long groupId,
boolean firstInGroup,
OrderByComparator orderByComparator)
Returns the last social activity achievement in the ordered set where groupId = ? and firstInGroup = ?.
|
static SocialActivityAchievement |
fetchByG_N_First(long groupId,
java.lang.String name,
OrderByComparator orderByComparator)
Returns the first social activity achievement in the ordered set where groupId = ? and name = ?.
|
static SocialActivityAchievement |
fetchByG_N_Last(long groupId,
java.lang.String name,
OrderByComparator orderByComparator)
Returns the last social activity achievement in the ordered set where groupId = ? and name = ?.
|
static SocialActivityAchievement |
fetchByG_U_F_First(long groupId,
long userId,
boolean firstInGroup,
OrderByComparator orderByComparator)
Returns the first social activity achievement in the ordered set where groupId = ? and userId = ? and firstInGroup = ?.
|
static SocialActivityAchievement |
fetchByG_U_F_Last(long groupId,
long userId,
boolean firstInGroup,
OrderByComparator orderByComparator)
Returns the last social activity achievement in the ordered set where groupId = ? and userId = ? and firstInGroup = ?.
|
static SocialActivityAchievement |
fetchByG_U_First(long groupId,
long userId,
OrderByComparator orderByComparator)
Returns the first social activity achievement in the ordered set where groupId = ? and userId = ?.
|
static SocialActivityAchievement |
fetchByG_U_Last(long groupId,
long userId,
OrderByComparator orderByComparator)
Returns the last social activity achievement in the ordered set where groupId = ? and userId = ?.
|
static SocialActivityAchievement |
fetchByG_U_N(long groupId,
long userId,
java.lang.String name)
Returns the social activity achievement where groupId = ? and userId = ? and name = ? or returns
null if it could not be found. |
static SocialActivityAchievement |
fetchByG_U_N(long groupId,
long userId,
java.lang.String name,
boolean retrieveFromCache)
Returns the social activity achievement where groupId = ? and userId = ? and name = ? or returns
null if it could not be found, optionally using the finder cache. |
static SocialActivityAchievement |
fetchByGroupId_First(long groupId,
OrderByComparator orderByComparator)
Returns the first social activity achievement in the ordered set where groupId = ?.
|
static SocialActivityAchievement |
fetchByGroupId_Last(long groupId,
OrderByComparator orderByComparator)
Returns the last social activity achievement in the ordered set where groupId = ?.
|
static SocialActivityAchievement |
fetchByPrimaryKey(long activityAchievementId)
Returns the social activity achievement with the primary key or returns
null if it could not be found. |
static java.util.List<SocialActivityAchievement> |
findAll()
Returns all the social activity achievements.
|
static java.util.List<SocialActivityAchievement> |
findAll(int start,
int end)
Returns a range of all the social activity achievements.
|
static java.util.List<SocialActivityAchievement> |
findAll(int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the social activity achievements.
|
static SocialActivityAchievement |
findByG_F_First(long groupId,
boolean firstInGroup,
OrderByComparator orderByComparator)
Returns the first social activity achievement in the ordered set where groupId = ? and firstInGroup = ?.
|
static SocialActivityAchievement |
findByG_F_Last(long groupId,
boolean firstInGroup,
OrderByComparator orderByComparator)
Returns the last social activity achievement in the ordered set where groupId = ? and firstInGroup = ?.
|
static SocialActivityAchievement[] |
findByG_F_PrevAndNext(long activityAchievementId,
long groupId,
boolean firstInGroup,
OrderByComparator orderByComparator)
Returns the social activity achievements before and after the current social activity achievement in the ordered set where groupId = ? and firstInGroup = ?.
|
static java.util.List<SocialActivityAchievement> |
findByG_F(long groupId,
boolean firstInGroup)
Returns all the social activity achievements where groupId = ? and firstInGroup = ?.
|
static java.util.List<SocialActivityAchievement> |
findByG_F(long groupId,
boolean firstInGroup,
int start,
int end)
Returns a range of all the social activity achievements where groupId = ? and firstInGroup = ?.
|
static java.util.List<SocialActivityAchievement> |
findByG_F(long groupId,
boolean firstInGroup,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the social activity achievements where groupId = ? and firstInGroup = ?.
|
static SocialActivityAchievement |
findByG_N_First(long groupId,
java.lang.String name,
OrderByComparator orderByComparator)
Returns the first social activity achievement in the ordered set where groupId = ? and name = ?.
|
static SocialActivityAchievement |
findByG_N_Last(long groupId,
java.lang.String name,
OrderByComparator orderByComparator)
Returns the last social activity achievement in the ordered set where groupId = ? and name = ?.
|
static SocialActivityAchievement[] |
findByG_N_PrevAndNext(long activityAchievementId,
long groupId,
java.lang.String name,
OrderByComparator orderByComparator)
Returns the social activity achievements before and after the current social activity achievement in the ordered set where groupId = ? and name = ?.
|
static java.util.List<SocialActivityAchievement> |
findByG_N(long groupId,
java.lang.String name)
Returns all the social activity achievements where groupId = ? and name = ?.
|
static java.util.List<SocialActivityAchievement> |
findByG_N(long groupId,
java.lang.String name,
int start,
int end)
Returns a range of all the social activity achievements where groupId = ? and name = ?.
|
static java.util.List<SocialActivityAchievement> |
findByG_N(long groupId,
java.lang.String name,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the social activity achievements where groupId = ? and name = ?.
|
static SocialActivityAchievement |
findByG_U_F_First(long groupId,
long userId,
boolean firstInGroup,
OrderByComparator orderByComparator)
Returns the first social activity achievement in the ordered set where groupId = ? and userId = ? and firstInGroup = ?.
|
static SocialActivityAchievement |
findByG_U_F_Last(long groupId,
long userId,
boolean firstInGroup,
OrderByComparator orderByComparator)
Returns the last social activity achievement in the ordered set where groupId = ? and userId = ? and firstInGroup = ?.
|
static SocialActivityAchievement[] |
findByG_U_F_PrevAndNext(long activityAchievementId,
long groupId,
long userId,
boolean firstInGroup,
OrderByComparator orderByComparator)
Returns the social activity achievements before and after the current social activity achievement in the ordered set where groupId = ? and userId = ? and firstInGroup = ?.
|
static java.util.List<SocialActivityAchievement> |
findByG_U_F(long groupId,
long userId,
boolean firstInGroup)
Returns all the social activity achievements where groupId = ? and userId = ? and firstInGroup = ?.
|
static java.util.List<SocialActivityAchievement> |
findByG_U_F(long groupId,
long userId,
boolean firstInGroup,
int start,
int end)
Returns a range of all the social activity achievements where groupId = ? and userId = ? and firstInGroup = ?.
|
static java.util.List<SocialActivityAchievement> |
findByG_U_F(long groupId,
long userId,
boolean firstInGroup,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the social activity achievements where groupId = ? and userId = ? and firstInGroup = ?.
|
static SocialActivityAchievement |
findByG_U_First(long groupId,
long userId,
OrderByComparator orderByComparator)
Returns the first social activity achievement in the ordered set where groupId = ? and userId = ?.
|
static SocialActivityAchievement |
findByG_U_Last(long groupId,
long userId,
OrderByComparator orderByComparator)
Returns the last social activity achievement in the ordered set where groupId = ? and userId = ?.
|
static SocialActivityAchievement |
findByG_U_N(long groupId,
long userId,
java.lang.String name)
Returns the social activity achievement where groupId = ? and userId = ? and name = ? or throws a
NoSuchActivityAchievementException if it could not be found. |
static SocialActivityAchievement[] |
findByG_U_PrevAndNext(long activityAchievementId,
long groupId,
long userId,
OrderByComparator orderByComparator)
Returns the social activity achievements before and after the current social activity achievement in the ordered set where groupId = ? and userId = ?.
|
static java.util.List<SocialActivityAchievement> |
findByG_U(long groupId,
long userId)
Returns all the social activity achievements where groupId = ? and userId = ?.
|
static java.util.List<SocialActivityAchievement> |
findByG_U(long groupId,
long userId,
int start,
int end)
Returns a range of all the social activity achievements where groupId = ? and userId = ?.
|
static java.util.List<SocialActivityAchievement> |
findByG_U(long groupId,
long userId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the social activity achievements where groupId = ? and userId = ?.
|
static SocialActivityAchievement |
findByGroupId_First(long groupId,
OrderByComparator orderByComparator)
Returns the first social activity achievement in the ordered set where groupId = ?.
|
static SocialActivityAchievement |
findByGroupId_Last(long groupId,
OrderByComparator orderByComparator)
Returns the last social activity achievement in the ordered set where groupId = ?.
|
static SocialActivityAchievement[] |
findByGroupId_PrevAndNext(long activityAchievementId,
long groupId,
OrderByComparator orderByComparator)
Returns the social activity achievements before and after the current social activity achievement in the ordered set where groupId = ?.
|
static java.util.List<SocialActivityAchievement> |
findByGroupId(long groupId)
Returns all the social activity achievements where groupId = ?.
|
static java.util.List<SocialActivityAchievement> |
findByGroupId(long groupId,
int start,
int end)
Returns a range of all the social activity achievements where groupId = ?.
|
static java.util.List<SocialActivityAchievement> |
findByGroupId(long groupId,
int start,
int end,
OrderByComparator orderByComparator)
Returns an ordered range of all the social activity achievements where groupId = ?.
|
static SocialActivityAchievement |
findByPrimaryKey(long activityAchievementId)
Returns the social activity achievement with the primary key or throws a
NoSuchActivityAchievementException if it could not be found. |
static java.util.List<SocialActivityAchievement> |
findWithDynamicQuery(DynamicQuery dynamicQuery) |
static java.util.List<SocialActivityAchievement> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end) |
static java.util.List<SocialActivityAchievement> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator orderByComparator) |
static SocialActivityAchievementPersistence |
getPersistence() |
static SocialActivityAchievement |
remove(long activityAchievementId)
Removes the social activity achievement with the primary key from the database.
|
static void |
removeAll()
Removes all the social activity achievements from the database.
|
static void |
removeByG_F(long groupId,
boolean firstInGroup)
Removes all the social activity achievements where groupId = ? and firstInGroup = ? from the database.
|
static void |
removeByG_N(long groupId,
java.lang.String name)
Removes all the social activity achievements where groupId = ? and name = ? from the database.
|
static void |
removeByG_U_F(long groupId,
long userId,
boolean firstInGroup)
Removes all the social activity achievements where groupId = ? and userId = ? and firstInGroup = ? from the database.
|
static SocialActivityAchievement |
removeByG_U_N(long groupId,
long userId,
java.lang.String name)
Removes the social activity achievement where groupId = ? and userId = ? and name = ? from the database.
|
static void |
removeByG_U(long groupId,
long userId)
Removes all the social activity achievements where groupId = ? and userId = ? from the database.
|
static void |
removeByGroupId(long groupId)
Removes all the social activity achievements where groupId = ? from the database.
|
void |
setPersistence(SocialActivityAchievementPersistence persistence)
Deprecated.
As of 6.2.0
|
static SocialActivityAchievement |
update(SocialActivityAchievement socialActivityAchievement) |
static SocialActivityAchievement |
update(SocialActivityAchievement socialActivityAchievement,
ServiceContext serviceContext) |
static SocialActivityAchievement |
updateImpl(SocialActivityAchievement socialActivityAchievement) |
public static void clearCache()
BasePersistence.clearCache()public static void clearCache(SocialActivityAchievement socialActivityAchievement)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.countWithDynamicQuery(DynamicQuery)public static java.util.List<SocialActivityAchievement> findWithDynamicQuery(DynamicQuery dynamicQuery) throws SystemException
SystemExceptionBasePersistence.findWithDynamicQuery(DynamicQuery)public static java.util.List<SocialActivityAchievement> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
public static java.util.List<SocialActivityAchievement> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
public static SocialActivityAchievement update(SocialActivityAchievement socialActivityAchievement) throws SystemException
public static SocialActivityAchievement update(SocialActivityAchievement socialActivityAchievement, ServiceContext serviceContext) throws SystemException
public static java.util.List<SocialActivityAchievement> findByGroupId(long groupId) throws SystemException
groupId - the group IDSystemException - if a system exception occurredpublic static java.util.List<SocialActivityAchievement> findByGroupId(long groupId, int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from SocialActivityAchievementModelImpl. 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 activity achievementsend - the upper bound of the range of social activity achievements (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<SocialActivityAchievement> findByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from SocialActivityAchievementModelImpl. 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 activity achievementsend - the upper bound of the range of social activity achievements (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static SocialActivityAchievement findByGroupId_First(long groupId, OrderByComparator orderByComparator) throws SystemException, NoSuchActivityAchievementException
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)NoSuchActivityAchievementException - if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement fetchByGroupId_First(long groupId, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)null if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement findByGroupId_Last(long groupId, OrderByComparator orderByComparator) throws SystemException, NoSuchActivityAchievementException
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)NoSuchActivityAchievementException - if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement fetchByGroupId_Last(long groupId, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDorderByComparator - the comparator to order the set by (optionally null)null if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement[] findByGroupId_PrevAndNext(long activityAchievementId, long groupId, OrderByComparator orderByComparator) throws SystemException, NoSuchActivityAchievementException
activityAchievementId - the primary key of the current social activity achievementgroupId - the group IDorderByComparator - the comparator to order the set by (optionally null)NoSuchActivityAchievementException - if a social activity achievement with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByGroupId(long groupId)
throws SystemException
groupId - the group IDSystemException - if a system exception occurredpublic static int countByGroupId(long groupId)
throws SystemException
groupId - the group IDSystemException - if a system exception occurredpublic static java.util.List<SocialActivityAchievement> findByG_U(long groupId, long userId) throws SystemException
groupId - the group IDuserId - the user IDSystemException - if a system exception occurredpublic static java.util.List<SocialActivityAchievement> findByG_U(long groupId, long userId, int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from SocialActivityAchievementModelImpl. 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 IDstart - the lower bound of the range of social activity achievementsend - the upper bound of the range of social activity achievements (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<SocialActivityAchievement> findByG_U(long groupId, long userId, int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from SocialActivityAchievementModelImpl. 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 IDstart - the lower bound of the range of social activity achievementsend - the upper bound of the range of social activity achievements (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static SocialActivityAchievement findByG_U_First(long groupId, long userId, OrderByComparator orderByComparator) throws SystemException, NoSuchActivityAchievementException
groupId - the group IDuserId - the user IDorderByComparator - the comparator to order the set by (optionally null)NoSuchActivityAchievementException - if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement fetchByG_U_First(long groupId, long userId, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDuserId - the user IDorderByComparator - the comparator to order the set by (optionally null)null if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement findByG_U_Last(long groupId, long userId, OrderByComparator orderByComparator) throws SystemException, NoSuchActivityAchievementException
groupId - the group IDuserId - the user IDorderByComparator - the comparator to order the set by (optionally null)NoSuchActivityAchievementException - if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement fetchByG_U_Last(long groupId, long userId, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDuserId - the user IDorderByComparator - the comparator to order the set by (optionally null)null if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement[] findByG_U_PrevAndNext(long activityAchievementId, long groupId, long userId, OrderByComparator orderByComparator) throws SystemException, NoSuchActivityAchievementException
activityAchievementId - the primary key of the current social activity achievementgroupId - the group IDuserId - the user IDorderByComparator - the comparator to order the set by (optionally null)NoSuchActivityAchievementException - if a social activity achievement with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByG_U(long groupId,
long userId)
throws SystemException
groupId - the group IDuserId - the user IDSystemException - if a system exception occurredpublic static int countByG_U(long groupId,
long userId)
throws SystemException
groupId - the group IDuserId - the user IDSystemException - if a system exception occurredpublic static java.util.List<SocialActivityAchievement> findByG_N(long groupId, java.lang.String name) throws SystemException
groupId - the group IDname - the nameSystemException - if a system exception occurredpublic static java.util.List<SocialActivityAchievement> findByG_N(long groupId, java.lang.String name, int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from SocialActivityAchievementModelImpl. 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 IDname - the namestart - the lower bound of the range of social activity achievementsend - the upper bound of the range of social activity achievements (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<SocialActivityAchievement> findByG_N(long groupId, java.lang.String name, int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from SocialActivityAchievementModelImpl. 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 IDname - the namestart - the lower bound of the range of social activity achievementsend - the upper bound of the range of social activity achievements (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static SocialActivityAchievement findByG_N_First(long groupId, java.lang.String name, OrderByComparator orderByComparator) throws SystemException, NoSuchActivityAchievementException
groupId - the group IDname - the nameorderByComparator - the comparator to order the set by (optionally null)NoSuchActivityAchievementException - if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement fetchByG_N_First(long groupId, java.lang.String name, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDname - the nameorderByComparator - the comparator to order the set by (optionally null)null if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement findByG_N_Last(long groupId, java.lang.String name, OrderByComparator orderByComparator) throws SystemException, NoSuchActivityAchievementException
groupId - the group IDname - the nameorderByComparator - the comparator to order the set by (optionally null)NoSuchActivityAchievementException - if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement fetchByG_N_Last(long groupId, java.lang.String name, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDname - the nameorderByComparator - the comparator to order the set by (optionally null)null if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement[] findByG_N_PrevAndNext(long activityAchievementId, long groupId, java.lang.String name, OrderByComparator orderByComparator) throws SystemException, NoSuchActivityAchievementException
activityAchievementId - the primary key of the current social activity achievementgroupId - the group IDname - the nameorderByComparator - the comparator to order the set by (optionally null)NoSuchActivityAchievementException - if a social activity achievement with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByG_N(long groupId,
java.lang.String name)
throws SystemException
groupId - the group IDname - the nameSystemException - if a system exception occurredpublic static int countByG_N(long groupId,
java.lang.String name)
throws SystemException
groupId - the group IDname - the nameSystemException - if a system exception occurredpublic static java.util.List<SocialActivityAchievement> findByG_F(long groupId, boolean firstInGroup) throws SystemException
groupId - the group IDfirstInGroup - the first in groupSystemException - if a system exception occurredpublic static java.util.List<SocialActivityAchievement> findByG_F(long groupId, boolean firstInGroup, int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from SocialActivityAchievementModelImpl. 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 IDfirstInGroup - the first in groupstart - the lower bound of the range of social activity achievementsend - the upper bound of the range of social activity achievements (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<SocialActivityAchievement> findByG_F(long groupId, boolean firstInGroup, int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from SocialActivityAchievementModelImpl. 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 IDfirstInGroup - the first in groupstart - the lower bound of the range of social activity achievementsend - the upper bound of the range of social activity achievements (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static SocialActivityAchievement findByG_F_First(long groupId, boolean firstInGroup, OrderByComparator orderByComparator) throws SystemException, NoSuchActivityAchievementException
groupId - the group IDfirstInGroup - the first in grouporderByComparator - the comparator to order the set by (optionally null)NoSuchActivityAchievementException - if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement fetchByG_F_First(long groupId, boolean firstInGroup, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDfirstInGroup - the first in grouporderByComparator - the comparator to order the set by (optionally null)null if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement findByG_F_Last(long groupId, boolean firstInGroup, OrderByComparator orderByComparator) throws SystemException, NoSuchActivityAchievementException
groupId - the group IDfirstInGroup - the first in grouporderByComparator - the comparator to order the set by (optionally null)NoSuchActivityAchievementException - if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement fetchByG_F_Last(long groupId, boolean firstInGroup, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDfirstInGroup - the first in grouporderByComparator - the comparator to order the set by (optionally null)null if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement[] findByG_F_PrevAndNext(long activityAchievementId, long groupId, boolean firstInGroup, OrderByComparator orderByComparator) throws SystemException, NoSuchActivityAchievementException
activityAchievementId - the primary key of the current social activity achievementgroupId - the group IDfirstInGroup - the first in grouporderByComparator - the comparator to order the set by (optionally null)NoSuchActivityAchievementException - if a social activity achievement with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByG_F(long groupId,
boolean firstInGroup)
throws SystemException
groupId - the group IDfirstInGroup - the first in groupSystemException - if a system exception occurredpublic static int countByG_F(long groupId,
boolean firstInGroup)
throws SystemException
groupId - the group IDfirstInGroup - the first in groupSystemException - if a system exception occurredpublic static SocialActivityAchievement findByG_U_N(long groupId, long userId, java.lang.String name) throws SystemException, NoSuchActivityAchievementException
NoSuchActivityAchievementException if it could not be found.groupId - the group IDuserId - the user IDname - the nameNoSuchActivityAchievementException - if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement fetchByG_U_N(long groupId, long userId, java.lang.String name) throws SystemException
null if it could not be found. Uses the finder cache.groupId - the group IDuserId - the user IDname - the namenull if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement fetchByG_U_N(long groupId, long userId, java.lang.String name, boolean retrieveFromCache) throws SystemException
null if it could not be found, optionally using the finder cache.groupId - the group IDuserId - the user IDname - the nameretrieveFromCache - whether to use the finder cachenull if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement removeByG_U_N(long groupId, long userId, java.lang.String name) throws SystemException, NoSuchActivityAchievementException
groupId - the group IDuserId - the user IDname - the nameSystemException - if a system exception occurredNoSuchActivityAchievementExceptionpublic static int countByG_U_N(long groupId,
long userId,
java.lang.String name)
throws SystemException
groupId - the group IDuserId - the user IDname - the nameSystemException - if a system exception occurredpublic static java.util.List<SocialActivityAchievement> findByG_U_F(long groupId, long userId, boolean firstInGroup) throws SystemException
groupId - the group IDuserId - the user IDfirstInGroup - the first in groupSystemException - if a system exception occurredpublic static java.util.List<SocialActivityAchievement> findByG_U_F(long groupId, long userId, boolean firstInGroup, int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from SocialActivityAchievementModelImpl. 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 IDfirstInGroup - the first in groupstart - the lower bound of the range of social activity achievementsend - the upper bound of the range of social activity achievements (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<SocialActivityAchievement> findByG_U_F(long groupId, long userId, boolean firstInGroup, int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from SocialActivityAchievementModelImpl. 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 IDfirstInGroup - the first in groupstart - the lower bound of the range of social activity achievementsend - the upper bound of the range of social activity achievements (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static SocialActivityAchievement findByG_U_F_First(long groupId, long userId, boolean firstInGroup, OrderByComparator orderByComparator) throws SystemException, NoSuchActivityAchievementException
groupId - the group IDuserId - the user IDfirstInGroup - the first in grouporderByComparator - the comparator to order the set by (optionally null)NoSuchActivityAchievementException - if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement fetchByG_U_F_First(long groupId, long userId, boolean firstInGroup, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDuserId - the user IDfirstInGroup - the first in grouporderByComparator - the comparator to order the set by (optionally null)null if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement findByG_U_F_Last(long groupId, long userId, boolean firstInGroup, OrderByComparator orderByComparator) throws SystemException, NoSuchActivityAchievementException
groupId - the group IDuserId - the user IDfirstInGroup - the first in grouporderByComparator - the comparator to order the set by (optionally null)NoSuchActivityAchievementException - if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement fetchByG_U_F_Last(long groupId, long userId, boolean firstInGroup, OrderByComparator orderByComparator) throws SystemException
groupId - the group IDuserId - the user IDfirstInGroup - the first in grouporderByComparator - the comparator to order the set by (optionally null)null if a matching social activity achievement could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement[] findByG_U_F_PrevAndNext(long activityAchievementId, long groupId, long userId, boolean firstInGroup, OrderByComparator orderByComparator) throws SystemException, NoSuchActivityAchievementException
activityAchievementId - the primary key of the current social activity achievementgroupId - the group IDuserId - the user IDfirstInGroup - the first in grouporderByComparator - the comparator to order the set by (optionally null)NoSuchActivityAchievementException - if a social activity achievement with the primary key could not be foundSystemException - if a system exception occurredpublic static void removeByG_U_F(long groupId,
long userId,
boolean firstInGroup)
throws SystemException
groupId - the group IDuserId - the user IDfirstInGroup - the first in groupSystemException - if a system exception occurredpublic static int countByG_U_F(long groupId,
long userId,
boolean firstInGroup)
throws SystemException
groupId - the group IDuserId - the user IDfirstInGroup - the first in groupSystemException - if a system exception occurredpublic static void cacheResult(SocialActivityAchievement socialActivityAchievement)
socialActivityAchievement - the social activity achievementpublic static void cacheResult(java.util.List<SocialActivityAchievement> socialActivityAchievements)
socialActivityAchievements - the social activity achievementspublic static SocialActivityAchievement create(long activityAchievementId)
activityAchievementId - the primary key for the new social activity achievementpublic static SocialActivityAchievement remove(long activityAchievementId) throws SystemException, NoSuchActivityAchievementException
activityAchievementId - the primary key of the social activity achievementNoSuchActivityAchievementException - if a social activity achievement with the primary key could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement updateImpl(SocialActivityAchievement socialActivityAchievement) throws SystemException
SystemExceptionpublic static SocialActivityAchievement findByPrimaryKey(long activityAchievementId) throws SystemException, NoSuchActivityAchievementException
NoSuchActivityAchievementException if it could not be found.activityAchievementId - the primary key of the social activity achievementNoSuchActivityAchievementException - if a social activity achievement with the primary key could not be foundSystemException - if a system exception occurredpublic static SocialActivityAchievement fetchByPrimaryKey(long activityAchievementId) throws SystemException
null if it could not be found.activityAchievementId - the primary key of the social activity achievementnull if a social activity achievement with the primary key could not be foundSystemException - if a system exception occurredpublic static java.util.List<SocialActivityAchievement> findAll() throws SystemException
SystemException - if a system exception occurredpublic static java.util.List<SocialActivityAchievement> findAll(int start, int end) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from SocialActivityAchievementModelImpl. 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 activity achievementsend - the upper bound of the range of social activity achievements (not inclusive)SystemException - if a system exception occurredpublic static java.util.List<SocialActivityAchievement> findAll(int start, int end, OrderByComparator orderByComparator) throws SystemException
Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from SocialActivityAchievementModelImpl. 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 activity achievementsend - the upper bound of the range of social activity achievements (not inclusive)orderByComparator - the comparator to order the results by (optionally null)SystemException - if a system exception occurredpublic static void removeAll()
throws SystemException
SystemException - if a system exception occurredpublic static int countAll()
throws SystemException
SystemException - if a system exception occurredpublic static SocialActivityAchievementPersistence getPersistence()
public void setPersistence(SocialActivityAchievementPersistence persistence)