1   /**
2    * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.polls.service.persistence;
24  
25  /**
26   * <a href="PollsChoiceUtil.java.html"><b><i>View Source</i></b></a>
27   *
28   * @author Brian Wing Shun Chan
29   *
30   */
31  public class PollsChoiceUtil {
32      public static com.liferay.portlet.polls.model.PollsChoice create(
33          long choiceId) {
34          return getPersistence().create(choiceId);
35      }
36  
37      public static com.liferay.portlet.polls.model.PollsChoice remove(
38          long choiceId)
39          throws com.liferay.portlet.polls.NoSuchChoiceException,
40              com.liferay.portal.SystemException {
41          return getPersistence().remove(choiceId);
42      }
43  
44      public static com.liferay.portlet.polls.model.PollsChoice remove(
45          com.liferay.portlet.polls.model.PollsChoice pollsChoice)
46          throws com.liferay.portal.SystemException {
47          return getPersistence().remove(pollsChoice);
48      }
49  
50      /**
51       * @deprecated Use <code>update(PollsChoice pollsChoice, boolean merge)</code>.
52       */
53      public static com.liferay.portlet.polls.model.PollsChoice update(
54          com.liferay.portlet.polls.model.PollsChoice pollsChoice)
55          throws com.liferay.portal.SystemException {
56          return getPersistence().update(pollsChoice);
57      }
58  
59      /**
60       * Add, update, or merge, the entity. This method also calls the model
61       * listeners to trigger the proper events associated with adding, deleting,
62       * or updating an entity.
63       *
64       * @param        pollsChoice the entity to add, update, or merge
65       * @param        merge boolean value for whether to merge the entity. The
66       *                default value is false. Setting merge to true is more
67       *                expensive and should only be true when pollsChoice is
68       *                transient. See LEP-5473 for a detailed discussion of this
69       *                method.
70       * @return        true if the portlet can be displayed via Ajax
71       */
72      public static com.liferay.portlet.polls.model.PollsChoice update(
73          com.liferay.portlet.polls.model.PollsChoice pollsChoice, boolean merge)
74          throws com.liferay.portal.SystemException {
75          return getPersistence().update(pollsChoice, merge);
76      }
77  
78      public static com.liferay.portlet.polls.model.PollsChoice updateImpl(
79          com.liferay.portlet.polls.model.PollsChoice pollsChoice, boolean merge)
80          throws com.liferay.portal.SystemException {
81          return getPersistence().updateImpl(pollsChoice, merge);
82      }
83  
84      public static com.liferay.portlet.polls.model.PollsChoice findByPrimaryKey(
85          long choiceId)
86          throws com.liferay.portlet.polls.NoSuchChoiceException,
87              com.liferay.portal.SystemException {
88          return getPersistence().findByPrimaryKey(choiceId);
89      }
90  
91      public static com.liferay.portlet.polls.model.PollsChoice fetchByPrimaryKey(
92          long choiceId) throws com.liferay.portal.SystemException {
93          return getPersistence().fetchByPrimaryKey(choiceId);
94      }
95  
96      public static java.util.List<com.liferay.portlet.polls.model.PollsChoice> findByUuid(
97          java.lang.String uuid) throws com.liferay.portal.SystemException {
98          return getPersistence().findByUuid(uuid);
99      }
100 
101     public static java.util.List<com.liferay.portlet.polls.model.PollsChoice> findByUuid(
102         java.lang.String uuid, int begin, int end)
103         throws com.liferay.portal.SystemException {
104         return getPersistence().findByUuid(uuid, begin, end);
105     }
106 
107     public static java.util.List<com.liferay.portlet.polls.model.PollsChoice> findByUuid(
108         java.lang.String uuid, int begin, int end,
109         com.liferay.portal.kernel.util.OrderByComparator obc)
110         throws com.liferay.portal.SystemException {
111         return getPersistence().findByUuid(uuid, begin, end, obc);
112     }
113 
114     public static com.liferay.portlet.polls.model.PollsChoice findByUuid_First(
115         java.lang.String uuid,
116         com.liferay.portal.kernel.util.OrderByComparator obc)
117         throws com.liferay.portlet.polls.NoSuchChoiceException,
118             com.liferay.portal.SystemException {
119         return getPersistence().findByUuid_First(uuid, obc);
120     }
121 
122     public static com.liferay.portlet.polls.model.PollsChoice findByUuid_Last(
123         java.lang.String uuid,
124         com.liferay.portal.kernel.util.OrderByComparator obc)
125         throws com.liferay.portlet.polls.NoSuchChoiceException,
126             com.liferay.portal.SystemException {
127         return getPersistence().findByUuid_Last(uuid, obc);
128     }
129 
130     public static com.liferay.portlet.polls.model.PollsChoice[] findByUuid_PrevAndNext(
131         long choiceId, java.lang.String uuid,
132         com.liferay.portal.kernel.util.OrderByComparator obc)
133         throws com.liferay.portlet.polls.NoSuchChoiceException,
134             com.liferay.portal.SystemException {
135         return getPersistence().findByUuid_PrevAndNext(choiceId, uuid, obc);
136     }
137 
138     public static java.util.List<com.liferay.portlet.polls.model.PollsChoice> findByQuestionId(
139         long questionId) throws com.liferay.portal.SystemException {
140         return getPersistence().findByQuestionId(questionId);
141     }
142 
143     public static java.util.List<com.liferay.portlet.polls.model.PollsChoice> findByQuestionId(
144         long questionId, int begin, int end)
145         throws com.liferay.portal.SystemException {
146         return getPersistence().findByQuestionId(questionId, begin, end);
147     }
148 
149     public static java.util.List<com.liferay.portlet.polls.model.PollsChoice> findByQuestionId(
150         long questionId, int begin, int end,
151         com.liferay.portal.kernel.util.OrderByComparator obc)
152         throws com.liferay.portal.SystemException {
153         return getPersistence().findByQuestionId(questionId, begin, end, obc);
154     }
155 
156     public static com.liferay.portlet.polls.model.PollsChoice findByQuestionId_First(
157         long questionId, com.liferay.portal.kernel.util.OrderByComparator obc)
158         throws com.liferay.portlet.polls.NoSuchChoiceException,
159             com.liferay.portal.SystemException {
160         return getPersistence().findByQuestionId_First(questionId, obc);
161     }
162 
163     public static com.liferay.portlet.polls.model.PollsChoice findByQuestionId_Last(
164         long questionId, com.liferay.portal.kernel.util.OrderByComparator obc)
165         throws com.liferay.portlet.polls.NoSuchChoiceException,
166             com.liferay.portal.SystemException {
167         return getPersistence().findByQuestionId_Last(questionId, obc);
168     }
169 
170     public static com.liferay.portlet.polls.model.PollsChoice[] findByQuestionId_PrevAndNext(
171         long choiceId, long questionId,
172         com.liferay.portal.kernel.util.OrderByComparator obc)
173         throws com.liferay.portlet.polls.NoSuchChoiceException,
174             com.liferay.portal.SystemException {
175         return getPersistence()
176                    .findByQuestionId_PrevAndNext(choiceId, questionId, obc);
177     }
178 
179     public static com.liferay.portlet.polls.model.PollsChoice findByQ_N(
180         long questionId, java.lang.String name)
181         throws com.liferay.portlet.polls.NoSuchChoiceException,
182             com.liferay.portal.SystemException {
183         return getPersistence().findByQ_N(questionId, name);
184     }
185 
186     public static com.liferay.portlet.polls.model.PollsChoice fetchByQ_N(
187         long questionId, java.lang.String name)
188         throws com.liferay.portal.SystemException {
189         return getPersistence().fetchByQ_N(questionId, name);
190     }
191 
192     public static java.util.List<com.liferay.portlet.polls.model.PollsChoice> findWithDynamicQuery(
193         com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
194         throws com.liferay.portal.SystemException {
195         return getPersistence().findWithDynamicQuery(queryInitializer);
196     }
197 
198     public static java.util.List<com.liferay.portlet.polls.model.PollsChoice> findWithDynamicQuery(
199         com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
200         int begin, int end) throws com.liferay.portal.SystemException {
201         return getPersistence()
202                    .findWithDynamicQuery(queryInitializer, begin, end);
203     }
204 
205     public static java.util.List<com.liferay.portlet.polls.model.PollsChoice> findAll()
206         throws com.liferay.portal.SystemException {
207         return getPersistence().findAll();
208     }
209 
210     public static java.util.List<com.liferay.portlet.polls.model.PollsChoice> findAll(
211         int begin, int end) throws com.liferay.portal.SystemException {
212         return getPersistence().findAll(begin, end);
213     }
214 
215     public static java.util.List<com.liferay.portlet.polls.model.PollsChoice> findAll(
216         int begin, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
217         throws com.liferay.portal.SystemException {
218         return getPersistence().findAll(begin, end, obc);
219     }
220 
221     public static void removeByUuid(java.lang.String uuid)
222         throws com.liferay.portal.SystemException {
223         getPersistence().removeByUuid(uuid);
224     }
225 
226     public static void removeByQuestionId(long questionId)
227         throws com.liferay.portal.SystemException {
228         getPersistence().removeByQuestionId(questionId);
229     }
230 
231     public static void removeByQ_N(long questionId, java.lang.String name)
232         throws com.liferay.portlet.polls.NoSuchChoiceException,
233             com.liferay.portal.SystemException {
234         getPersistence().removeByQ_N(questionId, name);
235     }
236 
237     public static void removeAll() throws com.liferay.portal.SystemException {
238         getPersistence().removeAll();
239     }
240 
241     public static int countByUuid(java.lang.String uuid)
242         throws com.liferay.portal.SystemException {
243         return getPersistence().countByUuid(uuid);
244     }
245 
246     public static int countByQuestionId(long questionId)
247         throws com.liferay.portal.SystemException {
248         return getPersistence().countByQuestionId(questionId);
249     }
250 
251     public static int countByQ_N(long questionId, java.lang.String name)
252         throws com.liferay.portal.SystemException {
253         return getPersistence().countByQ_N(questionId, name);
254     }
255 
256     public static int countAll() throws com.liferay.portal.SystemException {
257         return getPersistence().countAll();
258     }
259 
260     public static PollsChoicePersistence getPersistence() {
261         return _getUtil()._persistence;
262     }
263 
264     public void setPersistence(PollsChoicePersistence persistence) {
265         _persistence = persistence;
266     }
267 
268     private static PollsChoiceUtil _getUtil() {
269         if (_util == null) {
270             _util = (PollsChoiceUtil)com.liferay.portal.kernel.bean.BeanLocatorUtil.locate(_UTIL);
271         }
272 
273         return _util;
274     }
275 
276     private static final String _UTIL = PollsChoiceUtil.class.getName();
277     private static PollsChoiceUtil _util;
278     private PollsChoicePersistence _persistence;
279 }