001
014
015 package com.liferay.portlet.shopping.service;
016
017
026 public class ShoppingItemFieldLocalServiceWrapper
027 implements ShoppingItemFieldLocalService {
028 public ShoppingItemFieldLocalServiceWrapper(
029 ShoppingItemFieldLocalService shoppingItemFieldLocalService) {
030 _shoppingItemFieldLocalService = shoppingItemFieldLocalService;
031 }
032
033 public com.liferay.portlet.shopping.model.ShoppingItemField addShoppingItemField(
034 com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField)
035 throws com.liferay.portal.kernel.exception.SystemException {
036 return _shoppingItemFieldLocalService.addShoppingItemField(shoppingItemField);
037 }
038
039 public com.liferay.portlet.shopping.model.ShoppingItemField createShoppingItemField(
040 long itemFieldId) {
041 return _shoppingItemFieldLocalService.createShoppingItemField(itemFieldId);
042 }
043
044 public void deleteShoppingItemField(long itemFieldId)
045 throws com.liferay.portal.kernel.exception.PortalException,
046 com.liferay.portal.kernel.exception.SystemException {
047 _shoppingItemFieldLocalService.deleteShoppingItemField(itemFieldId);
048 }
049
050 public void deleteShoppingItemField(
051 com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField)
052 throws com.liferay.portal.kernel.exception.SystemException {
053 _shoppingItemFieldLocalService.deleteShoppingItemField(shoppingItemField);
054 }
055
056 @SuppressWarnings("unchecked")
057 public java.util.List dynamicQuery(
058 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
059 throws com.liferay.portal.kernel.exception.SystemException {
060 return _shoppingItemFieldLocalService.dynamicQuery(dynamicQuery);
061 }
062
063 @SuppressWarnings("unchecked")
064 public java.util.List dynamicQuery(
065 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
066 int end) throws com.liferay.portal.kernel.exception.SystemException {
067 return _shoppingItemFieldLocalService.dynamicQuery(dynamicQuery, start,
068 end);
069 }
070
071 @SuppressWarnings("unchecked")
072 public java.util.List dynamicQuery(
073 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
074 int end,
075 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
076 throws com.liferay.portal.kernel.exception.SystemException {
077 return _shoppingItemFieldLocalService.dynamicQuery(dynamicQuery, start,
078 end, orderByComparator);
079 }
080
081 public long dynamicQueryCount(
082 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
083 throws com.liferay.portal.kernel.exception.SystemException {
084 return _shoppingItemFieldLocalService.dynamicQueryCount(dynamicQuery);
085 }
086
087 public com.liferay.portlet.shopping.model.ShoppingItemField getShoppingItemField(
088 long itemFieldId)
089 throws com.liferay.portal.kernel.exception.PortalException,
090 com.liferay.portal.kernel.exception.SystemException {
091 return _shoppingItemFieldLocalService.getShoppingItemField(itemFieldId);
092 }
093
094 public java.util.List<com.liferay.portlet.shopping.model.ShoppingItemField> getShoppingItemFields(
095 int start, int end)
096 throws com.liferay.portal.kernel.exception.SystemException {
097 return _shoppingItemFieldLocalService.getShoppingItemFields(start, end);
098 }
099
100 public int getShoppingItemFieldsCount()
101 throws com.liferay.portal.kernel.exception.SystemException {
102 return _shoppingItemFieldLocalService.getShoppingItemFieldsCount();
103 }
104
105 public com.liferay.portlet.shopping.model.ShoppingItemField updateShoppingItemField(
106 com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField)
107 throws com.liferay.portal.kernel.exception.SystemException {
108 return _shoppingItemFieldLocalService.updateShoppingItemField(shoppingItemField);
109 }
110
111 public com.liferay.portlet.shopping.model.ShoppingItemField updateShoppingItemField(
112 com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField,
113 boolean merge)
114 throws com.liferay.portal.kernel.exception.SystemException {
115 return _shoppingItemFieldLocalService.updateShoppingItemField(shoppingItemField,
116 merge);
117 }
118
119 public java.util.List<com.liferay.portlet.shopping.model.ShoppingItemField> getItemFields(
120 long itemId) throws com.liferay.portal.kernel.exception.SystemException {
121 return _shoppingItemFieldLocalService.getItemFields(itemId);
122 }
123
124 public ShoppingItemFieldLocalService getWrappedShoppingItemFieldLocalService() {
125 return _shoppingItemFieldLocalService;
126 }
127
128 private ShoppingItemFieldLocalService _shoppingItemFieldLocalService;
129 }