1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.shopping.service;
16  
17  
18  /**
19   * <a href="ShoppingItemFieldLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
20   *
21   * <p>
22   * ServiceBuilder generated this class. Modifications in this class will be
23   * overwritten the next time is generated.
24   * </p>
25   *
26   * <p>
27   * This class is a wrapper for {@link ShoppingItemFieldLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       ShoppingItemFieldLocalService
32   * @generated
33   */
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.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.PortalException,
54              com.liferay.portal.SystemException {
55          _shoppingItemFieldLocalService.deleteShoppingItemField(itemFieldId);
56      }
57  
58      public void deleteShoppingItemField(
59          com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField)
60          throws com.liferay.portal.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.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.SystemException {
73          return _shoppingItemFieldLocalService.dynamicQuery(dynamicQuery, start,
74              end);
75      }
76  
77      public com.liferay.portlet.shopping.model.ShoppingItemField getShoppingItemField(
78          long itemFieldId)
79          throws com.liferay.portal.PortalException,
80              com.liferay.portal.SystemException {
81          return _shoppingItemFieldLocalService.getShoppingItemField(itemFieldId);
82      }
83  
84      public java.util.List<com.liferay.portlet.shopping.model.ShoppingItemField> getShoppingItemFields(
85          int start, int end) throws com.liferay.portal.SystemException {
86          return _shoppingItemFieldLocalService.getShoppingItemFields(start, end);
87      }
88  
89      public int getShoppingItemFieldsCount()
90          throws com.liferay.portal.SystemException {
91          return _shoppingItemFieldLocalService.getShoppingItemFieldsCount();
92      }
93  
94      public com.liferay.portlet.shopping.model.ShoppingItemField updateShoppingItemField(
95          com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField)
96          throws com.liferay.portal.SystemException {
97          return _shoppingItemFieldLocalService.updateShoppingItemField(shoppingItemField);
98      }
99  
100     public com.liferay.portlet.shopping.model.ShoppingItemField updateShoppingItemField(
101         com.liferay.portlet.shopping.model.ShoppingItemField shoppingItemField,
102         boolean merge) throws com.liferay.portal.SystemException {
103         return _shoppingItemFieldLocalService.updateShoppingItemField(shoppingItemField,
104             merge);
105     }
106 
107     public java.util.List<com.liferay.portlet.shopping.model.ShoppingItemField> getItemFields(
108         long itemId) throws com.liferay.portal.SystemException {
109         return _shoppingItemFieldLocalService.getItemFields(itemId);
110     }
111 
112     public ShoppingItemFieldLocalService getWrappedShoppingItemFieldLocalService() {
113         return _shoppingItemFieldLocalService;
114     }
115 
116     private ShoppingItemFieldLocalService _shoppingItemFieldLocalService;
117 }