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