Liferay 6.1.10-ee-ga1

com.liferay.portlet.polls.service
Interface PollsQuestionService

All Known Implementing Classes:
PollsQuestionServiceWrapper

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

The interface for the polls question 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:
PollsQuestionServiceUtil, com.liferay.portlet.polls.service.base.PollsQuestionServiceBaseImpl, com.liferay.portlet.polls.service.impl.PollsQuestionServiceImpl

Method Summary
 PollsQuestion addQuestion(Map<Locale,String> titleMap, Map<Locale,String> descriptionMap, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, boolean neverExpire, List<PollsChoice> choices, ServiceContext serviceContext)
           
 void deleteQuestion(long questionId)
           
 PollsQuestion getQuestion(long questionId)
           
 PollsQuestion updateQuestion(long questionId, Map<Locale,String> titleMap, Map<Locale,String> descriptionMap, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, boolean neverExpire, List<PollsChoice> choices, ServiceContext serviceContext)
           
 

Method Detail

addQuestion

PollsQuestion addQuestion(Map<Locale,String> titleMap,
                          Map<Locale,String> descriptionMap,
                          int expirationDateMonth,
                          int expirationDateDay,
                          int expirationDateYear,
                          int expirationDateHour,
                          int expirationDateMinute,
                          boolean neverExpire,
                          List<PollsChoice> choices,
                          ServiceContext serviceContext)
                          throws PortalException,
                                 SystemException
Throws:
PortalException
SystemException

deleteQuestion

void deleteQuestion(long questionId)
                    throws PortalException,
                           SystemException
Throws:
PortalException
SystemException

getQuestion

@Transactional(propagation=SUPPORTS,
               readOnly=true)
PollsQuestion getQuestion(long questionId)
                          throws PortalException,
                                 SystemException
Throws:
PortalException
SystemException

updateQuestion

PollsQuestion updateQuestion(long questionId,
                             Map<Locale,String> titleMap,
                             Map<Locale,String> descriptionMap,
                             int expirationDateMonth,
                             int expirationDateDay,
                             int expirationDateYear,
                             int expirationDateHour,
                             int expirationDateMinute,
                             boolean neverExpire,
                             List<PollsChoice> choices,
                             ServiceContext serviceContext)
                             throws PortalException,
                                    SystemException
Throws:
PortalException
SystemException

Liferay 6.1.10-ee-ga1