| com.liferay.portlet.polls.service.PollsQuestionService
All known Subclasses: com.liferay.portlet.polls.service.base.PollsQuestionServiceBaseImpl,
PollsQuestionService | public interface PollsQuestionService (Code) | | View Source
ServiceBuilder generated this class. Modifications in this class will be
overwritten the next time is generated.
This interface defines the service. The default implementation is
com.liferay.portlet.polls.service.impl.PollsQuestionServiceImpl .
Modify methods in that class and rerun ServiceBuilder to populate this class
and all other generated classes.
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.
author: Brian Wing Shun Chan See Also: com.liferay.portlet.polls.service.PollsQuestionServiceFactory See Also: com.liferay.portlet.polls.service.PollsQuestionServiceUtil |
Method Summary | |
public com.liferay.portlet.polls.model.PollsQuestion | addQuestion(long plid, java.lang.String title, java.lang.String description, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, boolean neverExpire, java.util.List choices, boolean addCommunityPermissions, boolean addGuestPermissions) | public com.liferay.portlet.polls.model.PollsQuestion | addQuestion(long plid, java.lang.String title, java.lang.String description, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, boolean neverExpire, java.util.List choices, java.lang.String[] communityPermissions, java.lang.String[] guestPermissions) | public void | deleteQuestion(long questionId) | public com.liferay.portlet.polls.model.PollsQuestion | getQuestion(long questionId) | public com.liferay.portlet.polls.model.PollsQuestion | updateQuestion(long questionId, java.lang.String title, java.lang.String description, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, boolean neverExpire, java.util.List choices) |
addQuestion | public com.liferay.portlet.polls.model.PollsQuestion addQuestion(long plid, java.lang.String title, java.lang.String description, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, boolean neverExpire, java.util.List choices, boolean addCommunityPermissions, boolean addGuestPermissions) throws java.rmi.RemoteException, com.liferay.portal.SystemException, com.liferay.portal.PortalException(Code) | | |
addQuestion | public com.liferay.portlet.polls.model.PollsQuestion addQuestion(long plid, java.lang.String title, java.lang.String description, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, boolean neverExpire, java.util.List choices, java.lang.String[] communityPermissions, java.lang.String[] guestPermissions) throws java.rmi.RemoteException, com.liferay.portal.SystemException, com.liferay.portal.PortalException(Code) | | |
updateQuestion | public com.liferay.portlet.polls.model.PollsQuestion updateQuestion(long questionId, java.lang.String title, java.lang.String description, int expirationDateMonth, int expirationDateDay, int expirationDateYear, int expirationDateHour, int expirationDateMinute, boolean neverExpire, java.util.List choices) throws java.rmi.RemoteException, com.liferay.portal.SystemException, com.liferay.portal.PortalException(Code) | | |
|
|