Liferay 6.2-ce-ga5

com.liferay.portal.service
Interface MembershipRequestService

All Superinterfaces:
BaseService
All Known Implementing Classes:
MembershipRequestServiceWrapper

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

Provides the remote service interface for MembershipRequest. 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, ServiceContext serviceContext)
           
 void deleteMembershipRequests(long groupId, int statusId)
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 MembershipRequest getMembershipRequest(long membershipRequestId)
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void updateStatus(long membershipRequestId, String reviewComments, int statusId, ServiceContext serviceContext)
           
 

Method Detail

getBeanIdentifier

String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Returns:
the Spring bean ID for this bean

setBeanIdentifier

void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Parameters:
beanIdentifier - the Spring bean ID for this bean

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.2-ce-ga5