1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    *
5    *
6    *
7    * The contents of this file are subject to the terms of the Liferay Enterprise
8    * Subscription License ("License"). You may not use this file except in
9    * compliance with the License. You can obtain a copy of the License by
10   * contacting Liferay, Inc. See the License for the specific language governing
11   * permissions and limitations under the License, including but not limited to
12   * distribution rights 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.shopping.service.persistence;
24  
25  
26  /**
27   * <a href="ShoppingCartUtil.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       ShoppingCartPersistence
36   * @see       ShoppingCartPersistenceImpl
37   * @generated
38   */
39  public class ShoppingCartUtil {
40      public static void cacheResult(
41          com.liferay.portlet.shopping.model.ShoppingCart shoppingCart) {
42          getPersistence().cacheResult(shoppingCart);
43      }
44  
45      public static void cacheResult(
46          java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> shoppingCarts) {
47          getPersistence().cacheResult(shoppingCarts);
48      }
49  
50      public static void clearCache() {
51          getPersistence().clearCache();
52      }
53  
54      public static com.liferay.portlet.shopping.model.ShoppingCart create(
55          long cartId) {
56          return getPersistence().create(cartId);
57      }
58  
59      public static com.liferay.portlet.shopping.model.ShoppingCart remove(
60          long cartId)
61          throws com.liferay.portal.SystemException,
62              com.liferay.portlet.shopping.NoSuchCartException {
63          return getPersistence().remove(cartId);
64      }
65  
66      public static com.liferay.portlet.shopping.model.ShoppingCart remove(
67          com.liferay.portlet.shopping.model.ShoppingCart shoppingCart)
68          throws com.liferay.portal.SystemException {
69          return getPersistence().remove(shoppingCart);
70      }
71  
72      /**
73       * @deprecated Use {@link #update(ShoppingCart, boolean merge)}.
74       */
75      public static com.liferay.portlet.shopping.model.ShoppingCart update(
76          com.liferay.portlet.shopping.model.ShoppingCart shoppingCart)
77          throws com.liferay.portal.SystemException {
78          return getPersistence().update(shoppingCart);
79      }
80  
81      /**
82       * Add, update, or merge, the entity. This method also calls the model
83       * listeners to trigger the proper events associated with adding, deleting,
84       * or updating an entity.
85       *
86       * @param  shoppingCart the entity to add, update, or merge
87       * @param  merge boolean value for whether to merge the entity. The default
88       *         value is false. Setting merge to true is more expensive and
89       *         should only be true when shoppingCart is transient. See
90       *         LEP-5473 for a detailed discussion of this method.
91       * @return the entity that was added, updated, or merged
92       */
93      public static com.liferay.portlet.shopping.model.ShoppingCart update(
94          com.liferay.portlet.shopping.model.ShoppingCart shoppingCart,
95          boolean merge) throws com.liferay.portal.SystemException {
96          return getPersistence().update(shoppingCart, merge);
97      }
98  
99      public static com.liferay.portlet.shopping.model.ShoppingCart updateImpl(
100         com.liferay.portlet.shopping.model.ShoppingCart shoppingCart,
101         boolean merge) throws com.liferay.portal.SystemException {
102         return getPersistence().updateImpl(shoppingCart, merge);
103     }
104 
105     public static com.liferay.portlet.shopping.model.ShoppingCart findByPrimaryKey(
106         long cartId)
107         throws com.liferay.portal.SystemException,
108             com.liferay.portlet.shopping.NoSuchCartException {
109         return getPersistence().findByPrimaryKey(cartId);
110     }
111 
112     public static com.liferay.portlet.shopping.model.ShoppingCart fetchByPrimaryKey(
113         long cartId) throws com.liferay.portal.SystemException {
114         return getPersistence().fetchByPrimaryKey(cartId);
115     }
116 
117     public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findByGroupId(
118         long groupId) throws com.liferay.portal.SystemException {
119         return getPersistence().findByGroupId(groupId);
120     }
121 
122     public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findByGroupId(
123         long groupId, int start, int end)
124         throws com.liferay.portal.SystemException {
125         return getPersistence().findByGroupId(groupId, start, end);
126     }
127 
128     public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findByGroupId(
129         long groupId, int start, int end,
130         com.liferay.portal.kernel.util.OrderByComparator obc)
131         throws com.liferay.portal.SystemException {
132         return getPersistence().findByGroupId(groupId, start, end, obc);
133     }
134 
135     public static com.liferay.portlet.shopping.model.ShoppingCart findByGroupId_First(
136         long groupId, com.liferay.portal.kernel.util.OrderByComparator obc)
137         throws com.liferay.portal.SystemException,
138             com.liferay.portlet.shopping.NoSuchCartException {
139         return getPersistence().findByGroupId_First(groupId, obc);
140     }
141 
142     public static com.liferay.portlet.shopping.model.ShoppingCart findByGroupId_Last(
143         long groupId, com.liferay.portal.kernel.util.OrderByComparator obc)
144         throws com.liferay.portal.SystemException,
145             com.liferay.portlet.shopping.NoSuchCartException {
146         return getPersistence().findByGroupId_Last(groupId, obc);
147     }
148 
149     public static com.liferay.portlet.shopping.model.ShoppingCart[] findByGroupId_PrevAndNext(
150         long cartId, long groupId,
151         com.liferay.portal.kernel.util.OrderByComparator obc)
152         throws com.liferay.portal.SystemException,
153             com.liferay.portlet.shopping.NoSuchCartException {
154         return getPersistence().findByGroupId_PrevAndNext(cartId, groupId, obc);
155     }
156 
157     public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findByUserId(
158         long userId) throws com.liferay.portal.SystemException {
159         return getPersistence().findByUserId(userId);
160     }
161 
162     public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findByUserId(
163         long userId, int start, int end)
164         throws com.liferay.portal.SystemException {
165         return getPersistence().findByUserId(userId, start, end);
166     }
167 
168     public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findByUserId(
169         long userId, int start, int end,
170         com.liferay.portal.kernel.util.OrderByComparator obc)
171         throws com.liferay.portal.SystemException {
172         return getPersistence().findByUserId(userId, start, end, obc);
173     }
174 
175     public static com.liferay.portlet.shopping.model.ShoppingCart findByUserId_First(
176         long userId, com.liferay.portal.kernel.util.OrderByComparator obc)
177         throws com.liferay.portal.SystemException,
178             com.liferay.portlet.shopping.NoSuchCartException {
179         return getPersistence().findByUserId_First(userId, obc);
180     }
181 
182     public static com.liferay.portlet.shopping.model.ShoppingCart findByUserId_Last(
183         long userId, com.liferay.portal.kernel.util.OrderByComparator obc)
184         throws com.liferay.portal.SystemException,
185             com.liferay.portlet.shopping.NoSuchCartException {
186         return getPersistence().findByUserId_Last(userId, obc);
187     }
188 
189     public static com.liferay.portlet.shopping.model.ShoppingCart[] findByUserId_PrevAndNext(
190         long cartId, long userId,
191         com.liferay.portal.kernel.util.OrderByComparator obc)
192         throws com.liferay.portal.SystemException,
193             com.liferay.portlet.shopping.NoSuchCartException {
194         return getPersistence().findByUserId_PrevAndNext(cartId, userId, obc);
195     }
196 
197     public static com.liferay.portlet.shopping.model.ShoppingCart findByG_U(
198         long groupId, long userId)
199         throws com.liferay.portal.SystemException,
200             com.liferay.portlet.shopping.NoSuchCartException {
201         return getPersistence().findByG_U(groupId, userId);
202     }
203 
204     public static com.liferay.portlet.shopping.model.ShoppingCart fetchByG_U(
205         long groupId, long userId) throws com.liferay.portal.SystemException {
206         return getPersistence().fetchByG_U(groupId, userId);
207     }
208 
209     public static com.liferay.portlet.shopping.model.ShoppingCart fetchByG_U(
210         long groupId, long userId, boolean retrieveFromCache)
211         throws com.liferay.portal.SystemException {
212         return getPersistence().fetchByG_U(groupId, userId, retrieveFromCache);
213     }
214 
215     public static java.util.List<Object> findWithDynamicQuery(
216         com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
217         throws com.liferay.portal.SystemException {
218         return getPersistence().findWithDynamicQuery(dynamicQuery);
219     }
220 
221     public static java.util.List<Object> findWithDynamicQuery(
222         com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
223         int end) throws com.liferay.portal.SystemException {
224         return getPersistence().findWithDynamicQuery(dynamicQuery, start, end);
225     }
226 
227     public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findAll()
228         throws com.liferay.portal.SystemException {
229         return getPersistence().findAll();
230     }
231 
232     public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findAll(
233         int start, int end) throws com.liferay.portal.SystemException {
234         return getPersistence().findAll(start, end);
235     }
236 
237     public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findAll(
238         int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
239         throws com.liferay.portal.SystemException {
240         return getPersistence().findAll(start, end, obc);
241     }
242 
243     public static void removeByGroupId(long groupId)
244         throws com.liferay.portal.SystemException {
245         getPersistence().removeByGroupId(groupId);
246     }
247 
248     public static void removeByUserId(long userId)
249         throws com.liferay.portal.SystemException {
250         getPersistence().removeByUserId(userId);
251     }
252 
253     public static void removeByG_U(long groupId, long userId)
254         throws com.liferay.portal.SystemException,
255             com.liferay.portlet.shopping.NoSuchCartException {
256         getPersistence().removeByG_U(groupId, userId);
257     }
258 
259     public static void removeAll() throws com.liferay.portal.SystemException {
260         getPersistence().removeAll();
261     }
262 
263     public static int countByGroupId(long groupId)
264         throws com.liferay.portal.SystemException {
265         return getPersistence().countByGroupId(groupId);
266     }
267 
268     public static int countByUserId(long userId)
269         throws com.liferay.portal.SystemException {
270         return getPersistence().countByUserId(userId);
271     }
272 
273     public static int countByG_U(long groupId, long userId)
274         throws com.liferay.portal.SystemException {
275         return getPersistence().countByG_U(groupId, userId);
276     }
277 
278     public static int countAll() throws com.liferay.portal.SystemException {
279         return getPersistence().countAll();
280     }
281 
282     public static ShoppingCartPersistence getPersistence() {
283         return _persistence;
284     }
285 
286     public void setPersistence(ShoppingCartPersistence persistence) {
287         _persistence = persistence;
288     }
289 
290     private static ShoppingCartPersistence _persistence;
291 }