1
14
15 package com.liferay.portlet.polls.service;
16
17 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
18
19
39 public class PollsVoteLocalServiceUtil {
40 public static com.liferay.portlet.polls.model.PollsVote addPollsVote(
41 com.liferay.portlet.polls.model.PollsVote pollsVote)
42 throws com.liferay.portal.kernel.exception.SystemException {
43 return getService().addPollsVote(pollsVote);
44 }
45
46 public static com.liferay.portlet.polls.model.PollsVote createPollsVote(
47 long voteId) {
48 return getService().createPollsVote(voteId);
49 }
50
51 public static void deletePollsVote(long voteId)
52 throws com.liferay.portal.kernel.exception.PortalException,
53 com.liferay.portal.kernel.exception.SystemException {
54 getService().deletePollsVote(voteId);
55 }
56
57 public static void deletePollsVote(
58 com.liferay.portlet.polls.model.PollsVote pollsVote)
59 throws com.liferay.portal.kernel.exception.SystemException {
60 getService().deletePollsVote(pollsVote);
61 }
62
63 @SuppressWarnings("unchecked")
64 public static java.util.List dynamicQuery(
65 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66 throws com.liferay.portal.kernel.exception.SystemException {
67 return getService().dynamicQuery(dynamicQuery);
68 }
69
70 @SuppressWarnings("unchecked")
71 public static java.util.List dynamicQuery(
72 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
73 int end) throws com.liferay.portal.kernel.exception.SystemException {
74 return getService().dynamicQuery(dynamicQuery, start, end);
75 }
76
77 @SuppressWarnings("unchecked")
78 public static java.util.List dynamicQuery(
79 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
80 int end,
81 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
82 throws com.liferay.portal.kernel.exception.SystemException {
83 return getService()
84 .dynamicQuery(dynamicQuery, start, end, orderByComparator);
85 }
86
87 public static long dynamicQueryCount(
88 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
89 throws com.liferay.portal.kernel.exception.SystemException {
90 return getService().dynamicQueryCount(dynamicQuery);
91 }
92
93 public static com.liferay.portlet.polls.model.PollsVote getPollsVote(
94 long voteId)
95 throws com.liferay.portal.kernel.exception.PortalException,
96 com.liferay.portal.kernel.exception.SystemException {
97 return getService().getPollsVote(voteId);
98 }
99
100 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> getPollsVotes(
101 int start, int end)
102 throws com.liferay.portal.kernel.exception.SystemException {
103 return getService().getPollsVotes(start, end);
104 }
105
106 public static int getPollsVotesCount()
107 throws com.liferay.portal.kernel.exception.SystemException {
108 return getService().getPollsVotesCount();
109 }
110
111 public static com.liferay.portlet.polls.model.PollsVote updatePollsVote(
112 com.liferay.portlet.polls.model.PollsVote pollsVote)
113 throws com.liferay.portal.kernel.exception.SystemException {
114 return getService().updatePollsVote(pollsVote);
115 }
116
117 public static com.liferay.portlet.polls.model.PollsVote updatePollsVote(
118 com.liferay.portlet.polls.model.PollsVote pollsVote, boolean merge)
119 throws com.liferay.portal.kernel.exception.SystemException {
120 return getService().updatePollsVote(pollsVote, merge);
121 }
122
123 public static com.liferay.portlet.polls.model.PollsVote addVote(
124 long userId, long questionId, long choiceId,
125 com.liferay.portal.service.ServiceContext serviceContext)
126 throws com.liferay.portal.kernel.exception.PortalException,
127 com.liferay.portal.kernel.exception.SystemException {
128 return getService().addVote(userId, questionId, choiceId, serviceContext);
129 }
130
131 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> getChoiceVotes(
132 long choiceId, int start, int end)
133 throws com.liferay.portal.kernel.exception.SystemException {
134 return getService().getChoiceVotes(choiceId, start, end);
135 }
136
137 public static int getChoiceVotesCount(long choiceId)
138 throws com.liferay.portal.kernel.exception.SystemException {
139 return getService().getChoiceVotesCount(choiceId);
140 }
141
142 public static java.util.List<com.liferay.portlet.polls.model.PollsVote> getQuestionVotes(
143 long questionId, int start, int end)
144 throws com.liferay.portal.kernel.exception.SystemException {
145 return getService().getQuestionVotes(questionId, start, end);
146 }
147
148 public static int getQuestionVotesCount(long questionId)
149 throws com.liferay.portal.kernel.exception.SystemException {
150 return getService().getQuestionVotesCount(questionId);
151 }
152
153 public static com.liferay.portlet.polls.model.PollsVote getVote(
154 long questionId, long userId)
155 throws com.liferay.portal.kernel.exception.PortalException,
156 com.liferay.portal.kernel.exception.SystemException {
157 return getService().getVote(questionId, userId);
158 }
159
160 public static PollsVoteLocalService getService() {
161 if (_service == null) {
162 _service = (PollsVoteLocalService)PortalBeanLocatorUtil.locate(PollsVoteLocalService.class.getName());
163 }
164
165 return _service;
166 }
167
168 public void setService(PollsVoteLocalService service) {
169 _service = service;
170 }
171
172 private static PollsVoteLocalService _service;
173 }