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="ExpandoTableLocalServiceUtil.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 ExpandoTableLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       ExpandoTableLocalService
32   * @generated
33   */
34  public class ExpandoTableLocalServiceWrapper implements ExpandoTableLocalService {
35      public ExpandoTableLocalServiceWrapper(
36          ExpandoTableLocalService expandoTableLocalService) {
37          _expandoTableLocalService = expandoTableLocalService;
38      }
39  
40      public com.liferay.portlet.expando.model.ExpandoTable addExpandoTable(
41          com.liferay.portlet.expando.model.ExpandoTable expandoTable)
42          throws com.liferay.portal.SystemException {
43          return _expandoTableLocalService.addExpandoTable(expandoTable);
44      }
45  
46      public com.liferay.portlet.expando.model.ExpandoTable createExpandoTable(
47          long tableId) {
48          return _expandoTableLocalService.createExpandoTable(tableId);
49      }
50  
51      public void deleteExpandoTable(long tableId)
52          throws com.liferay.portal.PortalException,
53              com.liferay.portal.SystemException {
54          _expandoTableLocalService.deleteExpandoTable(tableId);
55      }
56  
57      public void deleteExpandoTable(
58          com.liferay.portlet.expando.model.ExpandoTable expandoTable)
59          throws com.liferay.portal.SystemException {
60          _expandoTableLocalService.deleteExpandoTable(expandoTable);
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 _expandoTableLocalService.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 _expandoTableLocalService.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.SystemException {
80          return _expandoTableLocalService.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.SystemException {
87          return _expandoTableLocalService.dynamicQueryCount(dynamicQuery);
88      }
89  
90      public com.liferay.portlet.expando.model.ExpandoTable getExpandoTable(
91          long tableId)
92          throws com.liferay.portal.PortalException,
93              com.liferay.portal.SystemException {
94          return _expandoTableLocalService.getExpandoTable(tableId);
95      }
96  
97      public java.util.List<com.liferay.portlet.expando.model.ExpandoTable> getExpandoTables(
98          int start, int end) throws com.liferay.portal.SystemException {
99          return _expandoTableLocalService.getExpandoTables(start, end);
100     }
101 
102     public int getExpandoTablesCount()
103         throws com.liferay.portal.SystemException {
104         return _expandoTableLocalService.getExpandoTablesCount();
105     }
106 
107     public com.liferay.portlet.expando.model.ExpandoTable updateExpandoTable(
108         com.liferay.portlet.expando.model.ExpandoTable expandoTable)
109         throws com.liferay.portal.SystemException {
110         return _expandoTableLocalService.updateExpandoTable(expandoTable);
111     }
112 
113     public com.liferay.portlet.expando.model.ExpandoTable updateExpandoTable(
114         com.liferay.portlet.expando.model.ExpandoTable expandoTable,
115         boolean merge) throws com.liferay.portal.SystemException {
116         return _expandoTableLocalService.updateExpandoTable(expandoTable, merge);
117     }
118 
119     public com.liferay.portlet.expando.model.ExpandoTable addDefaultTable(
120         long classNameId)
121         throws com.liferay.portal.PortalException,
122             com.liferay.portal.SystemException {
123         return _expandoTableLocalService.addDefaultTable(classNameId);
124     }
125 
126     public com.liferay.portlet.expando.model.ExpandoTable addDefaultTable(
127         java.lang.String className)
128         throws com.liferay.portal.PortalException,
129             com.liferay.portal.SystemException {
130         return _expandoTableLocalService.addDefaultTable(className);
131     }
132 
133     public com.liferay.portlet.expando.model.ExpandoTable addTable(
134         long classNameId, java.lang.String name)
135         throws com.liferay.portal.PortalException,
136             com.liferay.portal.SystemException {
137         return _expandoTableLocalService.addTable(classNameId, name);
138     }
139 
140     public com.liferay.portlet.expando.model.ExpandoTable addTable(
141         java.lang.String className, java.lang.String name)
142         throws com.liferay.portal.PortalException,
143             com.liferay.portal.SystemException {
144         return _expandoTableLocalService.addTable(className, name);
145     }
146 
147     public void deleteTable(
148         com.liferay.portlet.expando.model.ExpandoTable table)
149         throws com.liferay.portal.SystemException {
150         _expandoTableLocalService.deleteTable(table);
151     }
152 
153     public void deleteTable(long tableId)
154         throws com.liferay.portal.PortalException,
155             com.liferay.portal.SystemException {
156         _expandoTableLocalService.deleteTable(tableId);
157     }
158 
159     public void deleteTable(long classNameId, java.lang.String name)
160         throws com.liferay.portal.PortalException,
161             com.liferay.portal.SystemException {
162         _expandoTableLocalService.deleteTable(classNameId, name);
163     }
164 
165     public void deleteTable(java.lang.String className, java.lang.String name)
166         throws com.liferay.portal.PortalException,
167             com.liferay.portal.SystemException {
168         _expandoTableLocalService.deleteTable(className, name);
169     }
170 
171     public void deleteTables(long classNameId)
172         throws com.liferay.portal.SystemException {
173         _expandoTableLocalService.deleteTables(classNameId);
174     }
175 
176     public void deleteTables(java.lang.String className)
177         throws com.liferay.portal.SystemException {
178         _expandoTableLocalService.deleteTables(className);
179     }
180 
181     public com.liferay.portlet.expando.model.ExpandoTable getDefaultTable(
182         long classNameId)
183         throws com.liferay.portal.PortalException,
184             com.liferay.portal.SystemException {
185         return _expandoTableLocalService.getDefaultTable(classNameId);
186     }
187 
188     public com.liferay.portlet.expando.model.ExpandoTable getDefaultTable(
189         java.lang.String className)
190         throws com.liferay.portal.PortalException,
191             com.liferay.portal.SystemException {
192         return _expandoTableLocalService.getDefaultTable(className);
193     }
194 
195     public com.liferay.portlet.expando.model.ExpandoTable getTable(long tableId)
196         throws com.liferay.portal.PortalException,
197             com.liferay.portal.SystemException {
198         return _expandoTableLocalService.getTable(tableId);
199     }
200 
201     public com.liferay.portlet.expando.model.ExpandoTable getTable(
202         long classNameId, java.lang.String name)
203         throws com.liferay.portal.PortalException,
204             com.liferay.portal.SystemException {
205         return _expandoTableLocalService.getTable(classNameId, name);
206     }
207 
208     public com.liferay.portlet.expando.model.ExpandoTable getTable(
209         java.lang.String className, java.lang.String name)
210         throws com.liferay.portal.PortalException,
211             com.liferay.portal.SystemException {
212         return _expandoTableLocalService.getTable(className, name);
213     }
214 
215     public java.util.List<com.liferay.portlet.expando.model.ExpandoTable> getTables(
216         long classNameId) throws com.liferay.portal.SystemException {
217         return _expandoTableLocalService.getTables(classNameId);
218     }
219 
220     public java.util.List<com.liferay.portlet.expando.model.ExpandoTable> getTables(
221         java.lang.String className) throws com.liferay.portal.SystemException {
222         return _expandoTableLocalService.getTables(className);
223     }
224 
225     public com.liferay.portlet.expando.model.ExpandoTable updateTable(
226         long tableId, java.lang.String name)
227         throws com.liferay.portal.PortalException,
228             com.liferay.portal.SystemException {
229         return _expandoTableLocalService.updateTable(tableId, name);
230     }
231 
232     public ExpandoTableLocalService getWrappedExpandoTableLocalService() {
233         return _expandoTableLocalService;
234     }
235 
236     private ExpandoTableLocalService _expandoTableLocalService;
237 }