1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.expando.service;
24  
25  
26  /**
27   * <a href="ExpandoRowLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link ExpandoRowLocalService}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       ExpandoRowLocalService
40   * @generated
41   */
42  public class ExpandoRowLocalServiceWrapper implements ExpandoRowLocalService {
43      public ExpandoRowLocalServiceWrapper(
44          ExpandoRowLocalService expandoRowLocalService) {
45          _expandoRowLocalService = expandoRowLocalService;
46      }
47  
48      public com.liferay.portlet.expando.model.ExpandoRow addExpandoRow(
49          com.liferay.portlet.expando.model.ExpandoRow expandoRow)
50          throws com.liferay.portal.SystemException {
51          return _expandoRowLocalService.addExpandoRow(expandoRow);
52      }
53  
54      public com.liferay.portlet.expando.model.ExpandoRow createExpandoRow(
55          long rowId) {
56          return _expandoRowLocalService.createExpandoRow(rowId);
57      }
58  
59      public void deleteExpandoRow(long rowId)
60          throws com.liferay.portal.PortalException,
61              com.liferay.portal.SystemException {
62          _expandoRowLocalService.deleteExpandoRow(rowId);
63      }
64  
65      public void deleteExpandoRow(
66          com.liferay.portlet.expando.model.ExpandoRow expandoRow)
67          throws com.liferay.portal.SystemException {
68          _expandoRowLocalService.deleteExpandoRow(expandoRow);
69      }
70  
71      public java.util.List<Object> dynamicQuery(
72          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
73          throws com.liferay.portal.SystemException {
74          return _expandoRowLocalService.dynamicQuery(dynamicQuery);
75      }
76  
77      public java.util.List<Object> dynamicQuery(
78          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79          int end) throws com.liferay.portal.SystemException {
80          return _expandoRowLocalService.dynamicQuery(dynamicQuery, start, end);
81      }
82  
83      public com.liferay.portlet.expando.model.ExpandoRow getExpandoRow(
84          long rowId)
85          throws com.liferay.portal.PortalException,
86              com.liferay.portal.SystemException {
87          return _expandoRowLocalService.getExpandoRow(rowId);
88      }
89  
90      public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getExpandoRows(
91          int start, int end) throws com.liferay.portal.SystemException {
92          return _expandoRowLocalService.getExpandoRows(start, end);
93      }
94  
95      public int getExpandoRowsCount() throws com.liferay.portal.SystemException {
96          return _expandoRowLocalService.getExpandoRowsCount();
97      }
98  
99      public com.liferay.portlet.expando.model.ExpandoRow updateExpandoRow(
100         com.liferay.portlet.expando.model.ExpandoRow expandoRow)
101         throws com.liferay.portal.SystemException {
102         return _expandoRowLocalService.updateExpandoRow(expandoRow);
103     }
104 
105     public com.liferay.portlet.expando.model.ExpandoRow updateExpandoRow(
106         com.liferay.portlet.expando.model.ExpandoRow expandoRow, boolean merge)
107         throws com.liferay.portal.SystemException {
108         return _expandoRowLocalService.updateExpandoRow(expandoRow, merge);
109     }
110 
111     public com.liferay.portlet.expando.model.ExpandoRow addRow(long tableId,
112         long classPK)
113         throws com.liferay.portal.PortalException,
114             com.liferay.portal.SystemException {
115         return _expandoRowLocalService.addRow(tableId, classPK);
116     }
117 
118     public void deleteRow(long rowId)
119         throws com.liferay.portal.PortalException,
120             com.liferay.portal.SystemException {
121         _expandoRowLocalService.deleteRow(rowId);
122     }
123 
124     public void deleteRow(long tableId, long classPK)
125         throws com.liferay.portal.PortalException,
126             com.liferay.portal.SystemException {
127         _expandoRowLocalService.deleteRow(tableId, classPK);
128     }
129 
130     public void deleteRow(long classNameId, java.lang.String tableName,
131         long classPK)
132         throws com.liferay.portal.PortalException,
133             com.liferay.portal.SystemException {
134         _expandoRowLocalService.deleteRow(classNameId, tableName, classPK);
135     }
136 
137     public void deleteRow(java.lang.String className,
138         java.lang.String tableName, long classPK)
139         throws com.liferay.portal.PortalException,
140             com.liferay.portal.SystemException {
141         _expandoRowLocalService.deleteRow(className, tableName, classPK);
142     }
143 
144     public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getDefaultTableRows(
145         long classNameId, int start, int end)
146         throws com.liferay.portal.SystemException {
147         return _expandoRowLocalService.getDefaultTableRows(classNameId, start,
148             end);
149     }
150 
151     public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getDefaultTableRows(
152         java.lang.String className, int start, int end)
153         throws com.liferay.portal.SystemException {
154         return _expandoRowLocalService.getDefaultTableRows(className, start, end);
155     }
156 
157     public int getDefaultTableRowsCount(long classNameId)
158         throws com.liferay.portal.SystemException {
159         return _expandoRowLocalService.getDefaultTableRowsCount(classNameId);
160     }
161 
162     public int getDefaultTableRowsCount(java.lang.String className)
163         throws com.liferay.portal.SystemException {
164         return _expandoRowLocalService.getDefaultTableRowsCount(className);
165     }
166 
167     public com.liferay.portlet.expando.model.ExpandoRow getRow(long rowId)
168         throws com.liferay.portal.PortalException,
169             com.liferay.portal.SystemException {
170         return _expandoRowLocalService.getRow(rowId);
171     }
172 
173     public com.liferay.portlet.expando.model.ExpandoRow getRow(long tableId,
174         long classPK)
175         throws com.liferay.portal.PortalException,
176             com.liferay.portal.SystemException {
177         return _expandoRowLocalService.getRow(tableId, classPK);
178     }
179 
180     public com.liferay.portlet.expando.model.ExpandoRow getRow(
181         long classNameId, java.lang.String tableName, long classPK)
182         throws com.liferay.portal.SystemException {
183         return _expandoRowLocalService.getRow(classNameId, tableName, classPK);
184     }
185 
186     public com.liferay.portlet.expando.model.ExpandoRow getRow(
187         java.lang.String className, java.lang.String tableName, long classPK)
188         throws com.liferay.portal.SystemException {
189         return _expandoRowLocalService.getRow(className, tableName, classPK);
190     }
191 
192     public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getRows(
193         long tableId, int start, int end)
194         throws com.liferay.portal.SystemException {
195         return _expandoRowLocalService.getRows(tableId, start, end);
196     }
197 
198     public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getRows(
199         long classNameId, java.lang.String tableName, int start, int end)
200         throws com.liferay.portal.SystemException {
201         return _expandoRowLocalService.getRows(classNameId, tableName, start,
202             end);
203     }
204 
205     public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getRows(
206         java.lang.String className, java.lang.String tableName, int start,
207         int end) throws com.liferay.portal.SystemException {
208         return _expandoRowLocalService.getRows(className, tableName, start, end);
209     }
210 
211     public int getRowsCount(long tableId)
212         throws com.liferay.portal.SystemException {
213         return _expandoRowLocalService.getRowsCount(tableId);
214     }
215 
216     public int getRowsCount(long classNameId, java.lang.String tableName)
217         throws com.liferay.portal.SystemException {
218         return _expandoRowLocalService.getRowsCount(classNameId, tableName);
219     }
220 
221     public int getRowsCount(java.lang.String className,
222         java.lang.String tableName) throws com.liferay.portal.SystemException {
223         return _expandoRowLocalService.getRowsCount(className, tableName);
224     }
225 
226     public ExpandoRowLocalService getWrappedExpandoRowLocalService() {
227         return _expandoRowLocalService;
228     }
229 
230     private ExpandoRowLocalService _expandoRowLocalService;
231 }