@ProviderType public interface MembershipRequestPersistence extends BasePersistence<MembershipRequest>
Caching information and settings can be found in portal.properties
MembershipRequestPersistenceImpl
,
MembershipRequestUtil
Modifier and Type | Method and Description |
---|---|
void |
cacheResult(List<MembershipRequest> membershipRequests)
Caches the membership requests in the entity cache if it is enabled.
|
void |
cacheResult(MembershipRequest membershipRequest)
Caches the membership request in the entity cache if it is enabled.
|
int |
countAll()
Returns the number of membership requests.
|
int |
countByG_S(long groupId,
long statusId)
Returns the number of membership requests where groupId = ? and statusId = ?.
|
int |
countByG_U_S(long groupId,
long userId,
long statusId)
Returns the number of membership requests where groupId = ? and userId = ? and statusId = ?.
|
int |
countByGroupId(long groupId)
Returns the number of membership requests where groupId = ?.
|
int |
countByUserId(long userId)
Returns the number of membership requests where userId = ?.
|
MembershipRequest |
create(long membershipRequestId)
Creates a new membership request with the primary key.
|
MembershipRequest |
fetchByG_S_First(long groupId,
long statusId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the first membership request in the ordered set where groupId = ? and statusId = ?.
|
MembershipRequest |
fetchByG_S_Last(long groupId,
long statusId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the last membership request in the ordered set where groupId = ? and statusId = ?.
|
MembershipRequest |
fetchByG_U_S_First(long groupId,
long userId,
long statusId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the first membership request in the ordered set where groupId = ? and userId = ? and statusId = ?.
|
MembershipRequest |
fetchByG_U_S_Last(long groupId,
long userId,
long statusId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the last membership request in the ordered set where groupId = ? and userId = ? and statusId = ?.
|
MembershipRequest |
fetchByGroupId_First(long groupId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the first membership request in the ordered set where groupId = ?.
|
MembershipRequest |
fetchByGroupId_Last(long groupId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the last membership request in the ordered set where groupId = ?.
|
MembershipRequest |
fetchByPrimaryKey(long membershipRequestId)
Returns the membership request with the primary key or returns
null if it could not be found. |
Map<Serializable,MembershipRequest> |
fetchByPrimaryKeys(Set<Serializable> primaryKeys) |
MembershipRequest |
fetchByUserId_First(long userId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the first membership request in the ordered set where userId = ?.
|
MembershipRequest |
fetchByUserId_Last(long userId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the last membership request in the ordered set where userId = ?.
|
List<MembershipRequest> |
findAll()
Returns all the membership requests.
|
List<MembershipRequest> |
findAll(int start,
int end)
Returns a range of all the membership requests.
|
List<MembershipRequest> |
findAll(int start,
int end,
OrderByComparator<MembershipRequest> orderByComparator)
Returns an ordered range of all the membership requests.
|
List<MembershipRequest> |
findAll(int start,
int end,
OrderByComparator<MembershipRequest> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the membership requests.
|
MembershipRequest |
findByG_S_First(long groupId,
long statusId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the first membership request in the ordered set where groupId = ? and statusId = ?.
|
MembershipRequest |
findByG_S_Last(long groupId,
long statusId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the last membership request in the ordered set where groupId = ? and statusId = ?.
|
MembershipRequest[] |
findByG_S_PrevAndNext(long membershipRequestId,
long groupId,
long statusId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the membership requests before and after the current membership request in the ordered set where groupId = ? and statusId = ?.
|
List<MembershipRequest> |
findByG_S(long groupId,
long statusId)
Returns all the membership requests where groupId = ? and statusId = ?.
|
List<MembershipRequest> |
findByG_S(long groupId,
long statusId,
int start,
int end)
Returns a range of all the membership requests where groupId = ? and statusId = ?.
|
List<MembershipRequest> |
findByG_S(long groupId,
long statusId,
int start,
int end,
OrderByComparator<MembershipRequest> orderByComparator)
Returns an ordered range of all the membership requests where groupId = ? and statusId = ?.
|
List<MembershipRequest> |
findByG_S(long groupId,
long statusId,
int start,
int end,
OrderByComparator<MembershipRequest> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the membership requests where groupId = ? and statusId = ?.
|
MembershipRequest |
findByG_U_S_First(long groupId,
long userId,
long statusId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the first membership request in the ordered set where groupId = ? and userId = ? and statusId = ?.
|
MembershipRequest |
findByG_U_S_Last(long groupId,
long userId,
long statusId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the last membership request in the ordered set where groupId = ? and userId = ? and statusId = ?.
|
MembershipRequest[] |
findByG_U_S_PrevAndNext(long membershipRequestId,
long groupId,
long userId,
long statusId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the membership requests before and after the current membership request in the ordered set where groupId = ? and userId = ? and statusId = ?.
|
List<MembershipRequest> |
findByG_U_S(long groupId,
long userId,
long statusId)
Returns all the membership requests where groupId = ? and userId = ? and statusId = ?.
|
List<MembershipRequest> |
findByG_U_S(long groupId,
long userId,
long statusId,
int start,
int end)
Returns a range of all the membership requests where groupId = ? and userId = ? and statusId = ?.
|
List<MembershipRequest> |
findByG_U_S(long groupId,
long userId,
long statusId,
int start,
int end,
OrderByComparator<MembershipRequest> orderByComparator)
Returns an ordered range of all the membership requests where groupId = ? and userId = ? and statusId = ?.
|
List<MembershipRequest> |
findByG_U_S(long groupId,
long userId,
long statusId,
int start,
int end,
OrderByComparator<MembershipRequest> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the membership requests where groupId = ? and userId = ? and statusId = ?.
|
MembershipRequest |
findByGroupId_First(long groupId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the first membership request in the ordered set where groupId = ?.
|
MembershipRequest |
findByGroupId_Last(long groupId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the last membership request in the ordered set where groupId = ?.
|
MembershipRequest[] |
findByGroupId_PrevAndNext(long membershipRequestId,
long groupId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the membership requests before and after the current membership request in the ordered set where groupId = ?.
|
List<MembershipRequest> |
findByGroupId(long groupId)
Returns all the membership requests where groupId = ?.
|
List<MembershipRequest> |
findByGroupId(long groupId,
int start,
int end)
Returns a range of all the membership requests where groupId = ?.
|
List<MembershipRequest> |
findByGroupId(long groupId,
int start,
int end,
OrderByComparator<MembershipRequest> orderByComparator)
Returns an ordered range of all the membership requests where groupId = ?.
|
List<MembershipRequest> |
findByGroupId(long groupId,
int start,
int end,
OrderByComparator<MembershipRequest> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the membership requests where groupId = ?.
|
MembershipRequest |
findByPrimaryKey(long membershipRequestId)
Returns the membership request with the primary key or throws a
NoSuchMembershipRequestException if it could not be found. |
MembershipRequest |
findByUserId_First(long userId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the first membership request in the ordered set where userId = ?.
|
MembershipRequest |
findByUserId_Last(long userId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the last membership request in the ordered set where userId = ?.
|
MembershipRequest[] |
findByUserId_PrevAndNext(long membershipRequestId,
long userId,
OrderByComparator<MembershipRequest> orderByComparator)
Returns the membership requests before and after the current membership request in the ordered set where userId = ?.
|
List<MembershipRequest> |
findByUserId(long userId)
Returns all the membership requests where userId = ?.
|
List<MembershipRequest> |
findByUserId(long userId,
int start,
int end)
Returns a range of all the membership requests where userId = ?.
|
List<MembershipRequest> |
findByUserId(long userId,
int start,
int end,
OrderByComparator<MembershipRequest> orderByComparator)
Returns an ordered range of all the membership requests where userId = ?.
|
List<MembershipRequest> |
findByUserId(long userId,
int start,
int end,
OrderByComparator<MembershipRequest> orderByComparator,
boolean retrieveFromCache)
Returns an ordered range of all the membership requests where userId = ?.
|
MembershipRequest |
remove(long membershipRequestId)
Removes the membership request with the primary key from the database.
|
void |
removeAll()
Removes all the membership requests from the database.
|
void |
removeByG_S(long groupId,
long statusId)
Removes all the membership requests where groupId = ? and statusId = ? from the database.
|
void |
removeByG_U_S(long groupId,
long userId,
long statusId)
Removes all the membership requests where groupId = ? and userId = ? and statusId = ? from the database.
|
void |
removeByGroupId(long groupId)
Removes all the membership requests where groupId = ? from the database.
|
void |
removeByUserId(long userId)
Removes all the membership requests where userId = ? from the database.
|
MembershipRequest |
updateImpl(MembershipRequest membershipRequest) |
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, flush, getBadColumnNames, getCurrentSession, getDataSource, getListeners, getModelClass, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update
List<MembershipRequest> findByGroupId(long groupId)
groupId
- the group IDList<MembershipRequest> 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 MembershipRequestModelImpl
. 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 membership requestsend
- the upper bound of the range of membership requests (not inclusive)List<MembershipRequest> findByGroupId(long groupId, int start, int end, OrderByComparator<MembershipRequest> 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 MembershipRequestModelImpl
. 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 membership requestsend
- the upper bound of the range of membership requests (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)List<MembershipRequest> findByGroupId(long groupId, int start, int end, OrderByComparator<MembershipRequest> 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 MembershipRequestModelImpl
. 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 membership requestsend
- the upper bound of the range of membership requests (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cacheMembershipRequest findByGroupId_First(long groupId, OrderByComparator<MembershipRequest> orderByComparator) throws NoSuchMembershipRequestException
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMembershipRequestException
- if a matching membership request could not be foundMembershipRequest fetchByGroupId_First(long groupId, OrderByComparator<MembershipRequest> orderByComparator)
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching membership request could not be foundMembershipRequest findByGroupId_Last(long groupId, OrderByComparator<MembershipRequest> orderByComparator) throws NoSuchMembershipRequestException
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMembershipRequestException
- if a matching membership request could not be foundMembershipRequest fetchByGroupId_Last(long groupId, OrderByComparator<MembershipRequest> orderByComparator)
groupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching membership request could not be foundMembershipRequest[] findByGroupId_PrevAndNext(long membershipRequestId, long groupId, OrderByComparator<MembershipRequest> orderByComparator) throws NoSuchMembershipRequestException
membershipRequestId
- the primary key of the current membership requestgroupId
- the group IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMembershipRequestException
- if a membership request with the primary key could not be foundvoid removeByGroupId(long groupId)
groupId
- the group IDint countByGroupId(long groupId)
groupId
- the group IDList<MembershipRequest> findByUserId(long userId)
userId
- the user IDList<MembershipRequest> 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 MembershipRequestModelImpl
. 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 membership requestsend
- the upper bound of the range of membership requests (not inclusive)List<MembershipRequest> findByUserId(long userId, int start, int end, OrderByComparator<MembershipRequest> 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 MembershipRequestModelImpl
. 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 membership requestsend
- the upper bound of the range of membership requests (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)List<MembershipRequest> findByUserId(long userId, int start, int end, OrderByComparator<MembershipRequest> 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 MembershipRequestModelImpl
. 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 membership requestsend
- the upper bound of the range of membership requests (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cacheMembershipRequest findByUserId_First(long userId, OrderByComparator<MembershipRequest> orderByComparator) throws NoSuchMembershipRequestException
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMembershipRequestException
- if a matching membership request could not be foundMembershipRequest fetchByUserId_First(long userId, OrderByComparator<MembershipRequest> orderByComparator)
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching membership request could not be foundMembershipRequest findByUserId_Last(long userId, OrderByComparator<MembershipRequest> orderByComparator) throws NoSuchMembershipRequestException
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMembershipRequestException
- if a matching membership request could not be foundMembershipRequest fetchByUserId_Last(long userId, OrderByComparator<MembershipRequest> orderByComparator)
userId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching membership request could not be foundMembershipRequest[] findByUserId_PrevAndNext(long membershipRequestId, long userId, OrderByComparator<MembershipRequest> orderByComparator) throws NoSuchMembershipRequestException
membershipRequestId
- the primary key of the current membership requestuserId
- the user IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMembershipRequestException
- if a membership request with the primary key could not be foundvoid removeByUserId(long userId)
userId
- the user IDint countByUserId(long userId)
userId
- the user IDList<MembershipRequest> findByG_S(long groupId, long statusId)
groupId
- the group IDstatusId
- the status IDList<MembershipRequest> findByG_S(long groupId, long statusId, 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 MembershipRequestModelImpl
. 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 IDstatusId
- the status IDstart
- the lower bound of the range of membership requestsend
- the upper bound of the range of membership requests (not inclusive)List<MembershipRequest> findByG_S(long groupId, long statusId, int start, int end, OrderByComparator<MembershipRequest> 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 MembershipRequestModelImpl
. 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 IDstatusId
- the status IDstart
- the lower bound of the range of membership requestsend
- the upper bound of the range of membership requests (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)List<MembershipRequest> findByG_S(long groupId, long statusId, int start, int end, OrderByComparator<MembershipRequest> 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 MembershipRequestModelImpl
. 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 IDstatusId
- the status IDstart
- the lower bound of the range of membership requestsend
- the upper bound of the range of membership requests (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cacheMembershipRequest findByG_S_First(long groupId, long statusId, OrderByComparator<MembershipRequest> orderByComparator) throws NoSuchMembershipRequestException
groupId
- the group IDstatusId
- the status IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMembershipRequestException
- if a matching membership request could not be foundMembershipRequest fetchByG_S_First(long groupId, long statusId, OrderByComparator<MembershipRequest> orderByComparator)
groupId
- the group IDstatusId
- the status IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching membership request could not be foundMembershipRequest findByG_S_Last(long groupId, long statusId, OrderByComparator<MembershipRequest> orderByComparator) throws NoSuchMembershipRequestException
groupId
- the group IDstatusId
- the status IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMembershipRequestException
- if a matching membership request could not be foundMembershipRequest fetchByG_S_Last(long groupId, long statusId, OrderByComparator<MembershipRequest> orderByComparator)
groupId
- the group IDstatusId
- the status IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching membership request could not be foundMembershipRequest[] findByG_S_PrevAndNext(long membershipRequestId, long groupId, long statusId, OrderByComparator<MembershipRequest> orderByComparator) throws NoSuchMembershipRequestException
membershipRequestId
- the primary key of the current membership requestgroupId
- the group IDstatusId
- the status IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMembershipRequestException
- if a membership request with the primary key could not be foundvoid removeByG_S(long groupId, long statusId)
groupId
- the group IDstatusId
- the status IDint countByG_S(long groupId, long statusId)
groupId
- the group IDstatusId
- the status IDList<MembershipRequest> findByG_U_S(long groupId, long userId, long statusId)
groupId
- the group IDuserId
- the user IDstatusId
- the status IDList<MembershipRequest> findByG_U_S(long groupId, long userId, long statusId, 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 MembershipRequestModelImpl
. 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 IDstatusId
- the status IDstart
- the lower bound of the range of membership requestsend
- the upper bound of the range of membership requests (not inclusive)List<MembershipRequest> findByG_U_S(long groupId, long userId, long statusId, int start, int end, OrderByComparator<MembershipRequest> 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 MembershipRequestModelImpl
. 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 IDstatusId
- the status IDstart
- the lower bound of the range of membership requestsend
- the upper bound of the range of membership requests (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)List<MembershipRequest> findByG_U_S(long groupId, long userId, long statusId, int start, int end, OrderByComparator<MembershipRequest> 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 MembershipRequestModelImpl
. 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 IDstatusId
- the status IDstart
- the lower bound of the range of membership requestsend
- the upper bound of the range of membership requests (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cacheMembershipRequest findByG_U_S_First(long groupId, long userId, long statusId, OrderByComparator<MembershipRequest> orderByComparator) throws NoSuchMembershipRequestException
groupId
- the group IDuserId
- the user IDstatusId
- the status IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMembershipRequestException
- if a matching membership request could not be foundMembershipRequest fetchByG_U_S_First(long groupId, long userId, long statusId, OrderByComparator<MembershipRequest> orderByComparator)
groupId
- the group IDuserId
- the user IDstatusId
- the status IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching membership request could not be foundMembershipRequest findByG_U_S_Last(long groupId, long userId, long statusId, OrderByComparator<MembershipRequest> orderByComparator) throws NoSuchMembershipRequestException
groupId
- the group IDuserId
- the user IDstatusId
- the status IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMembershipRequestException
- if a matching membership request could not be foundMembershipRequest fetchByG_U_S_Last(long groupId, long userId, long statusId, OrderByComparator<MembershipRequest> orderByComparator)
groupId
- the group IDuserId
- the user IDstatusId
- the status IDorderByComparator
- the comparator to order the set by (optionally null
)null
if a matching membership request could not be foundMembershipRequest[] findByG_U_S_PrevAndNext(long membershipRequestId, long groupId, long userId, long statusId, OrderByComparator<MembershipRequest> orderByComparator) throws NoSuchMembershipRequestException
membershipRequestId
- the primary key of the current membership requestgroupId
- the group IDuserId
- the user IDstatusId
- the status IDorderByComparator
- the comparator to order the set by (optionally null
)NoSuchMembershipRequestException
- if a membership request with the primary key could not be foundvoid removeByG_U_S(long groupId, long userId, long statusId)
groupId
- the group IDuserId
- the user IDstatusId
- the status IDint countByG_U_S(long groupId, long userId, long statusId)
groupId
- the group IDuserId
- the user IDstatusId
- the status IDvoid cacheResult(MembershipRequest membershipRequest)
membershipRequest
- the membership requestvoid cacheResult(List<MembershipRequest> membershipRequests)
membershipRequests
- the membership requestsMembershipRequest create(long membershipRequestId)
membershipRequestId
- the primary key for the new membership requestMembershipRequest remove(long membershipRequestId) throws NoSuchMembershipRequestException
membershipRequestId
- the primary key of the membership requestNoSuchMembershipRequestException
- if a membership request with the primary key could not be foundMembershipRequest updateImpl(MembershipRequest membershipRequest)
MembershipRequest findByPrimaryKey(long membershipRequestId) throws NoSuchMembershipRequestException
NoSuchMembershipRequestException
if it could not be found.membershipRequestId
- the primary key of the membership requestNoSuchMembershipRequestException
- if a membership request with the primary key could not be foundMembershipRequest fetchByPrimaryKey(long membershipRequestId)
null
if it could not be found.membershipRequestId
- the primary key of the membership requestnull
if a membership request with the primary key could not be foundMap<Serializable,MembershipRequest> fetchByPrimaryKeys(Set<Serializable> primaryKeys)
fetchByPrimaryKeys
in interface BasePersistence<MembershipRequest>
List<MembershipRequest> findAll()
List<MembershipRequest> 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 MembershipRequestModelImpl
. 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 membership requestsend
- the upper bound of the range of membership requests (not inclusive)List<MembershipRequest> findAll(int start, int end, OrderByComparator<MembershipRequest> 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 MembershipRequestModelImpl
. 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 membership requestsend
- the upper bound of the range of membership requests (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)List<MembershipRequest> findAll(int start, int end, OrderByComparator<MembershipRequest> 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 MembershipRequestModelImpl
. 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 membership requestsend
- the upper bound of the range of membership requests (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)retrieveFromCache
- whether to retrieve from the finder cachevoid removeAll()
int countAll()