1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portlet.announcements.service.persistence;
16  
17  import com.liferay.portal.SystemException;
18  import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
19  import com.liferay.portal.kernel.dao.orm.DynamicQuery;
20  import com.liferay.portal.kernel.util.ReferenceRegistry;
21  
22  import com.liferay.portlet.announcements.model.AnnouncementsDelivery;
23  
24  import java.util.List;
25  
26  /**
27   * <a href="AnnouncementsDeliveryUtil.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * @author    Brian Wing Shun Chan
35   * @see       AnnouncementsDeliveryPersistence
36   * @see       AnnouncementsDeliveryPersistenceImpl
37   * @generated
38   */
39  public class AnnouncementsDeliveryUtil {
40      /**
41       * @see com.liferay.portal.service.persistence.BasePersistence#clearCache()
42       */
43      public static void clearCache() {
44          getPersistence().clearCache();
45      }
46  
47      /**
48       * @see com.liferay.portal.service.persistence.BasePersistence#clearCache(AnnouncementsDelivery)
49       */
50      public static void clearCache(AnnouncementsDelivery announcementsDelivery) {
51          getPersistence().clearCache(announcementsDelivery);
52      }
53  
54      /**
55       * @see com.liferay.portal.service.persistence.BasePersistence#countWithDynamicQuery(DynamicQuery)
56       */
57      public int countWithDynamicQuery(DynamicQuery dynamicQuery)
58          throws SystemException {
59          return getPersistence().countWithDynamicQuery(dynamicQuery);
60      }
61  
62      /**
63       * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery)
64       */
65      public static List<Object> findWithDynamicQuery(DynamicQuery dynamicQuery)
66          throws SystemException {
67          return getPersistence().findWithDynamicQuery(dynamicQuery);
68      }
69  
70      /**
71       * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int)
72       */
73      public static List<Object> findWithDynamicQuery(DynamicQuery dynamicQuery,
74          int start, int end) throws SystemException {
75          return getPersistence().findWithDynamicQuery(dynamicQuery, start, end);
76      }
77  
78      /**
79       * @see com.liferay.portal.service.persistence.BasePersistence#remove(com.liferay.portal.model.BaseModel)
80       */
81      public static AnnouncementsDelivery remove(
82          AnnouncementsDelivery announcementsDelivery) throws SystemException {
83          return getPersistence().remove(announcementsDelivery);
84      }
85  
86      /**
87       * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel, boolean)
88       */
89      public static AnnouncementsDelivery update(
90          AnnouncementsDelivery announcementsDelivery, boolean merge)
91          throws SystemException {
92          return getPersistence().update(announcementsDelivery, merge);
93      }
94  
95      public static void cacheResult(
96          com.liferay.portlet.announcements.model.AnnouncementsDelivery announcementsDelivery) {
97          getPersistence().cacheResult(announcementsDelivery);
98      }
99  
100     public static void cacheResult(
101         java.util.List<com.liferay.portlet.announcements.model.AnnouncementsDelivery> announcementsDeliveries) {
102         getPersistence().cacheResult(announcementsDeliveries);
103     }
104 
105     public static com.liferay.portlet.announcements.model.AnnouncementsDelivery create(
106         long deliveryId) {
107         return getPersistence().create(deliveryId);
108     }
109 
110     public static com.liferay.portlet.announcements.model.AnnouncementsDelivery remove(
111         long deliveryId)
112         throws com.liferay.portal.SystemException,
113             com.liferay.portlet.announcements.NoSuchDeliveryException {
114         return getPersistence().remove(deliveryId);
115     }
116 
117     /**
118      * @deprecated Use {@link com.liferay.portal.service.persistence.BasePersistence.#update(com.liferay.portal.model.BaseModel, boolean)}.
119      */
120     public static com.liferay.portlet.announcements.model.AnnouncementsDelivery update(
121         com.liferay.portlet.announcements.model.AnnouncementsDelivery announcementsDelivery)
122         throws com.liferay.portal.SystemException {
123         return getPersistence().update(announcementsDelivery);
124     }
125 
126     public static com.liferay.portlet.announcements.model.AnnouncementsDelivery updateImpl(
127         com.liferay.portlet.announcements.model.AnnouncementsDelivery announcementsDelivery,
128         boolean merge) throws com.liferay.portal.SystemException {
129         return getPersistence().updateImpl(announcementsDelivery, merge);
130     }
131 
132     public static com.liferay.portlet.announcements.model.AnnouncementsDelivery findByPrimaryKey(
133         long deliveryId)
134         throws com.liferay.portal.SystemException,
135             com.liferay.portlet.announcements.NoSuchDeliveryException {
136         return getPersistence().findByPrimaryKey(deliveryId);
137     }
138 
139     public static com.liferay.portlet.announcements.model.AnnouncementsDelivery fetchByPrimaryKey(
140         long deliveryId) throws com.liferay.portal.SystemException {
141         return getPersistence().fetchByPrimaryKey(deliveryId);
142     }
143 
144     public static java.util.List<com.liferay.portlet.announcements.model.AnnouncementsDelivery> findByUserId(
145         long userId) throws com.liferay.portal.SystemException {
146         return getPersistence().findByUserId(userId);
147     }
148 
149     public static java.util.List<com.liferay.portlet.announcements.model.AnnouncementsDelivery> findByUserId(
150         long userId, int start, int end)
151         throws com.liferay.portal.SystemException {
152         return getPersistence().findByUserId(userId, start, end);
153     }
154 
155     public static java.util.List<com.liferay.portlet.announcements.model.AnnouncementsDelivery> findByUserId(
156         long userId, int start, int end,
157         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
158         throws com.liferay.portal.SystemException {
159         return getPersistence()
160                    .findByUserId(userId, start, end, orderByComparator);
161     }
162 
163     public static com.liferay.portlet.announcements.model.AnnouncementsDelivery findByUserId_First(
164         long userId,
165         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
166         throws com.liferay.portal.SystemException,
167             com.liferay.portlet.announcements.NoSuchDeliveryException {
168         return getPersistence().findByUserId_First(userId, orderByComparator);
169     }
170 
171     public static com.liferay.portlet.announcements.model.AnnouncementsDelivery findByUserId_Last(
172         long userId,
173         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
174         throws com.liferay.portal.SystemException,
175             com.liferay.portlet.announcements.NoSuchDeliveryException {
176         return getPersistence().findByUserId_Last(userId, orderByComparator);
177     }
178 
179     public static com.liferay.portlet.announcements.model.AnnouncementsDelivery[] findByUserId_PrevAndNext(
180         long deliveryId, long userId,
181         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
182         throws com.liferay.portal.SystemException,
183             com.liferay.portlet.announcements.NoSuchDeliveryException {
184         return getPersistence()
185                    .findByUserId_PrevAndNext(deliveryId, userId,
186             orderByComparator);
187     }
188 
189     public static com.liferay.portlet.announcements.model.AnnouncementsDelivery findByU_T(
190         long userId, java.lang.String type)
191         throws com.liferay.portal.SystemException,
192             com.liferay.portlet.announcements.NoSuchDeliveryException {
193         return getPersistence().findByU_T(userId, type);
194     }
195 
196     public static com.liferay.portlet.announcements.model.AnnouncementsDelivery fetchByU_T(
197         long userId, java.lang.String type)
198         throws com.liferay.portal.SystemException {
199         return getPersistence().fetchByU_T(userId, type);
200     }
201 
202     public static com.liferay.portlet.announcements.model.AnnouncementsDelivery fetchByU_T(
203         long userId, java.lang.String type, boolean retrieveFromCache)
204         throws com.liferay.portal.SystemException {
205         return getPersistence().fetchByU_T(userId, type, retrieveFromCache);
206     }
207 
208     public static java.util.List<com.liferay.portlet.announcements.model.AnnouncementsDelivery> findAll()
209         throws com.liferay.portal.SystemException {
210         return getPersistence().findAll();
211     }
212 
213     public static java.util.List<com.liferay.portlet.announcements.model.AnnouncementsDelivery> findAll(
214         int start, int end) throws com.liferay.portal.SystemException {
215         return getPersistence().findAll(start, end);
216     }
217 
218     public static java.util.List<com.liferay.portlet.announcements.model.AnnouncementsDelivery> findAll(
219         int start, int end,
220         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
221         throws com.liferay.portal.SystemException {
222         return getPersistence().findAll(start, end, orderByComparator);
223     }
224 
225     public static void removeByUserId(long userId)
226         throws com.liferay.portal.SystemException {
227         getPersistence().removeByUserId(userId);
228     }
229 
230     public static void removeByU_T(long userId, java.lang.String type)
231         throws com.liferay.portal.SystemException,
232             com.liferay.portlet.announcements.NoSuchDeliveryException {
233         getPersistence().removeByU_T(userId, type);
234     }
235 
236     public static void removeAll() throws com.liferay.portal.SystemException {
237         getPersistence().removeAll();
238     }
239 
240     public static int countByUserId(long userId)
241         throws com.liferay.portal.SystemException {
242         return getPersistence().countByUserId(userId);
243     }
244 
245     public static int countByU_T(long userId, java.lang.String type)
246         throws com.liferay.portal.SystemException {
247         return getPersistence().countByU_T(userId, type);
248     }
249 
250     public static int countAll() throws com.liferay.portal.SystemException {
251         return getPersistence().countAll();
252     }
253 
254     public static AnnouncementsDeliveryPersistence getPersistence() {
255         if (_persistence == null) {
256             _persistence = (AnnouncementsDeliveryPersistence)PortalBeanLocatorUtil.locate(AnnouncementsDeliveryPersistence.class.getName());
257 
258             ReferenceRegistry.registerReference(AnnouncementsDeliveryUtil.class,
259                 "_persistence");
260         }
261 
262         return _persistence;
263     }
264 
265     public void setPersistence(AnnouncementsDeliveryPersistence persistence) {
266         _persistence = persistence;
267 
268         ReferenceRegistry.registerReference(AnnouncementsDeliveryUtil.class,
269             "_persistence");
270     }
271 
272     private static AnnouncementsDeliveryPersistence _persistence;
273 }