1
22
23 package com.liferay.portlet.shopping.service;
24
25 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
26
27
47 public class ShoppingItemPriceLocalServiceUtil {
48 public static com.liferay.portlet.shopping.model.ShoppingItemPrice addShoppingItemPrice(
49 com.liferay.portlet.shopping.model.ShoppingItemPrice shoppingItemPrice)
50 throws com.liferay.portal.SystemException {
51 return getService().addShoppingItemPrice(shoppingItemPrice);
52 }
53
54 public static com.liferay.portlet.shopping.model.ShoppingItemPrice createShoppingItemPrice(
55 long itemPriceId) {
56 return getService().createShoppingItemPrice(itemPriceId);
57 }
58
59 public static void deleteShoppingItemPrice(long itemPriceId)
60 throws com.liferay.portal.PortalException,
61 com.liferay.portal.SystemException {
62 getService().deleteShoppingItemPrice(itemPriceId);
63 }
64
65 public static void deleteShoppingItemPrice(
66 com.liferay.portlet.shopping.model.ShoppingItemPrice shoppingItemPrice)
67 throws com.liferay.portal.SystemException {
68 getService().deleteShoppingItemPrice(shoppingItemPrice);
69 }
70
71 public static java.util.List<Object> dynamicQuery(
72 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
73 throws com.liferay.portal.SystemException {
74 return getService().dynamicQuery(dynamicQuery);
75 }
76
77 public static java.util.List<Object> dynamicQuery(
78 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79 int end) throws com.liferay.portal.SystemException {
80 return getService().dynamicQuery(dynamicQuery, start, end);
81 }
82
83 public static com.liferay.portlet.shopping.model.ShoppingItemPrice getShoppingItemPrice(
84 long itemPriceId)
85 throws com.liferay.portal.PortalException,
86 com.liferay.portal.SystemException {
87 return getService().getShoppingItemPrice(itemPriceId);
88 }
89
90 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingItemPrice> getShoppingItemPrices(
91 int start, int end) throws com.liferay.portal.SystemException {
92 return getService().getShoppingItemPrices(start, end);
93 }
94
95 public static int getShoppingItemPricesCount()
96 throws com.liferay.portal.SystemException {
97 return getService().getShoppingItemPricesCount();
98 }
99
100 public static com.liferay.portlet.shopping.model.ShoppingItemPrice updateShoppingItemPrice(
101 com.liferay.portlet.shopping.model.ShoppingItemPrice shoppingItemPrice)
102 throws com.liferay.portal.SystemException {
103 return getService().updateShoppingItemPrice(shoppingItemPrice);
104 }
105
106 public static com.liferay.portlet.shopping.model.ShoppingItemPrice updateShoppingItemPrice(
107 com.liferay.portlet.shopping.model.ShoppingItemPrice shoppingItemPrice,
108 boolean merge) throws com.liferay.portal.SystemException {
109 return getService().updateShoppingItemPrice(shoppingItemPrice, merge);
110 }
111
112 public static java.util.List<com.liferay.portlet.shopping.model.ShoppingItemPrice> getItemPrices(
113 long itemId)
114 throws com.liferay.portal.PortalException,
115 com.liferay.portal.SystemException {
116 return getService().getItemPrices(itemId);
117 }
118
119 public static ShoppingItemPriceLocalService getService() {
120 if (_service == null) {
121 _service = (ShoppingItemPriceLocalService)PortalBeanLocatorUtil.locate(ShoppingItemPriceLocalService.class.getName());
122 }
123
124 return _service;
125 }
126
127 public void setService(ShoppingItemPriceLocalService service) {
128 _service = service;
129 }
130
131 private static ShoppingItemPriceLocalService _service;
132 }