|
Liferay 6.0-ee-sp2 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.liferay.portlet.social.service.SocialRequestLocalServiceWrapper
public class SocialRequestLocalServiceWrapper
This class is a wrapper for SocialRequestLocalService.
SocialRequestLocalService| 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 |
deleteRequest(SocialRequest request)
|
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)
Returns the number of rows that match the dynamic query. |
String |
getBeanIdentifier()
Returns the Spring bean ID for this bean. |
PersistedModel |
getPersistedModel(Serializable primaryKeyObj)
|
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)
Returns the social request with the primary key. |
SocialRequest |
getSocialRequestByUuidAndGroupId(String uuid,
long groupId)
Returns the social request with the UUID in the group. |
List<SocialRequest> |
getSocialRequests(int start,
int end)
Returns a range of all the social requests. |
int |
getSocialRequestsCount()
Returns 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)
|
void |
setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean. |
void |
setWrappedSocialRequestLocalService(SocialRequestLocalService socialRequestLocalService)
|
SocialRequest |
updateRequest(long requestId,
int status,
ThemeDisplay themeDisplay)
|
SocialRequest |
updateSocialRequest(SocialRequest socialRequest)
Updates the social request in the database or adds it if it does not yet exist. |
SocialRequest |
updateSocialRequest(SocialRequest socialRequest,
boolean merge)
Updates the social request in the database or adds it if it does not yet exist. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public SocialRequestLocalServiceWrapper(SocialRequestLocalService socialRequestLocalService)
| Method Detail |
|---|
public SocialRequest addSocialRequest(SocialRequest socialRequest)
throws SystemException
addSocialRequest in interface SocialRequestLocalServicesocialRequest - the social request
SystemException - if a system exception occurredpublic SocialRequest createSocialRequest(long requestId)
createSocialRequest in interface SocialRequestLocalServicerequestId - the primary key for the new social request
public void deleteSocialRequest(long requestId)
throws PortalException,
SystemException
deleteSocialRequest in interface SocialRequestLocalServicerequestId - the primary key of the social request
PortalException - if a social request with the primary key could not be found
SystemException - if a system exception occurred
public void deleteSocialRequest(SocialRequest socialRequest)
throws SystemException
deleteSocialRequest in interface SocialRequestLocalServicesocialRequest - the social request
SystemException - if a system exception occurred
public List dynamicQuery(DynamicQuery dynamicQuery)
throws SystemException
dynamicQuery in interface SocialRequestLocalServicedynamicQuery - the dynamic query
SystemException - if a system exception occurred
public List dynamicQuery(DynamicQuery dynamicQuery,
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.
dynamicQuery in interface SocialRequestLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)
SystemException - if a system exception occurred
public List dynamicQuery(DynamicQuery dynamicQuery,
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.
dynamicQuery in interface SocialRequestLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)orderByComparator - the comparator to order the results by (optionally null)
SystemException - if a system exception occurred
public long dynamicQueryCount(DynamicQuery dynamicQuery)
throws SystemException
dynamicQueryCount in interface SocialRequestLocalServicedynamicQuery - the dynamic query
SystemException - if a system exception occurred
public SocialRequest getSocialRequest(long requestId)
throws PortalException,
SystemException
getSocialRequest in interface SocialRequestLocalServicerequestId - the primary key of the social request
PortalException - if a social request with the primary key could not be found
SystemException - if a system exception occurred
public PersistedModel getPersistedModel(Serializable primaryKeyObj)
throws PortalException,
SystemException
getPersistedModel in interface PersistedModelLocalServicegetPersistedModel in interface SocialRequestLocalServicePortalException
SystemException
public SocialRequest getSocialRequestByUuidAndGroupId(String uuid,
long groupId)
throws PortalException,
SystemException
getSocialRequestByUuidAndGroupId in interface SocialRequestLocalServiceuuid - the UUID of social requestgroupId - the group id of the social request
PortalException - if a social request with the UUID in the group could not be found
SystemException - if a system exception occurred
public List<SocialRequest> getSocialRequests(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.
getSocialRequests in interface SocialRequestLocalServicestart - the lower bound of the range of social requestsend - the upper bound of the range of social requests (not inclusive)
SystemException - if a system exception occurred
public int getSocialRequestsCount()
throws SystemException
getSocialRequestsCount in interface SocialRequestLocalServiceSystemException - if a system exception occurred
public SocialRequest updateSocialRequest(SocialRequest socialRequest)
throws SystemException
updateSocialRequest in interface SocialRequestLocalServicesocialRequest - the social request
SystemException - if a system exception occurred
public SocialRequest updateSocialRequest(SocialRequest socialRequest,
boolean merge)
throws SystemException
updateSocialRequest in interface SocialRequestLocalServicesocialRequest - the social requestmerge - 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.
SystemException - if a system exception occurredpublic String getBeanIdentifier()
getBeanIdentifier in interface SocialRequestLocalServicepublic void setBeanIdentifier(String beanIdentifier)
setBeanIdentifier in interface SocialRequestLocalServicebeanIdentifier - the Spring bean ID for this bean
public SocialRequest addRequest(long userId,
long groupId,
String className,
long classPK,
int type,
String extraData,
long receiverUserId)
throws PortalException,
SystemException
addRequest in interface SocialRequestLocalServicePortalException
SystemException
public void deleteReceiverUserRequests(long receiverUserId)
throws SystemException
deleteReceiverUserRequests in interface SocialRequestLocalServiceSystemException
public void deleteRequest(long requestId)
throws PortalException,
SystemException
deleteRequest in interface SocialRequestLocalServicePortalException
SystemException
public void deleteRequest(SocialRequest request)
throws SystemException
deleteRequest in interface SocialRequestLocalServiceSystemException
public void deleteUserRequests(long userId)
throws SystemException
deleteUserRequests in interface SocialRequestLocalServiceSystemException
public List<SocialRequest> getReceiverUserRequests(long receiverUserId,
int start,
int end)
throws SystemException
getReceiverUserRequests in interface SocialRequestLocalServiceSystemException
public List<SocialRequest> getReceiverUserRequests(long receiverUserId,
int status,
int start,
int end)
throws SystemException
getReceiverUserRequests in interface SocialRequestLocalServiceSystemException
public int getReceiverUserRequestsCount(long receiverUserId)
throws SystemException
getReceiverUserRequestsCount in interface SocialRequestLocalServiceSystemException
public int getReceiverUserRequestsCount(long receiverUserId,
int status)
throws SystemException
getReceiverUserRequestsCount in interface SocialRequestLocalServiceSystemException
public List<SocialRequest> getUserRequests(long userId,
int start,
int end)
throws SystemException
getUserRequests in interface SocialRequestLocalServiceSystemException
public List<SocialRequest> getUserRequests(long userId,
int status,
int start,
int end)
throws SystemException
getUserRequests in interface SocialRequestLocalServiceSystemException
public int getUserRequestsCount(long userId)
throws SystemException
getUserRequestsCount in interface SocialRequestLocalServiceSystemException
public int getUserRequestsCount(long userId,
int status)
throws SystemException
getUserRequestsCount in interface SocialRequestLocalServiceSystemException
public boolean hasRequest(long userId,
String className,
long classPK,
int type,
int status)
throws SystemException
hasRequest in interface SocialRequestLocalServiceSystemException
public boolean hasRequest(long userId,
String className,
long classPK,
int type,
long receiverUserId,
int status)
throws SystemException
hasRequest in interface SocialRequestLocalServiceSystemException
public SocialRequest updateRequest(long requestId,
int status,
ThemeDisplay themeDisplay)
throws PortalException,
SystemException
updateRequest in interface SocialRequestLocalServicePortalException
SystemExceptionpublic SocialRequestLocalService getWrappedSocialRequestLocalService()
public void setWrappedSocialRequestLocalService(SocialRequestLocalService socialRequestLocalService)
|
Liferay 6.0-ee-sp2 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||