1
14
15 package com.liferay.portlet.shopping.service;
16
17
33 public class ShoppingItemFieldLocalServiceWrapper
34 implements ShoppingItemFieldLocalService {
35 public ShoppingItemFieldLocalServiceWrapper(
36 ShoppingItemFieldLocalService shoppingItemFieldLocalService) {
37 _shoppingItemFieldLocalService = shoppingItemFieldLocalService;
38 }
39
40 public com.liferay.portlet.shopping.model.ShoppingItemField addShoppingItemField(
41 com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField)
42 throws com.liferay.portal.SystemException {
43 return _shoppingItemFieldLocalService.addShoppingItemField(shoppingItemField);
44 }
45
46 public com.liferay.portlet.shopping.model.ShoppingItemField createShoppingItemField(
47 long itemFieldId) {
48 return _shoppingItemFieldLocalService.createShoppingItemField(itemFieldId);
49 }
50
51 public void deleteShoppingItemField(long itemFieldId)
52 throws com.liferay.portal.PortalException,
53 com.liferay.portal.SystemException {
54 _shoppingItemFieldLocalService.deleteShoppingItemField(itemFieldId);
55 }
56
57 public void deleteShoppingItemField(
58 com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField)
59 throws com.liferay.portal.SystemException {
60 _shoppingItemFieldLocalService.deleteShoppingItemField(shoppingItemField);
61 }
62
63 @SuppressWarnings("rawtypes")
64 public java.util.List dynamicQuery(
65 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66 throws com.liferay.portal.SystemException {
67 return _shoppingItemFieldLocalService.dynamicQuery(dynamicQuery);
68 }
69
70 @SuppressWarnings("rawtypes")
71 public java.util.List dynamicQuery(
72 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
73 int end) throws com.liferay.portal.SystemException {
74 return _shoppingItemFieldLocalService.dynamicQuery(dynamicQuery, start,
75 end);
76 }
77
78 @SuppressWarnings("rawtypes")
79 public java.util.List dynamicQuery(
80 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
81 int end,
82 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
83 throws com.liferay.portal.SystemException {
84 return _shoppingItemFieldLocalService.dynamicQuery(dynamicQuery, start,
85 end, orderByComparator);
86 }
87
88 public int dynamicQueryCount(
89 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
90 throws com.liferay.portal.SystemException {
91 return _shoppingItemFieldLocalService.dynamicQueryCount(dynamicQuery);
92 }
93
94 public com.liferay.portlet.shopping.model.ShoppingItemField getShoppingItemField(
95 long itemFieldId)
96 throws com.liferay.portal.PortalException,
97 com.liferay.portal.SystemException {
98 return _shoppingItemFieldLocalService.getShoppingItemField(itemFieldId);
99 }
100
101 public java.util.List<com.liferay.portlet.shopping.model.ShoppingItemField> getShoppingItemFields(
102 int start, int end) throws com.liferay.portal.SystemException {
103 return _shoppingItemFieldLocalService.getShoppingItemFields(start, end);
104 }
105
106 public int getShoppingItemFieldsCount()
107 throws com.liferay.portal.SystemException {
108 return _shoppingItemFieldLocalService.getShoppingItemFieldsCount();
109 }
110
111 public com.liferay.portlet.shopping.model.ShoppingItemField updateShoppingItemField(
112 com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField)
113 throws com.liferay.portal.SystemException {
114 return _shoppingItemFieldLocalService.updateShoppingItemField(shoppingItemField);
115 }
116
117 public com.liferay.portlet.shopping.model.ShoppingItemField updateShoppingItemField(
118 com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField,
119 boolean merge) throws com.liferay.portal.SystemException {
120 return _shoppingItemFieldLocalService.updateShoppingItemField(shoppingItemField,
121 merge);
122 }
123
124 public java.util.List<com.liferay.portlet.shopping.model.ShoppingItemField> getItemFields(
125 long itemId) throws com.liferay.portal.SystemException {
126 return _shoppingItemFieldLocalService.getItemFields(itemId);
127 }
128
129 public ShoppingItemFieldLocalService getWrappedShoppingItemFieldLocalService() {
130 return _shoppingItemFieldLocalService;
131 }
132
133 private ShoppingItemFieldLocalService _shoppingItemFieldLocalService;
134 }