1
22
23 package com.liferay.portlet.shopping.service.persistence;
24
25
31 public class ShoppingCartUtil {
32 public static void cacheResult(
33 com.liferay.portlet.shopping.model.ShoppingCart shoppingCart) {
34 getPersistence().cacheResult(shoppingCart);
35 }
36
37 public static void cacheResult(
38 java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> shoppingCarts) {
39 getPersistence().cacheResult(shoppingCarts);
40 }
41
42 public static void clearCache() {
43 getPersistence().clearCache();
44 }
45
46 public static com.liferay.portlet.shopping.model.ShoppingCart create(
47 long cartId) {
48 return getPersistence().create(cartId);
49 }
50
51 public static com.liferay.portlet.shopping.model.ShoppingCart remove(
52 long cartId)
53 throws com.liferay.portal.SystemException,
54 com.liferay.portlet.shopping.NoSuchCartException {
55 return getPersistence().remove(cartId);
56 }
57
58 public static com.liferay.portlet.shopping.model.ShoppingCart remove(
59 com.liferay.portlet.shopping.model.ShoppingCart shoppingCart)
60 throws com.liferay.portal.SystemException {
61 return getPersistence().remove(shoppingCart);
62 }
63
64
67 public static com.liferay.portlet.shopping.model.ShoppingCart update(
68 com.liferay.portlet.shopping.model.ShoppingCart shoppingCart)
69 throws com.liferay.portal.SystemException {
70 return getPersistence().update(shoppingCart);
71 }
72
73
86 public static com.liferay.portlet.shopping.model.ShoppingCart update(
87 com.liferay.portlet.shopping.model.ShoppingCart shoppingCart,
88 boolean merge) throws com.liferay.portal.SystemException {
89 return getPersistence().update(shoppingCart, merge);
90 }
91
92 public static com.liferay.portlet.shopping.model.ShoppingCart updateImpl(
93 com.liferay.portlet.shopping.model.ShoppingCart shoppingCart,
94 boolean merge) throws com.liferay.portal.SystemException {
95 return getPersistence().updateImpl(shoppingCart, merge);
96 }
97
98 public static com.liferay.portlet.shopping.model.ShoppingCart findByPrimaryKey(
99 long cartId)
100 throws com.liferay.portal.SystemException,
101 com.liferay.portlet.shopping.NoSuchCartException {
102 return getPersistence().findByPrimaryKey(cartId);
103 }
104
105 public static com.liferay.portlet.shopping.model.ShoppingCart fetchByPrimaryKey(
106 long cartId) throws com.liferay.portal.SystemException {
107 return getPersistence().fetchByPrimaryKey(cartId);
108 }
109
110 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findByGroupId(
111 long groupId) throws com.liferay.portal.SystemException {
112 return getPersistence().findByGroupId(groupId);
113 }
114
115 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findByGroupId(
116 long groupId, int start, int end)
117 throws com.liferay.portal.SystemException {
118 return getPersistence().findByGroupId(groupId, start, end);
119 }
120
121 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findByGroupId(
122 long groupId, int start, int end,
123 com.liferay.portal.kernel.util.OrderByComparator obc)
124 throws com.liferay.portal.SystemException {
125 return getPersistence().findByGroupId(groupId, start, end, obc);
126 }
127
128 public static com.liferay.portlet.shopping.model.ShoppingCart findByGroupId_First(
129 long groupId, com.liferay.portal.kernel.util.OrderByComparator obc)
130 throws com.liferay.portal.SystemException,
131 com.liferay.portlet.shopping.NoSuchCartException {
132 return getPersistence().findByGroupId_First(groupId, obc);
133 }
134
135 public static com.liferay.portlet.shopping.model.ShoppingCart findByGroupId_Last(
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_Last(groupId, obc);
140 }
141
142 public static com.liferay.portlet.shopping.model.ShoppingCart[] findByGroupId_PrevAndNext(
143 long cartId, long groupId,
144 com.liferay.portal.kernel.util.OrderByComparator obc)
145 throws com.liferay.portal.SystemException,
146 com.liferay.portlet.shopping.NoSuchCartException {
147 return getPersistence().findByGroupId_PrevAndNext(cartId, groupId, obc);
148 }
149
150 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findByUserId(
151 long userId) throws com.liferay.portal.SystemException {
152 return getPersistence().findByUserId(userId);
153 }
154
155 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findByUserId(
156 long userId, int start, int end)
157 throws com.liferay.portal.SystemException {
158 return getPersistence().findByUserId(userId, start, end);
159 }
160
161 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findByUserId(
162 long userId, int start, int end,
163 com.liferay.portal.kernel.util.OrderByComparator obc)
164 throws com.liferay.portal.SystemException {
165 return getPersistence().findByUserId(userId, start, end, obc);
166 }
167
168 public static com.liferay.portlet.shopping.model.ShoppingCart findByUserId_First(
169 long userId, com.liferay.portal.kernel.util.OrderByComparator obc)
170 throws com.liferay.portal.SystemException,
171 com.liferay.portlet.shopping.NoSuchCartException {
172 return getPersistence().findByUserId_First(userId, obc);
173 }
174
175 public static com.liferay.portlet.shopping.model.ShoppingCart findByUserId_Last(
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_Last(userId, obc);
180 }
181
182 public static com.liferay.portlet.shopping.model.ShoppingCart[] findByUserId_PrevAndNext(
183 long cartId, long userId,
184 com.liferay.portal.kernel.util.OrderByComparator obc)
185 throws com.liferay.portal.SystemException,
186 com.liferay.portlet.shopping.NoSuchCartException {
187 return getPersistence().findByUserId_PrevAndNext(cartId, userId, obc);
188 }
189
190 public static com.liferay.portlet.shopping.model.ShoppingCart findByG_U(
191 long groupId, long userId)
192 throws com.liferay.portal.SystemException,
193 com.liferay.portlet.shopping.NoSuchCartException {
194 return getPersistence().findByG_U(groupId, userId);
195 }
196
197 public static com.liferay.portlet.shopping.model.ShoppingCart fetchByG_U(
198 long groupId, long userId) throws com.liferay.portal.SystemException {
199 return getPersistence().fetchByG_U(groupId, userId);
200 }
201
202 public static com.liferay.portlet.shopping.model.ShoppingCart fetchByG_U(
203 long groupId, long userId, boolean retrieveFromCache)
204 throws com.liferay.portal.SystemException {
205 return getPersistence().fetchByG_U(groupId, userId, retrieveFromCache);
206 }
207
208 public static java.util.List<Object> findWithDynamicQuery(
209 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
210 throws com.liferay.portal.SystemException {
211 return getPersistence().findWithDynamicQuery(dynamicQuery);
212 }
213
214 public static java.util.List<Object> findWithDynamicQuery(
215 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
216 int end) throws com.liferay.portal.SystemException {
217 return getPersistence().findWithDynamicQuery(dynamicQuery, start, end);
218 }
219
220 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findAll()
221 throws com.liferay.portal.SystemException {
222 return getPersistence().findAll();
223 }
224
225 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findAll(
226 int start, int end) throws com.liferay.portal.SystemException {
227 return getPersistence().findAll(start, end);
228 }
229
230 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingCart> findAll(
231 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
232 throws com.liferay.portal.SystemException {
233 return getPersistence().findAll(start, end, obc);
234 }
235
236 public static void removeByGroupId(long groupId)
237 throws com.liferay.portal.SystemException {
238 getPersistence().removeByGroupId(groupId);
239 }
240
241 public static void removeByUserId(long userId)
242 throws com.liferay.portal.SystemException {
243 getPersistence().removeByUserId(userId);
244 }
245
246 public static void removeByG_U(long groupId, long userId)
247 throws com.liferay.portal.SystemException,
248 com.liferay.portlet.shopping.NoSuchCartException {
249 getPersistence().removeByG_U(groupId, userId);
250 }
251
252 public static void removeAll() throws com.liferay.portal.SystemException {
253 getPersistence().removeAll();
254 }
255
256 public static int countByGroupId(long groupId)
257 throws com.liferay.portal.SystemException {
258 return getPersistence().countByGroupId(groupId);
259 }
260
261 public static int countByUserId(long userId)
262 throws com.liferay.portal.SystemException {
263 return getPersistence().countByUserId(userId);
264 }
265
266 public static int countByG_U(long groupId, long userId)
267 throws com.liferay.portal.SystemException {
268 return getPersistence().countByG_U(groupId, userId);
269 }
270
271 public static int countAll() throws com.liferay.portal.SystemException {
272 return getPersistence().countAll();
273 }
274
275 public static ShoppingCartPersistence getPersistence() {
276 return _persistence;
277 }
278
279 public void setPersistence(ShoppingCartPersistence persistence) {
280 _persistence = persistence;
281 }
282
283 private static ShoppingCartPersistence _persistence;
284 }