Liferay 6.1.10-ee-ga1

com.liferay.portal.service
Interface MembershipRequestService

All Known Implementing Classes:
MembershipRequestServiceBaseImpl, MembershipRequestServiceImpl, MembershipRequestServiceWrapper

@JSONWebService
@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface MembershipRequestService

The interface for the membership request remote service.

This is a remote service. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.

See Also:
MembershipRequestServiceUtil, MembershipRequestServiceBaseImpl, MembershipRequestServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Method Summary
 MembershipRequest addMembershipRequest(long groupId, String comments, ServiceContext serviceContext)
           
 void deleteMembershipRequests(long groupId, int statusId)
           
 MembershipRequest getMembershipRequest(long membershipRequestId)
           
 void updateStatus(long membershipRequestId, String reviewComments, int statusId, ServiceContext serviceContext)
           
 

Method Detail

addMembershipRequest

MembershipRequest addMembershipRequest(long groupId,
                                       String comments,
                                       ServiceContext serviceContext)
                                       throws PortalException,
                                              SystemException
Throws:
PortalException
SystemException

deleteMembershipRequests

void deleteMembershipRequests(long groupId,
                              int statusId)
                              throws PortalException,
                                     SystemException
Throws:
PortalException
SystemException

getMembershipRequest

@Transactional(propagation=SUPPORTS,
               readOnly=true)
MembershipRequest getMembershipRequest(long membershipRequestId)
                                       throws PortalException,
                                              SystemException
Throws:
PortalException
SystemException

updateStatus

void updateStatus(long membershipRequestId,
                  String reviewComments,
                  int statusId,
                  ServiceContext serviceContext)
                  throws PortalException,
                         SystemException
Throws:
PortalException
SystemException

Liferay 6.1.10-ee-ga1