Liferay 6.0-ee-sp2

com.liferay.portlet.social.service
Interface SocialRequestInterpreterLocalService

All Known Implementing Classes:
SocialRequestInterpreterLocalServiceWrapper

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

The interface for the social request interpreter local service.

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, com.liferay.portlet.social.service.base.SocialRequestInterpreterLocalServiceBaseImpl, com.liferay.portlet.social.service.impl.SocialRequestInterpreterLocalServiceImpl

Method Summary
 void addRequestInterpreter(SocialRequestInterpreter requestInterpreter)
           
 void deleteRequestInterpreter(SocialRequestInterpreter requestInterpreter)
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 SocialRequestFeedEntry interpret(SocialRequest request, ThemeDisplay themeDisplay)
           
 void processConfirmation(SocialRequest request, ThemeDisplay themeDisplay)
           
 void processRejection(SocialRequest request, ThemeDisplay themeDisplay)
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 

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

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-ee-sp2