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 @SuppressWarnings("unchecked")
65 public java.util.List dynamicQuery(
66 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
67 throws com.liferay.portal.kernel.exception.SystemException {
68 return _shoppingItemPriceLocalService.dynamicQuery(dynamicQuery);
69 }
70
71 @SuppressWarnings("unchecked")
72 public java.util.List dynamicQuery(
73 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
74 int end) throws com.liferay.portal.kernel.exception.SystemException {
75 return _shoppingItemPriceLocalService.dynamicQuery(dynamicQuery, start,
76 end);
77 }
78
79 @SuppressWarnings("unchecked")
80 public java.util.List dynamicQuery(
81 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
82 int end,
83 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
84 throws com.liferay.portal.kernel.exception.SystemException {
85 return _shoppingItemPriceLocalService.dynamicQuery(dynamicQuery, start,
86 end, orderByComparator);
87 }
88
89 public long dynamicQueryCount(
90 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
91 throws com.liferay.portal.kernel.exception.SystemException {
92 return _shoppingItemPriceLocalService.dynamicQueryCount(dynamicQuery);
93 }
94
95 public com.liferay.portlet.shopping.model.ShoppingItemPrice getShoppingItemPrice(
96 long itemPriceId)
97 throws com.liferay.portal.kernel.exception.PortalException,
98 com.liferay.portal.kernel.exception.SystemException {
99 return _shoppingItemPriceLocalService.getShoppingItemPrice(itemPriceId);
100 }
101
102 public java.util.List<com.liferay.portlet.shopping.model.ShoppingItemPrice> getShoppingItemPrices(
103 int start, int end)
104 throws com.liferay.portal.kernel.exception.SystemException {
105 return _shoppingItemPriceLocalService.getShoppingItemPrices(start, end);
106 }
107
108 public int getShoppingItemPricesCount()
109 throws com.liferay.portal.kernel.exception.SystemException {
110 return _shoppingItemPriceLocalService.getShoppingItemPricesCount();
111 }
112
113 public com.liferay.portlet.shopping.model.ShoppingItemPrice updateShoppingItemPrice(
114 com.liferay.portlet.shopping.model.ShoppingItemPrice shoppingItemPrice)
115 throws com.liferay.portal.kernel.exception.SystemException {
116 return _shoppingItemPriceLocalService.updateShoppingItemPrice(shoppingItemPrice);
117 }
118
119 public com.liferay.portlet.shopping.model.ShoppingItemPrice updateShoppingItemPrice(
120 com.liferay.portlet.shopping.model.ShoppingItemPrice shoppingItemPrice,
121 boolean merge)
122 throws com.liferay.portal.kernel.exception.SystemException {
123 return _shoppingItemPriceLocalService.updateShoppingItemPrice(shoppingItemPrice,
124 merge);
125 }
126
127 public java.util.List<com.liferay.portlet.shopping.model.ShoppingItemPrice> getItemPrices(
128 long itemId)
129 throws com.liferay.portal.kernel.exception.PortalException,
130 com.liferay.portal.kernel.exception.SystemException {
131 return _shoppingItemPriceLocalService.getItemPrices(itemId);
132 }
133
134 public ShoppingItemPriceLocalService getWrappedShoppingItemPriceLocalService() {
135 return _shoppingItemPriceLocalService;
136 }
137
138 private ShoppingItemPriceLocalService _shoppingItemPriceLocalService;
139 }