001: /**
002: * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
003: *
004: * Permission is hereby granted, free of charge, to any person obtaining a copy
005: * of this software and associated documentation files (the "Software"), to deal
006: * in the Software without restriction, including without limitation the rights
007: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
008: * copies of the Software, and to permit persons to whom the Software is
009: * furnished to do so, subject to the following conditions:
010: *
011: * The above copyright notice and this permission notice shall be included in
012: * all copies or substantial portions of the Software.
013: *
014: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
015: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
016: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
017: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
018: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
019: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
020: * SOFTWARE.
021: */package com.liferay.portlet.polls.service;
022:
023: /**
024: * <a href="PollsQuestionServiceUtil.java.html"><b><i>View Source</i></b></a>
025: *
026: * <p>
027: * ServiceBuilder generated this class. Modifications in this class will be
028: * overwritten the next time is generated.
029: * </p>
030: *
031: * <p>
032: * This class provides static methods for the
033: * <code>com.liferay.portlet.polls.service.PollsQuestionService</code>
034: * bean. The static methods of this class calls the same methods of the bean
035: * instance. It's convenient to be able to just write one line to call a method
036: * on a bean instead of writing a lookup call and a method call.
037: * </p>
038: *
039: * <p>
040: * <code>com.liferay.portlet.polls.service.PollsQuestionServiceFactory</code>
041: * is responsible for the lookup of the bean.
042: * </p>
043: *
044: * @author Brian Wing Shun Chan
045: *
046: * @see com.liferay.portlet.polls.service.PollsQuestionService
047: * @see com.liferay.portlet.polls.service.PollsQuestionServiceFactory
048: *
049: */
050: public class PollsQuestionServiceUtil {
051: public static com.liferay.portlet.polls.model.PollsQuestion addQuestion(
052: long plid, java.lang.String title,
053: java.lang.String description, int expirationDateMonth,
054: int expirationDateDay, int expirationDateYear,
055: int expirationDateHour, int expirationDateMinute,
056: boolean neverExpire, java.util.List choices,
057: boolean addCommunityPermissions, boolean addGuestPermissions)
058: throws com.liferay.portal.PortalException,
059: com.liferay.portal.SystemException,
060: java.rmi.RemoteException {
061: PollsQuestionService pollsQuestionService = PollsQuestionServiceFactory
062: .getService();
063:
064: return pollsQuestionService.addQuestion(plid, title,
065: description, expirationDateMonth, expirationDateDay,
066: expirationDateYear, expirationDateHour,
067: expirationDateMinute, neverExpire, choices,
068: addCommunityPermissions, addGuestPermissions);
069: }
070:
071: public static com.liferay.portlet.polls.model.PollsQuestion addQuestion(
072: long plid, java.lang.String title,
073: java.lang.String description, int expirationDateMonth,
074: int expirationDateDay, int expirationDateYear,
075: int expirationDateHour, int expirationDateMinute,
076: boolean neverExpire, java.util.List choices,
077: java.lang.String[] communityPermissions,
078: java.lang.String[] guestPermissions)
079: throws com.liferay.portal.PortalException,
080: com.liferay.portal.SystemException,
081: java.rmi.RemoteException {
082: PollsQuestionService pollsQuestionService = PollsQuestionServiceFactory
083: .getService();
084:
085: return pollsQuestionService.addQuestion(plid, title,
086: description, expirationDateMonth, expirationDateDay,
087: expirationDateYear, expirationDateHour,
088: expirationDateMinute, neverExpire, choices,
089: communityPermissions, guestPermissions);
090: }
091:
092: public static void deleteQuestion(long questionId)
093: throws com.liferay.portal.PortalException,
094: com.liferay.portal.SystemException,
095: java.rmi.RemoteException {
096: PollsQuestionService pollsQuestionService = PollsQuestionServiceFactory
097: .getService();
098:
099: pollsQuestionService.deleteQuestion(questionId);
100: }
101:
102: public static com.liferay.portlet.polls.model.PollsQuestion getQuestion(
103: long questionId) throws com.liferay.portal.PortalException,
104: com.liferay.portal.SystemException,
105: java.rmi.RemoteException {
106: PollsQuestionService pollsQuestionService = PollsQuestionServiceFactory
107: .getService();
108:
109: return pollsQuestionService.getQuestion(questionId);
110: }
111:
112: public static com.liferay.portlet.polls.model.PollsQuestion updateQuestion(
113: long questionId, java.lang.String title,
114: java.lang.String description, int expirationDateMonth,
115: int expirationDateDay, int expirationDateYear,
116: int expirationDateHour, int expirationDateMinute,
117: boolean neverExpire, java.util.List choices)
118: throws com.liferay.portal.PortalException,
119: com.liferay.portal.SystemException,
120: java.rmi.RemoteException {
121: PollsQuestionService pollsQuestionService = PollsQuestionServiceFactory
122: .getService();
123:
124: return pollsQuestionService.updateQuestion(questionId, title,
125: description, expirationDateMonth, expirationDateDay,
126: expirationDateYear, expirationDateHour,
127: expirationDateMinute, neverExpire, choices);
128: }
129: }
|