Liferay 6.1.0

com.liferay.portal.service
Interface MembershipRequestService

All Known Implementing Classes:
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, com.liferay.portal.service.impl.MembershipRequestServiceImpl

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

Method Detail

addMembershipRequest

MembershipRequest addMembershipRequest(long groupId,
                                       String comments)
                                       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)
                  throws PortalException,
                         SystemException
Throws:
PortalException
SystemException

Liferay 6.1.0