Liferay 6.0.5

com.liferay.portal.service.persistence
Interface MembershipRequestPersistence

All Superinterfaces:
BasePersistence<MembershipRequest>
All Known Implementing Classes:
MembershipRequestPersistenceImpl

public interface MembershipRequestPersistence
extends BasePersistence<MembershipRequest>

The persistence interface for the membership request service.

Never modify or reference this interface directly. Always use MembershipRequestUtil to access the membership request persistence. Modify service.xml and rerun ServiceBuilder to regenerate this interface.

Caching information and settings can be found in portal.properties

See Also:
MembershipRequestPersistenceImpl, MembershipRequestUtil
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Method Summary
 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()
          Counts all the membership requests.
 int countByG_S(long groupId, int statusId)
          Counts all the membership requests where groupId = ? and statusId = ?.
 int countByGroupId(long groupId)
          Counts all the membership requests where groupId = ?.
 int countByUserId(long userId)
          Counts all the membership requests where userId = ?.
 MembershipRequest create(long membershipRequestId)
          Creates a new membership request with the primary key.
 MembershipRequest fetchByPrimaryKey(long membershipRequestId)
          Finds the membership request with the primary key or returns null if it could not be found.
 List<MembershipRequest> findAll()
          Finds all the membership requests.
 List<MembershipRequest> findAll(int start, int end)
          Finds a range of all the membership requests.
 List<MembershipRequest> findAll(int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the membership requests.
 MembershipRequest findByG_S_First(long groupId, int statusId, OrderByComparator orderByComparator)
          Finds the first membership request in the ordered set where groupId = ? and statusId = ?.
 MembershipRequest findByG_S_Last(long groupId, int statusId, OrderByComparator orderByComparator)
          Finds the last membership request in the ordered set where groupId = ? and statusId = ?.
 MembershipRequest[] findByG_S_PrevAndNext(long membershipRequestId, long groupId, int statusId, OrderByComparator orderByComparator)
          Finds the membership requests before and after the current membership request in the ordered set where groupId = ? and statusId = ?.
 List<MembershipRequest> findByG_S(long groupId, int statusId)
          Finds all the membership requests where groupId = ? and statusId = ?.
 List<MembershipRequest> findByG_S(long groupId, int statusId, int start, int end)
          Finds a range of all the membership requests where groupId = ? and statusId = ?.
 List<MembershipRequest> findByG_S(long groupId, int statusId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the membership requests where groupId = ? and statusId = ?.
 MembershipRequest findByGroupId_First(long groupId, OrderByComparator orderByComparator)
          Finds the first membership request in the ordered set where groupId = ?.
 MembershipRequest findByGroupId_Last(long groupId, OrderByComparator orderByComparator)
          Finds the last membership request in the ordered set where groupId = ?.
 MembershipRequest[] findByGroupId_PrevAndNext(long membershipRequestId, long groupId, OrderByComparator orderByComparator)
          Finds the membership requests before and after the current membership request in the ordered set where groupId = ?.
 List<MembershipRequest> findByGroupId(long groupId)
          Finds all the membership requests where groupId = ?.
 List<MembershipRequest> findByGroupId(long groupId, int start, int end)
          Finds a range of all the membership requests where groupId = ?.
 List<MembershipRequest> findByGroupId(long groupId, int start, int end, OrderByComparator orderByComparator)
          Finds an ordered range of all the membership requests where groupId = ?.
 MembershipRequest findByPrimaryKey(long membershipRequestId)
          Finds the membership request with the primary key or throws a NoSuchMembershipRequestException if it could not be found.
 MembershipRequest findByUserId_First(long userId, OrderByComparator orderByComparator)
          Finds the first membership request in the ordered set where userId = ?.
 MembershipRequest findByUserId_Last(long userId, OrderByComparator orderByComparator)
          Finds the last membership request in the ordered set where userId = ?.
 MembershipRequest[] findByUserId_PrevAndNext(long membershipRequestId, long userId, OrderByComparator orderByComparator)
          Finds the membership requests before and after the current membership request in the ordered set where userId = ?.
 List<MembershipRequest> findByUserId(long userId)
          Finds all the membership requests where userId = ?.
 List<MembershipRequest> findByUserId(long userId, int start, int end)
          Finds a range of all the membership requests where userId = ?.
 List<MembershipRequest> findByUserId(long userId, int start, int end, OrderByComparator orderByComparator)
          Finds 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, int statusId)
          Removes all the membership requests where groupId = ? 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, boolean merge)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
clearCache, clearCache, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, registerListener, remove, remove, setDataSource, unregisterListener, update, update
 

Method Detail

cacheResult

void cacheResult(MembershipRequest membershipRequest)
Caches the membership request in the entity cache if it is enabled.

Parameters:
membershipRequest - the membership request to cache

cacheResult

void cacheResult(List<MembershipRequest> membershipRequests)
Caches the membership requests in the entity cache if it is enabled.

Parameters:
membershipRequests - the membership requests to cache

create

MembershipRequest create(long membershipRequestId)
Creates a new membership request with the primary key. Does not add the membership request to the database.

Parameters:
membershipRequestId - the primary key for the new membership request
Returns:
the new membership request

remove

MembershipRequest remove(long membershipRequestId)
                         throws NoSuchMembershipRequestException,
                                SystemException
Removes the membership request with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
membershipRequestId - the primary key of the membership request to remove
Returns:
the membership request that was removed
Throws:
NoSuchMembershipRequestException - if a membership request with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

MembershipRequest updateImpl(MembershipRequest membershipRequest,
                             boolean merge)
                             throws SystemException
Throws:
SystemException

findByPrimaryKey

MembershipRequest findByPrimaryKey(long membershipRequestId)
                                   throws NoSuchMembershipRequestException,
                                          SystemException
Finds the membership request with the primary key or throws a NoSuchMembershipRequestException if it could not be found.

Parameters:
membershipRequestId - the primary key of the membership request to find
Returns:
the membership request
Throws:
NoSuchMembershipRequestException - if a membership request with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

MembershipRequest fetchByPrimaryKey(long membershipRequestId)
                                    throws SystemException
Finds the membership request with the primary key or returns null if it could not be found.

Parameters:
membershipRequestId - the primary key of the membership request to find
Returns:
the membership request, or null if a membership request with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByGroupId

List<MembershipRequest> findByGroupId(long groupId)
                                      throws SystemException
Finds all the membership requests where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the matching membership requests
Throws:
SystemException - if a system exception occurred

findByGroupId

List<MembershipRequest> findByGroupId(long groupId,
                                      int start,
                                      int end)
                                      throws SystemException
Finds a range of all the membership requests where groupId = ?.

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.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of membership requests to return
end - the upper bound of the range of membership requests to return (not inclusive)
Returns:
the range of matching membership requests
Throws:
SystemException - if a system exception occurred

findByGroupId

List<MembershipRequest> findByGroupId(long groupId,
                                      int start,
                                      int end,
                                      OrderByComparator orderByComparator)
                                      throws SystemException
Finds an ordered range of all the membership requests where groupId = ?.

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.

Parameters:
groupId - the group id to search with
start - the lower bound of the range of membership requests to return
end - the upper bound of the range of membership requests to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching membership requests
Throws:
SystemException - if a system exception occurred

findByGroupId_First

MembershipRequest findByGroupId_First(long groupId,
                                      OrderByComparator orderByComparator)
                                      throws NoSuchMembershipRequestException,
                                             SystemException
Finds the first membership request in the ordered set where groupId = ?.

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.

Parameters:
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching membership request
Throws:
NoSuchMembershipRequestException - if a matching membership request could not be found
SystemException - if a system exception occurred

findByGroupId_Last

MembershipRequest findByGroupId_Last(long groupId,
                                     OrderByComparator orderByComparator)
                                     throws NoSuchMembershipRequestException,
                                            SystemException
Finds the last membership request in the ordered set where groupId = ?.

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.

Parameters:
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching membership request
Throws:
NoSuchMembershipRequestException - if a matching membership request could not be found
SystemException - if a system exception occurred

findByGroupId_PrevAndNext

MembershipRequest[] findByGroupId_PrevAndNext(long membershipRequestId,
                                              long groupId,
                                              OrderByComparator orderByComparator)
                                              throws NoSuchMembershipRequestException,
                                                     SystemException
Finds the membership requests before and after the current membership request in the ordered set where groupId = ?.

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.

Parameters:
membershipRequestId - the primary key of the current membership request
groupId - the group id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next membership request
Throws:
NoSuchMembershipRequestException - if a membership request with the primary key could not be found
SystemException - if a system exception occurred

findByUserId

List<MembershipRequest> findByUserId(long userId)
                                     throws SystemException
Finds all the membership requests where userId = ?.

Parameters:
userId - the user id to search with
Returns:
the matching membership requests
Throws:
SystemException - if a system exception occurred

findByUserId

List<MembershipRequest> findByUserId(long userId,
                                     int start,
                                     int end)
                                     throws SystemException
Finds a range of all the membership requests where userId = ?.

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.

Parameters:
userId - the user id to search with
start - the lower bound of the range of membership requests to return
end - the upper bound of the range of membership requests to return (not inclusive)
Returns:
the range of matching membership requests
Throws:
SystemException - if a system exception occurred

findByUserId

List<MembershipRequest> findByUserId(long userId,
                                     int start,
                                     int end,
                                     OrderByComparator orderByComparator)
                                     throws SystemException
Finds an ordered range of all the membership requests where userId = ?.

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.

Parameters:
userId - the user id to search with
start - the lower bound of the range of membership requests to return
end - the upper bound of the range of membership requests to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching membership requests
Throws:
SystemException - if a system exception occurred

findByUserId_First

MembershipRequest findByUserId_First(long userId,
                                     OrderByComparator orderByComparator)
                                     throws NoSuchMembershipRequestException,
                                            SystemException
Finds the first membership request in the ordered set where userId = ?.

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.

Parameters:
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching membership request
Throws:
NoSuchMembershipRequestException - if a matching membership request could not be found
SystemException - if a system exception occurred

findByUserId_Last

MembershipRequest findByUserId_Last(long userId,
                                    OrderByComparator orderByComparator)
                                    throws NoSuchMembershipRequestException,
                                           SystemException
Finds the last membership request in the ordered set where userId = ?.

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.

Parameters:
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching membership request
Throws:
NoSuchMembershipRequestException - if a matching membership request could not be found
SystemException - if a system exception occurred

findByUserId_PrevAndNext

MembershipRequest[] findByUserId_PrevAndNext(long membershipRequestId,
                                             long userId,
                                             OrderByComparator orderByComparator)
                                             throws NoSuchMembershipRequestException,
                                                    SystemException
Finds the membership requests before and after the current membership request in the ordered set where userId = ?.

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.

Parameters:
membershipRequestId - the primary key of the current membership request
userId - the user id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next membership request
Throws:
NoSuchMembershipRequestException - if a membership request with the primary key could not be found
SystemException - if a system exception occurred

findByG_S

List<MembershipRequest> findByG_S(long groupId,
                                  int statusId)
                                  throws SystemException
Finds all the membership requests where groupId = ? and statusId = ?.

Parameters:
groupId - the group id to search with
statusId - the status id to search with
Returns:
the matching membership requests
Throws:
SystemException - if a system exception occurred

findByG_S

List<MembershipRequest> findByG_S(long groupId,
                                  int statusId,
                                  int start,
                                  int end)
                                  throws SystemException
Finds a range of all the membership requests where groupId = ? and statusId = ?.

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.

Parameters:
groupId - the group id to search with
statusId - the status id to search with
start - the lower bound of the range of membership requests to return
end - the upper bound of the range of membership requests to return (not inclusive)
Returns:
the range of matching membership requests
Throws:
SystemException - if a system exception occurred

findByG_S

List<MembershipRequest> findByG_S(long groupId,
                                  int statusId,
                                  int start,
                                  int end,
                                  OrderByComparator orderByComparator)
                                  throws SystemException
Finds an ordered range of all the membership requests where groupId = ? and statusId = ?.

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.

Parameters:
groupId - the group id to search with
statusId - the status id to search with
start - the lower bound of the range of membership requests to return
end - the upper bound of the range of membership requests to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching membership requests
Throws:
SystemException - if a system exception occurred

findByG_S_First

MembershipRequest findByG_S_First(long groupId,
                                  int statusId,
                                  OrderByComparator orderByComparator)
                                  throws NoSuchMembershipRequestException,
                                         SystemException
Finds the first membership request in the ordered set where groupId = ? and statusId = ?.

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.

Parameters:
groupId - the group id to search with
statusId - the status id to search with
orderByComparator - the comparator to order the set by
Returns:
the first matching membership request
Throws:
NoSuchMembershipRequestException - if a matching membership request could not be found
SystemException - if a system exception occurred

findByG_S_Last

MembershipRequest findByG_S_Last(long groupId,
                                 int statusId,
                                 OrderByComparator orderByComparator)
                                 throws NoSuchMembershipRequestException,
                                        SystemException
Finds the last membership request in the ordered set where groupId = ? and statusId = ?.

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.

Parameters:
groupId - the group id to search with
statusId - the status id to search with
orderByComparator - the comparator to order the set by
Returns:
the last matching membership request
Throws:
NoSuchMembershipRequestException - if a matching membership request could not be found
SystemException - if a system exception occurred

findByG_S_PrevAndNext

MembershipRequest[] findByG_S_PrevAndNext(long membershipRequestId,
                                          long groupId,
                                          int statusId,
                                          OrderByComparator orderByComparator)
                                          throws NoSuchMembershipRequestException,
                                                 SystemException
Finds the membership requests before and after the current membership request in the ordered set where groupId = ? and statusId = ?.

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.

Parameters:
membershipRequestId - the primary key of the current membership request
groupId - the group id to search with
statusId - the status id to search with
orderByComparator - the comparator to order the set by
Returns:
the previous, current, and next membership request
Throws:
NoSuchMembershipRequestException - if a membership request with the primary key could not be found
SystemException - if a system exception occurred

findAll

List<MembershipRequest> findAll()
                                throws SystemException
Finds all the membership requests.

Returns:
the membership requests
Throws:
SystemException - if a system exception occurred

findAll

List<MembershipRequest> findAll(int start,
                                int end)
                                throws SystemException
Finds a range of all the membership requests.

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.

Parameters:
start - the lower bound of the range of membership requests to return
end - the upper bound of the range of membership requests to return (not inclusive)
Returns:
the range of membership requests
Throws:
SystemException - if a system exception occurred

findAll

List<MembershipRequest> findAll(int start,
                                int end,
                                OrderByComparator orderByComparator)
                                throws SystemException
Finds an ordered range of all the membership requests.

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.

Parameters:
start - the lower bound of the range of membership requests to return
end - the upper bound of the range of membership requests to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of membership requests
Throws:
SystemException - if a system exception occurred

removeByGroupId

void removeByGroupId(long groupId)
                     throws SystemException
Removes all the membership requests where groupId = ? from the database.

Parameters:
groupId - the group id to search with
Throws:
SystemException - if a system exception occurred

removeByUserId

void removeByUserId(long userId)
                    throws SystemException
Removes all the membership requests where userId = ? from the database.

Parameters:
userId - the user id to search with
Throws:
SystemException - if a system exception occurred

removeByG_S

void removeByG_S(long groupId,
                 int statusId)
                 throws SystemException
Removes all the membership requests where groupId = ? and statusId = ? from the database.

Parameters:
groupId - the group id to search with
statusId - the status id to search with
Throws:
SystemException - if a system exception occurred

removeAll

void removeAll()
               throws SystemException
Removes all the membership requests from the database.

Throws:
SystemException - if a system exception occurred

countByGroupId

int countByGroupId(long groupId)
                   throws SystemException
Counts all the membership requests where groupId = ?.

Parameters:
groupId - the group id to search with
Returns:
the number of matching membership requests
Throws:
SystemException - if a system exception occurred

countByUserId

int countByUserId(long userId)
                  throws SystemException
Counts all the membership requests where userId = ?.

Parameters:
userId - the user id to search with
Returns:
the number of matching membership requests
Throws:
SystemException - if a system exception occurred

countByG_S

int countByG_S(long groupId,
               int statusId)
               throws SystemException
Counts all the membership requests where groupId = ? and statusId = ?.

Parameters:
groupId - the group id to search with
statusId - the status id to search with
Returns:
the number of matching membership requests
Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Counts all the membership requests.

Returns:
the number of membership requests
Throws:
SystemException - if a system exception occurred

Liferay 6.0.5