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 @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 _shoppingItemFieldLocalService.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 _shoppingItemFieldLocalService.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 _shoppingItemFieldLocalService.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 _shoppingItemFieldLocalService.dynamicQueryCount(dynamicQuery);
93 }
94
95 public com.liferay.portlet.shopping.model.ShoppingItemField getShoppingItemField(
96 long itemFieldId)
97 throws com.liferay.portal.kernel.exception.PortalException,
98 com.liferay.portal.kernel.exception.SystemException {
99 return _shoppingItemFieldLocalService.getShoppingItemField(itemFieldId);
100 }
101
102 public java.util.List<com.liferay.portlet.shopping.model.ShoppingItemField> getShoppingItemFields(
103 int start, int end)
104 throws com.liferay.portal.kernel.exception.SystemException {
105 return _shoppingItemFieldLocalService.getShoppingItemFields(start, end);
106 }
107
108 public int getShoppingItemFieldsCount()
109 throws com.liferay.portal.kernel.exception.SystemException {
110 return _shoppingItemFieldLocalService.getShoppingItemFieldsCount();
111 }
112
113 public com.liferay.portlet.shopping.model.ShoppingItemField updateShoppingItemField(
114 com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField)
115 throws com.liferay.portal.kernel.exception.SystemException {
116 return _shoppingItemFieldLocalService.updateShoppingItemField(shoppingItemField);
117 }
118
119 public com.liferay.portlet.shopping.model.ShoppingItemField updateShoppingItemField(
120 com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField,
121 boolean merge)
122 throws com.liferay.portal.kernel.exception.SystemException {
123 return _shoppingItemFieldLocalService.updateShoppingItemField(shoppingItemField,
124 merge);
125 }
126
127 public java.util.List<com.liferay.portlet.shopping.model.ShoppingItemField> getItemFields(
128 long itemId) throws com.liferay.portal.kernel.exception.SystemException {
129 return _shoppingItemFieldLocalService.getItemFields(itemId);
130 }
131
132 public ShoppingItemFieldLocalService getWrappedShoppingItemFieldLocalService() {
133 return _shoppingItemFieldLocalService;
134 }
135
136 private ShoppingItemFieldLocalService _shoppingItemFieldLocalService;
137 }