001
014
015 package com.liferay.portlet.shopping.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class ShoppingCouponLocalServiceWrapper
029 implements ShoppingCouponLocalService,
030 ServiceWrapper<ShoppingCouponLocalService> {
031 public ShoppingCouponLocalServiceWrapper(
032 ShoppingCouponLocalService shoppingCouponLocalService) {
033 _shoppingCouponLocalService = shoppingCouponLocalService;
034 }
035
036
043 public com.liferay.portlet.shopping.model.ShoppingCoupon addShoppingCoupon(
044 com.liferay.portlet.shopping.model.ShoppingCoupon shoppingCoupon)
045 throws com.liferay.portal.kernel.exception.SystemException {
046 return _shoppingCouponLocalService.addShoppingCoupon(shoppingCoupon);
047 }
048
049
055 public com.liferay.portlet.shopping.model.ShoppingCoupon createShoppingCoupon(
056 long couponId) {
057 return _shoppingCouponLocalService.createShoppingCoupon(couponId);
058 }
059
060
068 public com.liferay.portlet.shopping.model.ShoppingCoupon deleteShoppingCoupon(
069 long couponId)
070 throws com.liferay.portal.kernel.exception.PortalException,
071 com.liferay.portal.kernel.exception.SystemException {
072 return _shoppingCouponLocalService.deleteShoppingCoupon(couponId);
073 }
074
075
082 public com.liferay.portlet.shopping.model.ShoppingCoupon deleteShoppingCoupon(
083 com.liferay.portlet.shopping.model.ShoppingCoupon shoppingCoupon)
084 throws com.liferay.portal.kernel.exception.SystemException {
085 return _shoppingCouponLocalService.deleteShoppingCoupon(shoppingCoupon);
086 }
087
088 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
089 return _shoppingCouponLocalService.dynamicQuery();
090 }
091
092
099 @SuppressWarnings("rawtypes")
100 public java.util.List dynamicQuery(
101 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
102 throws com.liferay.portal.kernel.exception.SystemException {
103 return _shoppingCouponLocalService.dynamicQuery(dynamicQuery);
104 }
105
106
119 @SuppressWarnings("rawtypes")
120 public java.util.List dynamicQuery(
121 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
122 int end) throws com.liferay.portal.kernel.exception.SystemException {
123 return _shoppingCouponLocalService.dynamicQuery(dynamicQuery, start, end);
124 }
125
126
140 @SuppressWarnings("rawtypes")
141 public java.util.List dynamicQuery(
142 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
143 int end,
144 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
145 throws com.liferay.portal.kernel.exception.SystemException {
146 return _shoppingCouponLocalService.dynamicQuery(dynamicQuery, start,
147 end, orderByComparator);
148 }
149
150
157 public long dynamicQueryCount(
158 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
159 throws com.liferay.portal.kernel.exception.SystemException {
160 return _shoppingCouponLocalService.dynamicQueryCount(dynamicQuery);
161 }
162
163 public com.liferay.portlet.shopping.model.ShoppingCoupon fetchShoppingCoupon(
164 long couponId)
165 throws com.liferay.portal.kernel.exception.SystemException {
166 return _shoppingCouponLocalService.fetchShoppingCoupon(couponId);
167 }
168
169
177 public com.liferay.portlet.shopping.model.ShoppingCoupon getShoppingCoupon(
178 long couponId)
179 throws com.liferay.portal.kernel.exception.PortalException,
180 com.liferay.portal.kernel.exception.SystemException {
181 return _shoppingCouponLocalService.getShoppingCoupon(couponId);
182 }
183
184 public com.liferay.portal.model.PersistedModel getPersistedModel(
185 java.io.Serializable primaryKeyObj)
186 throws com.liferay.portal.kernel.exception.PortalException,
187 com.liferay.portal.kernel.exception.SystemException {
188 return _shoppingCouponLocalService.getPersistedModel(primaryKeyObj);
189 }
190
191
203 public java.util.List<com.liferay.portlet.shopping.model.ShoppingCoupon> getShoppingCoupons(
204 int start, int end)
205 throws com.liferay.portal.kernel.exception.SystemException {
206 return _shoppingCouponLocalService.getShoppingCoupons(start, end);
207 }
208
209
215 public int getShoppingCouponsCount()
216 throws com.liferay.portal.kernel.exception.SystemException {
217 return _shoppingCouponLocalService.getShoppingCouponsCount();
218 }
219
220
227 public com.liferay.portlet.shopping.model.ShoppingCoupon updateShoppingCoupon(
228 com.liferay.portlet.shopping.model.ShoppingCoupon shoppingCoupon)
229 throws com.liferay.portal.kernel.exception.SystemException {
230 return _shoppingCouponLocalService.updateShoppingCoupon(shoppingCoupon);
231 }
232
233
238 public java.lang.String getBeanIdentifier() {
239 return _shoppingCouponLocalService.getBeanIdentifier();
240 }
241
242
247 public void setBeanIdentifier(java.lang.String beanIdentifier) {
248 _shoppingCouponLocalService.setBeanIdentifier(beanIdentifier);
249 }
250
251 public com.liferay.portlet.shopping.model.ShoppingCoupon addCoupon(
252 long userId, java.lang.String code, boolean autoCode,
253 java.lang.String name, java.lang.String description,
254 int startDateMonth, int startDateDay, int startDateYear,
255 int startDateHour, int startDateMinute, int endDateMonth,
256 int endDateDay, int endDateYear, int endDateHour, int endDateMinute,
257 boolean neverExpire, boolean active, java.lang.String limitCategories,
258 java.lang.String limitSkus, double minOrder, double discount,
259 java.lang.String discountType,
260 com.liferay.portal.service.ServiceContext serviceContext)
261 throws com.liferay.portal.kernel.exception.PortalException,
262 com.liferay.portal.kernel.exception.SystemException {
263 return _shoppingCouponLocalService.addCoupon(userId, code, autoCode,
264 name, description, startDateMonth, startDateDay, startDateYear,
265 startDateHour, startDateMinute, endDateMonth, endDateDay,
266 endDateYear, endDateHour, endDateMinute, neverExpire, active,
267 limitCategories, limitSkus, minOrder, discount, discountType,
268 serviceContext);
269 }
270
271 public void deleteCoupon(long couponId)
272 throws com.liferay.portal.kernel.exception.PortalException,
273 com.liferay.portal.kernel.exception.SystemException {
274 _shoppingCouponLocalService.deleteCoupon(couponId);
275 }
276
277 public void deleteCoupon(
278 com.liferay.portlet.shopping.model.ShoppingCoupon coupon)
279 throws com.liferay.portal.kernel.exception.SystemException {
280 _shoppingCouponLocalService.deleteCoupon(coupon);
281 }
282
283 public void deleteCoupons(long groupId)
284 throws com.liferay.portal.kernel.exception.SystemException {
285 _shoppingCouponLocalService.deleteCoupons(groupId);
286 }
287
288 public com.liferay.portlet.shopping.model.ShoppingCoupon getCoupon(
289 long couponId)
290 throws com.liferay.portal.kernel.exception.PortalException,
291 com.liferay.portal.kernel.exception.SystemException {
292 return _shoppingCouponLocalService.getCoupon(couponId);
293 }
294
295 public com.liferay.portlet.shopping.model.ShoppingCoupon getCoupon(
296 java.lang.String code)
297 throws com.liferay.portal.kernel.exception.PortalException,
298 com.liferay.portal.kernel.exception.SystemException {
299 return _shoppingCouponLocalService.getCoupon(code);
300 }
301
302 public java.util.List<com.liferay.portlet.shopping.model.ShoppingCoupon> search(
303 long groupId, long companyId, java.lang.String code, boolean active,
304 java.lang.String discountType, boolean andOperator, int start, int end)
305 throws com.liferay.portal.kernel.exception.SystemException {
306 return _shoppingCouponLocalService.search(groupId, companyId, code,
307 active, discountType, andOperator, start, end);
308 }
309
310 public int searchCount(long groupId, long companyId, java.lang.String code,
311 boolean active, java.lang.String discountType, boolean andOperator)
312 throws com.liferay.portal.kernel.exception.SystemException {
313 return _shoppingCouponLocalService.searchCount(groupId, companyId,
314 code, active, discountType, andOperator);
315 }
316
317 public com.liferay.portlet.shopping.model.ShoppingCoupon updateCoupon(
318 long userId, long couponId, java.lang.String name,
319 java.lang.String description, int startDateMonth, int startDateDay,
320 int startDateYear, int startDateHour, int startDateMinute,
321 int endDateMonth, int endDateDay, int endDateYear, int endDateHour,
322 int endDateMinute, boolean neverExpire, boolean active,
323 java.lang.String limitCategories, java.lang.String limitSkus,
324 double minOrder, double discount, java.lang.String discountType,
325 com.liferay.portal.service.ServiceContext serviceContext)
326 throws com.liferay.portal.kernel.exception.PortalException,
327 com.liferay.portal.kernel.exception.SystemException {
328 return _shoppingCouponLocalService.updateCoupon(userId, couponId, name,
329 description, startDateMonth, startDateDay, startDateYear,
330 startDateHour, startDateMinute, endDateMonth, endDateDay,
331 endDateYear, endDateHour, endDateMinute, neverExpire, active,
332 limitCategories, limitSkus, minOrder, discount, discountType,
333 serviceContext);
334 }
335
336
339 public ShoppingCouponLocalService getWrappedShoppingCouponLocalService() {
340 return _shoppingCouponLocalService;
341 }
342
343
346 public void setWrappedShoppingCouponLocalService(
347 ShoppingCouponLocalService shoppingCouponLocalService) {
348 _shoppingCouponLocalService = shoppingCouponLocalService;
349 }
350
351 public ShoppingCouponLocalService getWrappedService() {
352 return _shoppingCouponLocalService;
353 }
354
355 public void setWrappedService(
356 ShoppingCouponLocalService shoppingCouponLocalService) {
357 _shoppingCouponLocalService = shoppingCouponLocalService;
358 }
359
360 private ShoppingCouponLocalService _shoppingCouponLocalService;
361 }