1
14
15 package com.liferay.portlet.shopping.service;
16
17
18
34 public class ShoppingItemPriceLocalServiceWrapper
35 implements ShoppingItemPriceLocalService {
36 public ShoppingItemPriceLocalServiceWrapper(
37 ShoppingItemPriceLocalService shoppingItemPriceLocalService) {
38 _shoppingItemPriceLocalService = shoppingItemPriceLocalService;
39 }
40
41 public com.liferay.portlet.shopping.model.ShoppingItemPrice addShoppingItemPrice(
42 com.liferay.portlet.shopping.model.ShoppingItemPrice shoppingItemPrice)
43 throws com.liferay.portal.kernel.exception.SystemException {
44 return _shoppingItemPriceLocalService.addShoppingItemPrice(shoppingItemPrice);
45 }
46
47 public com.liferay.portlet.shopping.model.ShoppingItemPrice createShoppingItemPrice(
48 long itemPriceId) {
49 return _shoppingItemPriceLocalService.createShoppingItemPrice(itemPriceId);
50 }
51
52 public void deleteShoppingItemPrice(long itemPriceId)
53 throws com.liferay.portal.kernel.exception.PortalException,
54 com.liferay.portal.kernel.exception.SystemException {
55 _shoppingItemPriceLocalService.deleteShoppingItemPrice(itemPriceId);
56 }
57
58 public void deleteShoppingItemPrice(
59 com.liferay.portlet.shopping.model.ShoppingItemPrice shoppingItemPrice)
60 throws com.liferay.portal.kernel.exception.SystemException {
61 _shoppingItemPriceLocalService.deleteShoppingItemPrice(shoppingItemPrice);
62 }
63
64 public java.util.List<Object> dynamicQuery(
65 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66 throws com.liferay.portal.kernel.exception.SystemException {
67 return _shoppingItemPriceLocalService.dynamicQuery(dynamicQuery);
68 }
69
70 public java.util.List<Object> dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72 int end) throws com.liferay.portal.kernel.exception.SystemException {
73 return _shoppingItemPriceLocalService.dynamicQuery(dynamicQuery, start,
74 end);
75 }
76
77 public com.liferay.portlet.shopping.model.ShoppingItemPrice getShoppingItemPrice(
78 long itemPriceId)
79 throws com.liferay.portal.kernel.exception.PortalException,
80 com.liferay.portal.kernel.exception.SystemException {
81 return _shoppingItemPriceLocalService.getShoppingItemPrice(itemPriceId);
82 }
83
84 public java.util.List<com.liferay.portlet.shopping.model.ShoppingItemPrice> getShoppingItemPrices(
85 int start, int end)
86 throws com.liferay.portal.kernel.exception.SystemException {
87 return _shoppingItemPriceLocalService.getShoppingItemPrices(start, end);
88 }
89
90 public int getShoppingItemPricesCount()
91 throws com.liferay.portal.kernel.exception.SystemException {
92 return _shoppingItemPriceLocalService.getShoppingItemPricesCount();
93 }
94
95 public com.liferay.portlet.shopping.model.ShoppingItemPrice updateShoppingItemPrice(
96 com.liferay.portlet.shopping.model.ShoppingItemPrice shoppingItemPrice)
97 throws com.liferay.portal.kernel.exception.SystemException {
98 return _shoppingItemPriceLocalService.updateShoppingItemPrice(shoppingItemPrice);
99 }
100
101 public com.liferay.portlet.shopping.model.ShoppingItemPrice updateShoppingItemPrice(
102 com.liferay.portlet.shopping.model.ShoppingItemPrice shoppingItemPrice,
103 boolean merge)
104 throws com.liferay.portal.kernel.exception.SystemException {
105 return _shoppingItemPriceLocalService.updateShoppingItemPrice(shoppingItemPrice,
106 merge);
107 }
108
109 public java.util.List<com.liferay.portlet.shopping.model.ShoppingItemPrice> getItemPrices(
110 long itemId)
111 throws com.liferay.portal.kernel.exception.PortalException,
112 com.liferay.portal.kernel.exception.SystemException {
113 return _shoppingItemPriceLocalService.getItemPrices(itemId);
114 }
115
116 public ShoppingItemPriceLocalService getWrappedShoppingItemPriceLocalService() {
117 return _shoppingItemPriceLocalService;
118 }
119
120 private ShoppingItemPriceLocalService _shoppingItemPriceLocalService;
121 }