1
14
15 package com.liferay.portlet.shopping.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.shopping.model.ShoppingOrderItem;
23
24 import java.util.List;
25
26
39 public class ShoppingOrderItemUtil {
40
43 public static void clearCache() {
44 getPersistence().clearCache();
45 }
46
47
50 public static void clearCache(ShoppingOrderItem shoppingOrderItem) {
51 getPersistence().clearCache(shoppingOrderItem);
52 }
53
54
57 public int countWithDynamicQuery(DynamicQuery dynamicQuery)
58 throws SystemException {
59 return getPersistence().countWithDynamicQuery(dynamicQuery);
60 }
61
62
65 public static List<Object> findWithDynamicQuery(DynamicQuery dynamicQuery)
66 throws SystemException {
67 return getPersistence().findWithDynamicQuery(dynamicQuery);
68 }
69
70
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
81 public static ShoppingOrderItem remove(ShoppingOrderItem shoppingOrderItem)
82 throws SystemException {
83 return getPersistence().remove(shoppingOrderItem);
84 }
85
86
89 public static ShoppingOrderItem update(
90 ShoppingOrderItem shoppingOrderItem, boolean merge)
91 throws SystemException {
92 return getPersistence().update(shoppingOrderItem, merge);
93 }
94
95 public static void cacheResult(
96 com.liferay.portlet.shopping.model.ShoppingOrderItem shoppingOrderItem) {
97 getPersistence().cacheResult(shoppingOrderItem);
98 }
99
100 public static void cacheResult(
101 java.util.List<com.liferay.portlet.shopping.model.ShoppingOrderItem> shoppingOrderItems) {
102 getPersistence().cacheResult(shoppingOrderItems);
103 }
104
105 public static com.liferay.portlet.shopping.model.ShoppingOrderItem create(
106 long orderItemId) {
107 return getPersistence().create(orderItemId);
108 }
109
110 public static com.liferay.portlet.shopping.model.ShoppingOrderItem remove(
111 long orderItemId)
112 throws com.liferay.portal.SystemException,
113 com.liferay.portlet.shopping.NoSuchOrderItemException {
114 return getPersistence().remove(orderItemId);
115 }
116
117
120 public static com.liferay.portlet.shopping.model.ShoppingOrderItem update(
121 com.liferay.portlet.shopping.model.ShoppingOrderItem shoppingOrderItem)
122 throws com.liferay.portal.SystemException {
123 return getPersistence().update(shoppingOrderItem);
124 }
125
126 public static com.liferay.portlet.shopping.model.ShoppingOrderItem updateImpl(
127 com.liferay.portlet.shopping.model.ShoppingOrderItem shoppingOrderItem,
128 boolean merge) throws com.liferay.portal.SystemException {
129 return getPersistence().updateImpl(shoppingOrderItem, merge);
130 }
131
132 public static com.liferay.portlet.shopping.model.ShoppingOrderItem findByPrimaryKey(
133 long orderItemId)
134 throws com.liferay.portal.SystemException,
135 com.liferay.portlet.shopping.NoSuchOrderItemException {
136 return getPersistence().findByPrimaryKey(orderItemId);
137 }
138
139 public static com.liferay.portlet.shopping.model.ShoppingOrderItem fetchByPrimaryKey(
140 long orderItemId) throws com.liferay.portal.SystemException {
141 return getPersistence().fetchByPrimaryKey(orderItemId);
142 }
143
144 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingOrderItem> findByOrderId(
145 long orderId) throws com.liferay.portal.SystemException {
146 return getPersistence().findByOrderId(orderId);
147 }
148
149 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingOrderItem> findByOrderId(
150 long orderId, int start, int end)
151 throws com.liferay.portal.SystemException {
152 return getPersistence().findByOrderId(orderId, start, end);
153 }
154
155 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingOrderItem> findByOrderId(
156 long orderId, int start, int end,
157 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
158 throws com.liferay.portal.SystemException {
159 return getPersistence()
160 .findByOrderId(orderId, start, end, orderByComparator);
161 }
162
163 public static com.liferay.portlet.shopping.model.ShoppingOrderItem findByOrderId_First(
164 long orderId,
165 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
166 throws com.liferay.portal.SystemException,
167 com.liferay.portlet.shopping.NoSuchOrderItemException {
168 return getPersistence().findByOrderId_First(orderId, orderByComparator);
169 }
170
171 public static com.liferay.portlet.shopping.model.ShoppingOrderItem findByOrderId_Last(
172 long orderId,
173 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
174 throws com.liferay.portal.SystemException,
175 com.liferay.portlet.shopping.NoSuchOrderItemException {
176 return getPersistence().findByOrderId_Last(orderId, orderByComparator);
177 }
178
179 public static com.liferay.portlet.shopping.model.ShoppingOrderItem[] findByOrderId_PrevAndNext(
180 long orderItemId, long orderId,
181 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
182 throws com.liferay.portal.SystemException,
183 com.liferay.portlet.shopping.NoSuchOrderItemException {
184 return getPersistence()
185 .findByOrderId_PrevAndNext(orderItemId, orderId,
186 orderByComparator);
187 }
188
189 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingOrderItem> findAll()
190 throws com.liferay.portal.SystemException {
191 return getPersistence().findAll();
192 }
193
194 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingOrderItem> findAll(
195 int start, int end) throws com.liferay.portal.SystemException {
196 return getPersistence().findAll(start, end);
197 }
198
199 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingOrderItem> findAll(
200 int start, int end,
201 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
202 throws com.liferay.portal.SystemException {
203 return getPersistence().findAll(start, end, orderByComparator);
204 }
205
206 public static void removeByOrderId(long orderId)
207 throws com.liferay.portal.SystemException {
208 getPersistence().removeByOrderId(orderId);
209 }
210
211 public static void removeAll() throws com.liferay.portal.SystemException {
212 getPersistence().removeAll();
213 }
214
215 public static int countByOrderId(long orderId)
216 throws com.liferay.portal.SystemException {
217 return getPersistence().countByOrderId(orderId);
218 }
219
220 public static int countAll() throws com.liferay.portal.SystemException {
221 return getPersistence().countAll();
222 }
223
224 public static ShoppingOrderItemPersistence getPersistence() {
225 if (_persistence == null) {
226 _persistence = (ShoppingOrderItemPersistence)PortalBeanLocatorUtil.locate(ShoppingOrderItemPersistence.class.getName());
227
228 ReferenceRegistry.registerReference(ShoppingOrderItemUtil.class,
229 "_persistence");
230 }
231
232 return _persistence;
233 }
234
235 public void setPersistence(ShoppingOrderItemPersistence persistence) {
236 _persistence = persistence;
237
238 ReferenceRegistry.registerReference(ShoppingOrderItemUtil.class,
239 "_persistence");
240 }
241
242 private static ShoppingOrderItemPersistence _persistence;
243 }