Liferay 6.0.5

com.liferay.portal.service
Interface MembershipRequestService

All Known Implementing Classes:
MembershipRequestServiceBaseImpl, MembershipRequestServiceImpl, MembershipRequestServiceWrapper

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

The interface for the membership request remote service.

Never modify or reference this interface directly. Always use MembershipRequestServiceUtil to access the membership request remote service. Add custom service methods to MembershipRequestServiceImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.

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 is generated.

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.0.5