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.expando.service;
16  
17  
18  /**
19   * <a href="ExpandoRowLocalServiceUtil.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 ExpandoRowLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       ExpandoRowLocalService
32   * @generated
33   */
34  public class ExpandoRowLocalServiceWrapper implements ExpandoRowLocalService {
35      public ExpandoRowLocalServiceWrapper(
36          ExpandoRowLocalService expandoRowLocalService) {
37          _expandoRowLocalService = expandoRowLocalService;
38      }
39  
40      public com.liferay.portlet.expando.model.ExpandoRow addExpandoRow(
41          com.liferay.portlet.expando.model.ExpandoRow expandoRow)
42          throws com.liferay.portal.kernel.exception.SystemException {
43          return _expandoRowLocalService.addExpandoRow(expandoRow);
44      }
45  
46      public com.liferay.portlet.expando.model.ExpandoRow createExpandoRow(
47          long rowId) {
48          return _expandoRowLocalService.createExpandoRow(rowId);
49      }
50  
51      public void deleteExpandoRow(long rowId)
52          throws com.liferay.portal.kernel.exception.PortalException,
53              com.liferay.portal.kernel.exception.SystemException {
54          _expandoRowLocalService.deleteExpandoRow(rowId);
55      }
56  
57      public void deleteExpandoRow(
58          com.liferay.portlet.expando.model.ExpandoRow expandoRow)
59          throws com.liferay.portal.kernel.exception.SystemException {
60          _expandoRowLocalService.deleteExpandoRow(expandoRow);
61      }
62  
63      public java.util.List<Object> dynamicQuery(
64          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65          throws com.liferay.portal.kernel.exception.SystemException {
66          return _expandoRowLocalService.dynamicQuery(dynamicQuery);
67      }
68  
69      public java.util.List<Object> dynamicQuery(
70          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
71          int end) throws com.liferay.portal.kernel.exception.SystemException {
72          return _expandoRowLocalService.dynamicQuery(dynamicQuery, start, end);
73      }
74  
75      public java.util.List<Object> dynamicQuery(
76          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
77          int end,
78          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
79          throws com.liferay.portal.kernel.exception.SystemException {
80          return _expandoRowLocalService.dynamicQuery(dynamicQuery, start, end,
81              orderByComparator);
82      }
83  
84      public int dynamicQueryCount(
85          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
86          throws com.liferay.portal.kernel.exception.SystemException {
87          return _expandoRowLocalService.dynamicQueryCount(dynamicQuery);
88      }
89  
90      public com.liferay.portlet.expando.model.ExpandoRow getExpandoRow(
91          long rowId)
92          throws com.liferay.portal.kernel.exception.PortalException,
93              com.liferay.portal.kernel.exception.SystemException {
94          return _expandoRowLocalService.getExpandoRow(rowId);
95      }
96  
97      public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getExpandoRows(
98          int start, int end)
99          throws com.liferay.portal.kernel.exception.SystemException {
100         return _expandoRowLocalService.getExpandoRows(start, end);
101     }
102 
103     public int getExpandoRowsCount()
104         throws com.liferay.portal.kernel.exception.SystemException {
105         return _expandoRowLocalService.getExpandoRowsCount();
106     }
107 
108     public com.liferay.portlet.expando.model.ExpandoRow updateExpandoRow(
109         com.liferay.portlet.expando.model.ExpandoRow expandoRow)
110         throws com.liferay.portal.kernel.exception.SystemException {
111         return _expandoRowLocalService.updateExpandoRow(expandoRow);
112     }
113 
114     public com.liferay.portlet.expando.model.ExpandoRow updateExpandoRow(
115         com.liferay.portlet.expando.model.ExpandoRow expandoRow, boolean merge)
116         throws com.liferay.portal.kernel.exception.SystemException {
117         return _expandoRowLocalService.updateExpandoRow(expandoRow, merge);
118     }
119 
120     public com.liferay.portlet.expando.model.ExpandoRow addRow(long tableId,
121         long classPK)
122         throws com.liferay.portal.kernel.exception.PortalException,
123             com.liferay.portal.kernel.exception.SystemException {
124         return _expandoRowLocalService.addRow(tableId, classPK);
125     }
126 
127     public void deleteRow(long rowId)
128         throws com.liferay.portal.kernel.exception.PortalException,
129             com.liferay.portal.kernel.exception.SystemException {
130         _expandoRowLocalService.deleteRow(rowId);
131     }
132 
133     public void deleteRow(long tableId, long classPK)
134         throws com.liferay.portal.kernel.exception.PortalException,
135             com.liferay.portal.kernel.exception.SystemException {
136         _expandoRowLocalService.deleteRow(tableId, classPK);
137     }
138 
139     public void deleteRow(long companyId, long classNameId,
140         java.lang.String tableName, long classPK)
141         throws com.liferay.portal.kernel.exception.PortalException,
142             com.liferay.portal.kernel.exception.SystemException {
143         _expandoRowLocalService.deleteRow(companyId, classNameId, tableName,
144             classPK);
145     }
146 
147     public void deleteRow(long companyId, java.lang.String className,
148         java.lang.String tableName, long classPK)
149         throws com.liferay.portal.kernel.exception.PortalException,
150             com.liferay.portal.kernel.exception.SystemException {
151         _expandoRowLocalService.deleteRow(companyId, className, tableName,
152             classPK);
153     }
154 
155     public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getDefaultTableRows(
156         long companyId, long classNameId, int start, int end)
157         throws com.liferay.portal.kernel.exception.SystemException {
158         return _expandoRowLocalService.getDefaultTableRows(companyId,
159             classNameId, start, end);
160     }
161 
162     public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getDefaultTableRows(
163         long companyId, java.lang.String className, int start, int end)
164         throws com.liferay.portal.kernel.exception.SystemException {
165         return _expandoRowLocalService.getDefaultTableRows(companyId,
166             className, start, end);
167     }
168 
169     public int getDefaultTableRowsCount(long companyId, long classNameId)
170         throws com.liferay.portal.kernel.exception.SystemException {
171         return _expandoRowLocalService.getDefaultTableRowsCount(companyId,
172             classNameId);
173     }
174 
175     public int getDefaultTableRowsCount(long companyId,
176         java.lang.String className)
177         throws com.liferay.portal.kernel.exception.SystemException {
178         return _expandoRowLocalService.getDefaultTableRowsCount(companyId,
179             className);
180     }
181 
182     public com.liferay.portlet.expando.model.ExpandoRow getRow(long rowId)
183         throws com.liferay.portal.kernel.exception.PortalException,
184             com.liferay.portal.kernel.exception.SystemException {
185         return _expandoRowLocalService.getRow(rowId);
186     }
187 
188     public com.liferay.portlet.expando.model.ExpandoRow getRow(long tableId,
189         long classPK)
190         throws com.liferay.portal.kernel.exception.PortalException,
191             com.liferay.portal.kernel.exception.SystemException {
192         return _expandoRowLocalService.getRow(tableId, classPK);
193     }
194 
195     public com.liferay.portlet.expando.model.ExpandoRow getRow(long companyId,
196         long classNameId, java.lang.String tableName, long classPK)
197         throws com.liferay.portal.kernel.exception.SystemException {
198         return _expandoRowLocalService.getRow(companyId, classNameId,
199             tableName, classPK);
200     }
201 
202     public com.liferay.portlet.expando.model.ExpandoRow getRow(long companyId,
203         java.lang.String className, java.lang.String tableName, long classPK)
204         throws com.liferay.portal.kernel.exception.SystemException {
205         return _expandoRowLocalService.getRow(companyId, className, tableName,
206             classPK);
207     }
208 
209     public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getRows(
210         long tableId, int start, int end)
211         throws com.liferay.portal.kernel.exception.SystemException {
212         return _expandoRowLocalService.getRows(tableId, start, end);
213     }
214 
215     public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getRows(
216         long companyId, long classNameId, java.lang.String tableName,
217         int start, int end)
218         throws com.liferay.portal.kernel.exception.SystemException {
219         return _expandoRowLocalService.getRows(companyId, classNameId,
220             tableName, start, end);
221     }
222 
223     public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getRows(
224         long companyId, java.lang.String className, java.lang.String tableName,
225         int start, int end)
226         throws com.liferay.portal.kernel.exception.SystemException {
227         return _expandoRowLocalService.getRows(companyId, className, tableName,
228             start, end);
229     }
230 
231     public int getRowsCount(long tableId)
232         throws com.liferay.portal.kernel.exception.SystemException {
233         return _expandoRowLocalService.getRowsCount(tableId);
234     }
235 
236     public int getRowsCount(long companyId, long classNameId,
237         java.lang.String tableName)
238         throws com.liferay.portal.kernel.exception.SystemException {
239         return _expandoRowLocalService.getRowsCount(companyId, classNameId,
240             tableName);
241     }
242 
243     public int getRowsCount(long companyId, java.lang.String className,
244         java.lang.String tableName)
245         throws com.liferay.portal.kernel.exception.SystemException {
246         return _expandoRowLocalService.getRowsCount(companyId, className,
247             tableName);
248     }
249 
250     public ExpandoRowLocalService getWrappedExpandoRowLocalService() {
251         return _expandoRowLocalService;
252     }
253 
254     private ExpandoRowLocalService _expandoRowLocalService;
255 }