1
14
15 package com.liferay.portlet.shopping.service;
16
17
18
34 public class ShoppingItemFieldLocalServiceWrapper
35 implements ShoppingItemFieldLocalService {
36 public ShoppingItemFieldLocalServiceWrapper(
37 ShoppingItemFieldLocalService shoppingItemFieldLocalService) {
38 _shoppingItemFieldLocalService = shoppingItemFieldLocalService;
39 }
40
41 public com.liferay.portlet.shopping.model.ShoppingItemField addShoppingItemField(
42 com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField)
43 throws com.liferay.portal.kernel.exception.SystemException {
44 return _shoppingItemFieldLocalService.addShoppingItemField(shoppingItemField);
45 }
46
47 public com.liferay.portlet.shopping.model.ShoppingItemField createShoppingItemField(
48 long itemFieldId) {
49 return _shoppingItemFieldLocalService.createShoppingItemField(itemFieldId);
50 }
51
52 public void deleteShoppingItemField(long itemFieldId)
53 throws com.liferay.portal.kernel.exception.PortalException,
54 com.liferay.portal.kernel.exception.SystemException {
55 _shoppingItemFieldLocalService.deleteShoppingItemField(itemFieldId);
56 }
57
58 public void deleteShoppingItemField(
59 com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField)
60 throws com.liferay.portal.kernel.exception.SystemException {
61 _shoppingItemFieldLocalService.deleteShoppingItemField(shoppingItemField);
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 _shoppingItemFieldLocalService.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 _shoppingItemFieldLocalService.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.kernel.exception.SystemException {
82 return _shoppingItemFieldLocalService.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.kernel.exception.SystemException {
89 return _shoppingItemFieldLocalService.dynamicQueryCount(dynamicQuery);
90 }
91
92 public com.liferay.portlet.shopping.model.ShoppingItemField getShoppingItemField(
93 long itemFieldId)
94 throws com.liferay.portal.kernel.exception.PortalException,
95 com.liferay.portal.kernel.exception.SystemException {
96 return _shoppingItemFieldLocalService.getShoppingItemField(itemFieldId);
97 }
98
99 public java.util.List<com.liferay.portlet.shopping.model.ShoppingItemField> getShoppingItemFields(
100 int start, int end)
101 throws com.liferay.portal.kernel.exception.SystemException {
102 return _shoppingItemFieldLocalService.getShoppingItemFields(start, end);
103 }
104
105 public int getShoppingItemFieldsCount()
106 throws com.liferay.portal.kernel.exception.SystemException {
107 return _shoppingItemFieldLocalService.getShoppingItemFieldsCount();
108 }
109
110 public com.liferay.portlet.shopping.model.ShoppingItemField updateShoppingItemField(
111 com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField)
112 throws com.liferay.portal.kernel.exception.SystemException {
113 return _shoppingItemFieldLocalService.updateShoppingItemField(shoppingItemField);
114 }
115
116 public com.liferay.portlet.shopping.model.ShoppingItemField updateShoppingItemField(
117 com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField,
118 boolean merge)
119 throws com.liferay.portal.kernel.exception.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.kernel.exception.SystemException {
126 return _shoppingItemFieldLocalService.getItemFields(itemId);
127 }
128
129 public ShoppingItemFieldLocalService getWrappedShoppingItemFieldLocalService() {
130 return _shoppingItemFieldLocalService;
131 }
132
133 private ShoppingItemFieldLocalService _shoppingItemFieldLocalService;
134 }