Liferay 6.0.5

com.liferay.portlet.social.service
Interface SocialRequestInterpreterLocalService

All Known Implementing Classes:
SocialRequestInterpreterLocalServiceBaseImpl, SocialRequestInterpreterLocalServiceImpl, SocialRequestInterpreterLocalServiceWrapper

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

The interface for the social request interpreter local service.

Never modify or reference this interface directly. Always use SocialRequestInterpreterLocalServiceUtil to access the social request interpreter local service. Add custom service methods to SocialRequestInterpreterLocalServiceImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.

This is a local service. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.

See Also:
SocialRequestInterpreterLocalServiceUtil, SocialRequestInterpreterLocalServiceBaseImpl, SocialRequestInterpreterLocalServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

Method Summary
 void addRequestInterpreter(SocialRequestInterpreter requestInterpreter)
           
 void deleteRequestInterpreter(SocialRequestInterpreter requestInterpreter)
           
 SocialRequestFeedEntry interpret(SocialRequest request, ThemeDisplay themeDisplay)
           
 void processConfirmation(SocialRequest request, ThemeDisplay themeDisplay)
           
 void processRejection(SocialRequest request, ThemeDisplay themeDisplay)
           
 

Method Detail

addRequestInterpreter

void addRequestInterpreter(SocialRequestInterpreter requestInterpreter)

deleteRequestInterpreter

void deleteRequestInterpreter(SocialRequestInterpreter requestInterpreter)

interpret

SocialRequestFeedEntry interpret(SocialRequest request,
                                 ThemeDisplay themeDisplay)

processConfirmation

void processConfirmation(SocialRequest request,
                         ThemeDisplay themeDisplay)

processRejection

void processRejection(SocialRequest request,
                      ThemeDisplay themeDisplay)

Liferay 6.0.5