Liferay 6.0.5

com.liferay.portlet.social.service
Class SocialRequestLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portlet.social.service.SocialRequestLocalServiceWrapper
All Implemented Interfaces:
SocialRequestLocalService

public class SocialRequestLocalServiceWrapper
extends Object
implements SocialRequestLocalService

This class is a wrapper for SocialRequestLocalService.

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

Constructor Summary
SocialRequestLocalServiceWrapper(SocialRequestLocalService socialRequestLocalService)
           
 
Method Summary
 SocialRequest addRequest(long userId, long groupId, String className, long classPK, int type, String extraData, long receiverUserId)
           
 SocialRequest addSocialRequest(SocialRequest socialRequest)
          Adds the social request to the database.
 SocialRequest createSocialRequest(long requestId)
          Creates a new social request with the primary key.
 void deleteReceiverUserRequests(long receiverUserId)
           
 void deleteRequest(long requestId)
           
 void deleteSocialRequest(long requestId)
          Deletes the social request with the primary key from the database.
 void deleteSocialRequest(SocialRequest socialRequest)
          Deletes the social request from the database.
 void deleteUserRequests(long userId)
           
 List dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
          Performs a dynamic query on the database and returns a range of the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
          Performs a dynamic query on the database and returns an ordered range of the matching rows.
 long dynamicQueryCount(DynamicQuery dynamicQuery)
          Counts the number of rows that match the dynamic query.
 List<SocialRequest> getReceiverUserRequests(long receiverUserId, int start, int end)
           
 List<SocialRequest> getReceiverUserRequests(long receiverUserId, int status, int start, int end)
           
 int getReceiverUserRequestsCount(long receiverUserId)
           
 int getReceiverUserRequestsCount(long receiverUserId, int status)
           
 SocialRequest getSocialRequest(long requestId)
          Gets the social request with the primary key.
 SocialRequest getSocialRequestByUuidAndGroupId(String uuid, long groupId)
          Gets the social request with the UUID and group id.
 List<SocialRequest> getSocialRequests(int start, int end)
          Gets a range of all the social requests.
 int getSocialRequestsCount()
          Gets the number of social requests.
 List<SocialRequest> getUserRequests(long userId, int start, int end)
           
 List<SocialRequest> getUserRequests(long userId, int status, int start, int end)
           
 int getUserRequestsCount(long userId)
           
 int getUserRequestsCount(long userId, int status)
           
 SocialRequestLocalService getWrappedSocialRequestLocalService()
           
 boolean hasRequest(long userId, String className, long classPK, int type, int status)
           
 boolean hasRequest(long userId, String className, long classPK, int type, long receiverUserId, int status)
           
 SocialRequest updateRequest(long requestId, int status, ThemeDisplay themeDisplay)
           
 SocialRequest updateSocialRequest(SocialRequest socialRequest)
          Updates the social request in the database.
 SocialRequest updateSocialRequest(SocialRequest socialRequest, boolean merge)
          Updates the social request in the database.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SocialRequestLocalServiceWrapper

public SocialRequestLocalServiceWrapper(SocialRequestLocalService socialRequestLocalService)
Method Detail

addSocialRequest

public SocialRequest addSocialRequest(SocialRequest socialRequest)
                               throws SystemException
Adds the social request to the database. Also notifies the appropriate model listeners.

Specified by:
addSocialRequest in interface SocialRequestLocalService
Parameters:
socialRequest - the social request to add
Returns:
the social request that was added
Throws:
SystemException - if a system exception occurred

createSocialRequest

public SocialRequest createSocialRequest(long requestId)
Creates a new social request with the primary key. Does not add the social request to the database.

Specified by:
createSocialRequest in interface SocialRequestLocalService
Parameters:
requestId - the primary key for the new social request
Returns:
the new social request

deleteSocialRequest

public void deleteSocialRequest(long requestId)
                         throws PortalException,
                                SystemException
Deletes the social request with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
deleteSocialRequest in interface SocialRequestLocalService
Parameters:
requestId - the primary key of the social request to delete
Throws:
PortalException - if a social request with the primary key could not be found
SystemException - if a system exception occurred

deleteSocialRequest

public void deleteSocialRequest(SocialRequest socialRequest)
                         throws SystemException
Deletes the social request from the database. Also notifies the appropriate model listeners.

Specified by:
deleteSocialRequest in interface SocialRequestLocalService
Parameters:
socialRequest - the social request to delete
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery)
                  throws SystemException
Performs a dynamic query on the database and returns the matching rows.

Specified by:
dynamicQuery in interface SocialRequestLocalService
Parameters:
dynamicQuery - the dynamic query to search with
Returns:
the matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery,
                         int start,
                         int end)
                  throws SystemException
Performs a dynamic query on the database and returns a range of the matching rows.

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.

Specified by:
dynamicQuery in interface SocialRequestLocalService
Parameters:
dynamicQuery - the dynamic query to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (not inclusive)
Returns:
the range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery,
                         int start,
                         int end,
                         OrderByComparator orderByComparator)
                  throws SystemException
Performs a dynamic query on the database and returns an ordered range of the matching rows.

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.

Specified by:
dynamicQuery in interface SocialRequestLocalService
Parameters:
dynamicQuery - the dynamic query to search with
start - the lower bound of the range of model instances to return
end - the upper bound of the range of model instances to return (not inclusive)
orderByComparator - the comparator to order the results by
Returns:
the ordered range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

public long dynamicQueryCount(DynamicQuery dynamicQuery)
                       throws SystemException
Counts the number of rows that match the dynamic query.

Specified by:
dynamicQueryCount in interface SocialRequestLocalService
Parameters:
dynamicQuery - the dynamic query to search with
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

getSocialRequest

public SocialRequest getSocialRequest(long requestId)
                               throws PortalException,
                                      SystemException
Gets the social request with the primary key.

Specified by:
getSocialRequest in interface SocialRequestLocalService
Parameters:
requestId - the primary key of the social request to get
Returns:
the social request
Throws:
PortalException - if a social request with the primary key could not be found
SystemException - if a system exception occurred

getSocialRequestByUuidAndGroupId

public SocialRequest getSocialRequestByUuidAndGroupId(String uuid,
                                                      long groupId)
                                               throws PortalException,
                                                      SystemException
Gets the social request with the UUID and group id.

Specified by:
getSocialRequestByUuidAndGroupId in interface SocialRequestLocalService
Parameters:
uuid - the UUID of social request to get
groupId - the group id of the social request to get
Returns:
the social request
Throws:
PortalException - if a social request with the UUID and group id could not be found
SystemException - if a system exception occurred

getSocialRequests

public List<SocialRequest> getSocialRequests(int start,
                                             int end)
                                      throws SystemException
Gets a range of all the social 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.

Specified by:
getSocialRequests in interface SocialRequestLocalService
Parameters:
start - the lower bound of the range of social requests to return
end - the upper bound of the range of social requests to return (not inclusive)
Returns:
the range of social requests
Throws:
SystemException - if a system exception occurred

getSocialRequestsCount

public int getSocialRequestsCount()
                           throws SystemException
Gets the number of social requests.

Specified by:
getSocialRequestsCount in interface SocialRequestLocalService
Returns:
the number of social requests
Throws:
SystemException - if a system exception occurred

updateSocialRequest

public SocialRequest updateSocialRequest(SocialRequest socialRequest)
                                  throws SystemException
Updates the social request in the database. Also notifies the appropriate model listeners.

Specified by:
updateSocialRequest in interface SocialRequestLocalService
Parameters:
socialRequest - the social request to update
Returns:
the social request that was updated
Throws:
SystemException - if a system exception occurred

updateSocialRequest

public SocialRequest updateSocialRequest(SocialRequest socialRequest,
                                         boolean merge)
                                  throws SystemException
Updates the social request in the database. Also notifies the appropriate model listeners.

Specified by:
updateSocialRequest in interface SocialRequestLocalService
Parameters:
socialRequest - the social request to update
merge - whether to merge the social request with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean) for an explanation.
Returns:
the social request that was updated
Throws:
SystemException - if a system exception occurred

addRequest

public SocialRequest addRequest(long userId,
                                long groupId,
                                String className,
                                long classPK,
                                int type,
                                String extraData,
                                long receiverUserId)
                         throws PortalException,
                                SystemException
Specified by:
addRequest in interface SocialRequestLocalService
Throws:
PortalException
SystemException

deleteReceiverUserRequests

public void deleteReceiverUserRequests(long receiverUserId)
                                throws SystemException
Specified by:
deleteReceiverUserRequests in interface SocialRequestLocalService
Throws:
SystemException

deleteRequest

public void deleteRequest(long requestId)
                   throws PortalException,
                          SystemException
Specified by:
deleteRequest in interface SocialRequestLocalService
Throws:
PortalException
SystemException

deleteUserRequests

public void deleteUserRequests(long userId)
                        throws SystemException
Specified by:
deleteUserRequests in interface SocialRequestLocalService
Throws:
SystemException

getReceiverUserRequests

public List<SocialRequest> getReceiverUserRequests(long receiverUserId,
                                                   int start,
                                                   int end)
                                            throws SystemException
Specified by:
getReceiverUserRequests in interface SocialRequestLocalService
Throws:
SystemException

getReceiverUserRequests

public List<SocialRequest> getReceiverUserRequests(long receiverUserId,
                                                   int status,
                                                   int start,
                                                   int end)
                                            throws SystemException
Specified by:
getReceiverUserRequests in interface SocialRequestLocalService
Throws:
SystemException

getReceiverUserRequestsCount

public int getReceiverUserRequestsCount(long receiverUserId)
                                 throws SystemException
Specified by:
getReceiverUserRequestsCount in interface SocialRequestLocalService
Throws:
SystemException

getReceiverUserRequestsCount

public int getReceiverUserRequestsCount(long receiverUserId,
                                        int status)
                                 throws SystemException
Specified by:
getReceiverUserRequestsCount in interface SocialRequestLocalService
Throws:
SystemException

getUserRequests

public List<SocialRequest> getUserRequests(long userId,
                                           int start,
                                           int end)
                                    throws SystemException
Specified by:
getUserRequests in interface SocialRequestLocalService
Throws:
SystemException

getUserRequests

public List<SocialRequest> getUserRequests(long userId,
                                           int status,
                                           int start,
                                           int end)
                                    throws SystemException
Specified by:
getUserRequests in interface SocialRequestLocalService
Throws:
SystemException

getUserRequestsCount

public int getUserRequestsCount(long userId)
                         throws SystemException
Specified by:
getUserRequestsCount in interface SocialRequestLocalService
Throws:
SystemException

getUserRequestsCount

public int getUserRequestsCount(long userId,
                                int status)
                         throws SystemException
Specified by:
getUserRequestsCount in interface SocialRequestLocalService
Throws:
SystemException

hasRequest

public boolean hasRequest(long userId,
                          String className,
                          long classPK,
                          int type,
                          int status)
                   throws SystemException
Specified by:
hasRequest in interface SocialRequestLocalService
Throws:
SystemException

hasRequest

public boolean hasRequest(long userId,
                          String className,
                          long classPK,
                          int type,
                          long receiverUserId,
                          int status)
                   throws SystemException
Specified by:
hasRequest in interface SocialRequestLocalService
Throws:
SystemException

updateRequest

public SocialRequest updateRequest(long requestId,
                                   int status,
                                   ThemeDisplay themeDisplay)
                            throws PortalException,
                                   SystemException
Specified by:
updateRequest in interface SocialRequestLocalService
Throws:
PortalException
SystemException

getWrappedSocialRequestLocalService

public SocialRequestLocalService getWrappedSocialRequestLocalService()

Liferay 6.0.5