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