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 com.liferay.portlet.expando.model.ExpandoRow getExpandoRow(
76          long rowId)
77          throws com.liferay.portal.kernel.exception.PortalException,
78              com.liferay.portal.kernel.exception.SystemException {
79          return _expandoRowLocalService.getExpandoRow(rowId);
80      }
81  
82      public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getExpandoRows(
83          int start, int end)
84          throws com.liferay.portal.kernel.exception.SystemException {
85          return _expandoRowLocalService.getExpandoRows(start, end);
86      }
87  
88      public int getExpandoRowsCount()
89          throws com.liferay.portal.kernel.exception.SystemException {
90          return _expandoRowLocalService.getExpandoRowsCount();
91      }
92  
93      public com.liferay.portlet.expando.model.ExpandoRow updateExpandoRow(
94          com.liferay.portlet.expando.model.ExpandoRow expandoRow)
95          throws com.liferay.portal.kernel.exception.SystemException {
96          return _expandoRowLocalService.updateExpandoRow(expandoRow);
97      }
98  
99      public com.liferay.portlet.expando.model.ExpandoRow updateExpandoRow(
100         com.liferay.portlet.expando.model.ExpandoRow expandoRow, boolean merge)
101         throws com.liferay.portal.kernel.exception.SystemException {
102         return _expandoRowLocalService.updateExpandoRow(expandoRow, merge);
103     }
104 
105     public com.liferay.portlet.expando.model.ExpandoRow addRow(long tableId,
106         long classPK)
107         throws com.liferay.portal.kernel.exception.PortalException,
108             com.liferay.portal.kernel.exception.SystemException {
109         return _expandoRowLocalService.addRow(tableId, classPK);
110     }
111 
112     public void deleteRow(long rowId)
113         throws com.liferay.portal.kernel.exception.PortalException,
114             com.liferay.portal.kernel.exception.SystemException {
115         _expandoRowLocalService.deleteRow(rowId);
116     }
117 
118     public void deleteRow(long tableId, long classPK)
119         throws com.liferay.portal.kernel.exception.PortalException,
120             com.liferay.portal.kernel.exception.SystemException {
121         _expandoRowLocalService.deleteRow(tableId, classPK);
122     }
123 
124     public void deleteRow(long companyId, long classNameId,
125         java.lang.String tableName, long classPK)
126         throws com.liferay.portal.kernel.exception.PortalException,
127             com.liferay.portal.kernel.exception.SystemException {
128         _expandoRowLocalService.deleteRow(companyId, classNameId, tableName,
129             classPK);
130     }
131 
132     public void deleteRow(long companyId, java.lang.String className,
133         java.lang.String tableName, long classPK)
134         throws com.liferay.portal.kernel.exception.PortalException,
135             com.liferay.portal.kernel.exception.SystemException {
136         _expandoRowLocalService.deleteRow(companyId, className, tableName,
137             classPK);
138     }
139 
140     public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getDefaultTableRows(
141         long companyId, long classNameId, int start, int end)
142         throws com.liferay.portal.kernel.exception.SystemException {
143         return _expandoRowLocalService.getDefaultTableRows(companyId,
144             classNameId, start, end);
145     }
146 
147     public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getDefaultTableRows(
148         long companyId, java.lang.String className, int start, int end)
149         throws com.liferay.portal.kernel.exception.SystemException {
150         return _expandoRowLocalService.getDefaultTableRows(companyId,
151             className, start, end);
152     }
153 
154     public int getDefaultTableRowsCount(long companyId, long classNameId)
155         throws com.liferay.portal.kernel.exception.SystemException {
156         return _expandoRowLocalService.getDefaultTableRowsCount(companyId,
157             classNameId);
158     }
159 
160     public int getDefaultTableRowsCount(long companyId,
161         java.lang.String className)
162         throws com.liferay.portal.kernel.exception.SystemException {
163         return _expandoRowLocalService.getDefaultTableRowsCount(companyId,
164             className);
165     }
166 
167     public com.liferay.portlet.expando.model.ExpandoRow getRow(long rowId)
168         throws com.liferay.portal.kernel.exception.PortalException,
169             com.liferay.portal.kernel.exception.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.kernel.exception.PortalException,
176             com.liferay.portal.kernel.exception.SystemException {
177         return _expandoRowLocalService.getRow(tableId, classPK);
178     }
179 
180     public com.liferay.portlet.expando.model.ExpandoRow getRow(long companyId,
181         long classNameId, java.lang.String tableName, long classPK)
182         throws com.liferay.portal.kernel.exception.SystemException {
183         return _expandoRowLocalService.getRow(companyId, classNameId,
184             tableName, classPK);
185     }
186 
187     public com.liferay.portlet.expando.model.ExpandoRow getRow(long companyId,
188         java.lang.String className, java.lang.String tableName, long classPK)
189         throws com.liferay.portal.kernel.exception.SystemException {
190         return _expandoRowLocalService.getRow(companyId, className, tableName,
191             classPK);
192     }
193 
194     public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getRows(
195         long tableId, int start, int end)
196         throws com.liferay.portal.kernel.exception.SystemException {
197         return _expandoRowLocalService.getRows(tableId, start, end);
198     }
199 
200     public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getRows(
201         long companyId, long classNameId, java.lang.String tableName,
202         int start, int end)
203         throws com.liferay.portal.kernel.exception.SystemException {
204         return _expandoRowLocalService.getRows(companyId, classNameId,
205             tableName, start, end);
206     }
207 
208     public java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getRows(
209         long companyId, java.lang.String className, java.lang.String tableName,
210         int start, int end)
211         throws com.liferay.portal.kernel.exception.SystemException {
212         return _expandoRowLocalService.getRows(companyId, className, tableName,
213             start, end);
214     }
215 
216     public int getRowsCount(long tableId)
217         throws com.liferay.portal.kernel.exception.SystemException {
218         return _expandoRowLocalService.getRowsCount(tableId);
219     }
220 
221     public int getRowsCount(long companyId, long classNameId,
222         java.lang.String tableName)
223         throws com.liferay.portal.kernel.exception.SystemException {
224         return _expandoRowLocalService.getRowsCount(companyId, classNameId,
225             tableName);
226     }
227 
228     public int getRowsCount(long companyId, java.lang.String className,
229         java.lang.String tableName)
230         throws com.liferay.portal.kernel.exception.SystemException {
231         return _expandoRowLocalService.getRowsCount(companyId, className,
232             tableName);
233     }
234 
235     public ExpandoRowLocalService getWrappedExpandoRowLocalService() {
236         return _expandoRowLocalService;
237     }
238 
239     private ExpandoRowLocalService _expandoRowLocalService;
240 }