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.ShoppingItemPrice;
23
24 import java.util.List;
25
26
39 public class ShoppingItemPriceUtil {
40
43 public static void clearCache() {
44 getPersistence().clearCache();
45 }
46
47
50 public static void clearCache(ShoppingItemPrice shoppingItemPrice) {
51 getPersistence().clearCache(shoppingItemPrice);
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 ShoppingItemPrice remove(ShoppingItemPrice shoppingItemPrice)
82 throws SystemException {
83 return getPersistence().remove(shoppingItemPrice);
84 }
85
86
89 public static ShoppingItemPrice update(
90 ShoppingItemPrice shoppingItemPrice, boolean merge)
91 throws SystemException {
92 return getPersistence().update(shoppingItemPrice, merge);
93 }
94
95 public static void cacheResult(
96 com.liferay.portlet.shopping.model.ShoppingItemPrice shoppingItemPrice) {
97 getPersistence().cacheResult(shoppingItemPrice);
98 }
99
100 public static void cacheResult(
101 java.util.List<com.liferay.portlet.shopping.model.ShoppingItemPrice> shoppingItemPrices) {
102 getPersistence().cacheResult(shoppingItemPrices);
103 }
104
105 public static com.liferay.portlet.shopping.model.ShoppingItemPrice create(
106 long itemPriceId) {
107 return getPersistence().create(itemPriceId);
108 }
109
110 public static com.liferay.portlet.shopping.model.ShoppingItemPrice remove(
111 long itemPriceId)
112 throws com.liferay.portal.SystemException,
113 com.liferay.portlet.shopping.NoSuchItemPriceException {
114 return getPersistence().remove(itemPriceId);
115 }
116
117
120 public static com.liferay.portlet.shopping.model.ShoppingItemPrice update(
121 com.liferay.portlet.shopping.model.ShoppingItemPrice shoppingItemPrice)
122 throws com.liferay.portal.SystemException {
123 return getPersistence().update(shoppingItemPrice);
124 }
125
126 public static com.liferay.portlet.shopping.model.ShoppingItemPrice updateImpl(
127 com.liferay.portlet.shopping.model.ShoppingItemPrice shoppingItemPrice,
128 boolean merge) throws com.liferay.portal.SystemException {
129 return getPersistence().updateImpl(shoppingItemPrice, merge);
130 }
131
132 public static com.liferay.portlet.shopping.model.ShoppingItemPrice findByPrimaryKey(
133 long itemPriceId)
134 throws com.liferay.portal.SystemException,
135 com.liferay.portlet.shopping.NoSuchItemPriceException {
136 return getPersistence().findByPrimaryKey(itemPriceId);
137 }
138
139 public static com.liferay.portlet.shopping.model.ShoppingItemPrice fetchByPrimaryKey(
140 long itemPriceId) throws com.liferay.portal.SystemException {
141 return getPersistence().fetchByPrimaryKey(itemPriceId);
142 }
143
144 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingItemPrice> findByItemId(
145 long itemId) throws com.liferay.portal.SystemException {
146 return getPersistence().findByItemId(itemId);
147 }
148
149 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingItemPrice> findByItemId(
150 long itemId, int start, int end)
151 throws com.liferay.portal.SystemException {
152 return getPersistence().findByItemId(itemId, start, end);
153 }
154
155 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingItemPrice> findByItemId(
156 long itemId, int start, int end,
157 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
158 throws com.liferay.portal.SystemException {
159 return getPersistence()
160 .findByItemId(itemId, start, end, orderByComparator);
161 }
162
163 public static com.liferay.portlet.shopping.model.ShoppingItemPrice findByItemId_First(
164 long itemId,
165 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
166 throws com.liferay.portal.SystemException,
167 com.liferay.portlet.shopping.NoSuchItemPriceException {
168 return getPersistence().findByItemId_First(itemId, orderByComparator);
169 }
170
171 public static com.liferay.portlet.shopping.model.ShoppingItemPrice findByItemId_Last(
172 long itemId,
173 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
174 throws com.liferay.portal.SystemException,
175 com.liferay.portlet.shopping.NoSuchItemPriceException {
176 return getPersistence().findByItemId_Last(itemId, orderByComparator);
177 }
178
179 public static com.liferay.portlet.shopping.model.ShoppingItemPrice[] findByItemId_PrevAndNext(
180 long itemPriceId, long itemId,
181 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
182 throws com.liferay.portal.SystemException,
183 com.liferay.portlet.shopping.NoSuchItemPriceException {
184 return getPersistence()
185 .findByItemId_PrevAndNext(itemPriceId, itemId,
186 orderByComparator);
187 }
188
189 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingItemPrice> findAll()
190 throws com.liferay.portal.SystemException {
191 return getPersistence().findAll();
192 }
193
194 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingItemPrice> 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.ShoppingItemPrice> 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 removeByItemId(long itemId)
207 throws com.liferay.portal.SystemException {
208 getPersistence().removeByItemId(itemId);
209 }
210
211 public static void removeAll() throws com.liferay.portal.SystemException {
212 getPersistence().removeAll();
213 }
214
215 public static int countByItemId(long itemId)
216 throws com.liferay.portal.SystemException {
217 return getPersistence().countByItemId(itemId);
218 }
219
220 public static int countAll() throws com.liferay.portal.SystemException {
221 return getPersistence().countAll();
222 }
223
224 public static ShoppingItemPricePersistence getPersistence() {
225 if (_persistence == null) {
226 _persistence = (ShoppingItemPricePersistence)PortalBeanLocatorUtil.locate(ShoppingItemPricePersistence.class.getName());
227
228 ReferenceRegistry.registerReference(ShoppingItemPriceUtil.class,
229 "_persistence");
230 }
231
232 return _persistence;
233 }
234
235 public void setPersistence(ShoppingItemPricePersistence persistence) {
236 _persistence = persistence;
237
238 ReferenceRegistry.registerReference(ShoppingItemPriceUtil.class,
239 "_persistence");
240 }
241
242 private static ShoppingItemPricePersistence _persistence;
243 }