1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   *
12   *
13   */
14  
15  package com.liferay.portlet.expando.service;
16  
17  /**
18   * <a href="ExpandoTableLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
19   *
20   * <p>
21   * ServiceBuilder generated this class. Modifications in this class will be
22   * overwritten the next time is generated.
23   * </p>
24   *
25   * <p>
26   * This class is a wrapper for {@link ExpandoTableLocalService}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       ExpandoTableLocalService
31   * @generated
32   */
33  public class ExpandoTableLocalServiceWrapper implements ExpandoTableLocalService {
34      public ExpandoTableLocalServiceWrapper(
35          ExpandoTableLocalService expandoTableLocalService) {
36          _expandoTableLocalService = expandoTableLocalService;
37      }
38  
39      public com.liferay.portlet.expando.model.ExpandoTable addExpandoTable(
40          com.liferay.portlet.expando.model.ExpandoTable expandoTable)
41          throws com.liferay.portal.SystemException {
42          return _expandoTableLocalService.addExpandoTable(expandoTable);
43      }
44  
45      public com.liferay.portlet.expando.model.ExpandoTable createExpandoTable(
46          long tableId) {
47          return _expandoTableLocalService.createExpandoTable(tableId);
48      }
49  
50      public void deleteExpandoTable(long tableId)
51          throws com.liferay.portal.PortalException,
52              com.liferay.portal.SystemException {
53          _expandoTableLocalService.deleteExpandoTable(tableId);
54      }
55  
56      public void deleteExpandoTable(
57          com.liferay.portlet.expando.model.ExpandoTable expandoTable)
58          throws com.liferay.portal.SystemException {
59          _expandoTableLocalService.deleteExpandoTable(expandoTable);
60      }
61  
62      @SuppressWarnings("rawtypes")
63      public java.util.List dynamicQuery(
64          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65          throws com.liferay.portal.SystemException {
66          return _expandoTableLocalService.dynamicQuery(dynamicQuery);
67      }
68  
69      @SuppressWarnings("rawtypes")
70      public java.util.List dynamicQuery(
71          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72          int end) throws com.liferay.portal.SystemException {
73          return _expandoTableLocalService.dynamicQuery(dynamicQuery, start, end);
74      }
75  
76      @SuppressWarnings("rawtypes")
77      public java.util.List dynamicQuery(
78          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79          int end,
80          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
81          throws com.liferay.portal.SystemException {
82          return _expandoTableLocalService.dynamicQuery(dynamicQuery, start, end,
83              orderByComparator);
84      }
85  
86      public int dynamicQueryCount(
87          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
88          throws com.liferay.portal.SystemException {
89          return _expandoTableLocalService.dynamicQueryCount(dynamicQuery);
90      }
91  
92      public com.liferay.portlet.expando.model.ExpandoTable getExpandoTable(
93          long tableId)
94          throws com.liferay.portal.PortalException,
95              com.liferay.portal.SystemException {
96          return _expandoTableLocalService.getExpandoTable(tableId);
97      }
98  
99      public java.util.List<com.liferay.portlet.expando.model.ExpandoTable> getExpandoTables(
100         int start, int end) throws com.liferay.portal.SystemException {
101         return _expandoTableLocalService.getExpandoTables(start, end);
102     }
103 
104     public int getExpandoTablesCount()
105         throws com.liferay.portal.SystemException {
106         return _expandoTableLocalService.getExpandoTablesCount();
107     }
108 
109     public com.liferay.portlet.expando.model.ExpandoTable updateExpandoTable(
110         com.liferay.portlet.expando.model.ExpandoTable expandoTable)
111         throws com.liferay.portal.SystemException {
112         return _expandoTableLocalService.updateExpandoTable(expandoTable);
113     }
114 
115     public com.liferay.portlet.expando.model.ExpandoTable updateExpandoTable(
116         com.liferay.portlet.expando.model.ExpandoTable expandoTable,
117         boolean merge) throws com.liferay.portal.SystemException {
118         return _expandoTableLocalService.updateExpandoTable(expandoTable, merge);
119     }
120 
121     public com.liferay.portlet.expando.model.ExpandoTable addDefaultTable(
122         long classNameId)
123         throws com.liferay.portal.PortalException,
124             com.liferay.portal.SystemException {
125         return _expandoTableLocalService.addDefaultTable(classNameId);
126     }
127 
128     public com.liferay.portlet.expando.model.ExpandoTable addDefaultTable(
129         java.lang.String className)
130         throws com.liferay.portal.PortalException,
131             com.liferay.portal.SystemException {
132         return _expandoTableLocalService.addDefaultTable(className);
133     }
134 
135     public com.liferay.portlet.expando.model.ExpandoTable addTable(
136         long classNameId, java.lang.String name)
137         throws com.liferay.portal.PortalException,
138             com.liferay.portal.SystemException {
139         return _expandoTableLocalService.addTable(classNameId, name);
140     }
141 
142     public com.liferay.portlet.expando.model.ExpandoTable addTable(
143         java.lang.String className, java.lang.String name)
144         throws com.liferay.portal.PortalException,
145             com.liferay.portal.SystemException {
146         return _expandoTableLocalService.addTable(className, name);
147     }
148 
149     public void deleteTable(
150         com.liferay.portlet.expando.model.ExpandoTable table)
151         throws com.liferay.portal.SystemException {
152         _expandoTableLocalService.deleteTable(table);
153     }
154 
155     public void deleteTable(long tableId)
156         throws com.liferay.portal.PortalException,
157             com.liferay.portal.SystemException {
158         _expandoTableLocalService.deleteTable(tableId);
159     }
160 
161     public void deleteTable(long classNameId, java.lang.String name)
162         throws com.liferay.portal.PortalException,
163             com.liferay.portal.SystemException {
164         _expandoTableLocalService.deleteTable(classNameId, name);
165     }
166 
167     public void deleteTable(java.lang.String className, java.lang.String name)
168         throws com.liferay.portal.PortalException,
169             com.liferay.portal.SystemException {
170         _expandoTableLocalService.deleteTable(className, name);
171     }
172 
173     public void deleteTables(long classNameId)
174         throws com.liferay.portal.SystemException {
175         _expandoTableLocalService.deleteTables(classNameId);
176     }
177 
178     public void deleteTables(java.lang.String className)
179         throws com.liferay.portal.SystemException {
180         _expandoTableLocalService.deleteTables(className);
181     }
182 
183     public com.liferay.portlet.expando.model.ExpandoTable getDefaultTable(
184         long classNameId)
185         throws com.liferay.portal.PortalException,
186             com.liferay.portal.SystemException {
187         return _expandoTableLocalService.getDefaultTable(classNameId);
188     }
189 
190     public com.liferay.portlet.expando.model.ExpandoTable getDefaultTable(
191         java.lang.String className)
192         throws com.liferay.portal.PortalException,
193             com.liferay.portal.SystemException {
194         return _expandoTableLocalService.getDefaultTable(className);
195     }
196 
197     public com.liferay.portlet.expando.model.ExpandoTable getTable(long tableId)
198         throws com.liferay.portal.PortalException,
199             com.liferay.portal.SystemException {
200         return _expandoTableLocalService.getTable(tableId);
201     }
202 
203     public com.liferay.portlet.expando.model.ExpandoTable getTable(
204         long classNameId, java.lang.String name)
205         throws com.liferay.portal.PortalException,
206             com.liferay.portal.SystemException {
207         return _expandoTableLocalService.getTable(classNameId, name);
208     }
209 
210     public com.liferay.portlet.expando.model.ExpandoTable getTable(
211         java.lang.String className, java.lang.String name)
212         throws com.liferay.portal.PortalException,
213             com.liferay.portal.SystemException {
214         return _expandoTableLocalService.getTable(className, name);
215     }
216 
217     public java.util.List<com.liferay.portlet.expando.model.ExpandoTable> getTables(
218         long classNameId) throws com.liferay.portal.SystemException {
219         return _expandoTableLocalService.getTables(classNameId);
220     }
221 
222     public java.util.List<com.liferay.portlet.expando.model.ExpandoTable> getTables(
223         java.lang.String className) throws com.liferay.portal.SystemException {
224         return _expandoTableLocalService.getTables(className);
225     }
226 
227     public com.liferay.portlet.expando.model.ExpandoTable updateTable(
228         long tableId, java.lang.String name)
229         throws com.liferay.portal.PortalException,
230             com.liferay.portal.SystemException {
231         return _expandoTableLocalService.updateTable(tableId, name);
232     }
233 
234     public ExpandoTableLocalService getWrappedExpandoTableLocalService() {
235         return _expandoTableLocalService;
236     }
237 
238     private ExpandoTableLocalService _expandoTableLocalService;
239 }