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="ExpandoColumnLocalServiceUtil.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 ExpandoColumnLocalService}.
27   * </p>
28   *
29   * @author    Brian Wing Shun Chan
30   * @see       ExpandoColumnLocalService
31   * @generated
32   */
33  public class ExpandoColumnLocalServiceWrapper
34      implements ExpandoColumnLocalService {
35      public ExpandoColumnLocalServiceWrapper(
36          ExpandoColumnLocalService expandoColumnLocalService) {
37          _expandoColumnLocalService = expandoColumnLocalService;
38      }
39  
40      public com.liferay.portlet.expando.model.ExpandoColumn addExpandoColumn(
41          com.liferay.portlet.expando.model.ExpandoColumn expandoColumn)
42          throws com.liferay.portal.SystemException {
43          return _expandoColumnLocalService.addExpandoColumn(expandoColumn);
44      }
45  
46      public com.liferay.portlet.expando.model.ExpandoColumn createExpandoColumn(
47          long columnId) {
48          return _expandoColumnLocalService.createExpandoColumn(columnId);
49      }
50  
51      public void deleteExpandoColumn(long columnId)
52          throws com.liferay.portal.PortalException,
53              com.liferay.portal.SystemException {
54          _expandoColumnLocalService.deleteExpandoColumn(columnId);
55      }
56  
57      public void deleteExpandoColumn(
58          com.liferay.portlet.expando.model.ExpandoColumn expandoColumn)
59          throws com.liferay.portal.SystemException {
60          _expandoColumnLocalService.deleteExpandoColumn(expandoColumn);
61      }
62  
63      @SuppressWarnings("rawtypes")
64      public java.util.List dynamicQuery(
65          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
66          throws com.liferay.portal.SystemException {
67          return _expandoColumnLocalService.dynamicQuery(dynamicQuery);
68      }
69  
70      @SuppressWarnings("rawtypes")
71      public java.util.List dynamicQuery(
72          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
73          int end) throws com.liferay.portal.SystemException {
74          return _expandoColumnLocalService.dynamicQuery(dynamicQuery, start, end);
75      }
76  
77      @SuppressWarnings("rawtypes")
78      public java.util.List dynamicQuery(
79          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
80          int end,
81          com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
82          throws com.liferay.portal.SystemException {
83          return _expandoColumnLocalService.dynamicQuery(dynamicQuery, start,
84              end, orderByComparator);
85      }
86  
87      public int dynamicQueryCount(
88          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
89          throws com.liferay.portal.SystemException {
90          return _expandoColumnLocalService.dynamicQueryCount(dynamicQuery);
91      }
92  
93      public com.liferay.portlet.expando.model.ExpandoColumn getExpandoColumn(
94          long columnId)
95          throws com.liferay.portal.PortalException,
96              com.liferay.portal.SystemException {
97          return _expandoColumnLocalService.getExpandoColumn(columnId);
98      }
99  
100     public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getExpandoColumns(
101         int start, int end) throws com.liferay.portal.SystemException {
102         return _expandoColumnLocalService.getExpandoColumns(start, end);
103     }
104 
105     public int getExpandoColumnsCount()
106         throws com.liferay.portal.SystemException {
107         return _expandoColumnLocalService.getExpandoColumnsCount();
108     }
109 
110     public com.liferay.portlet.expando.model.ExpandoColumn updateExpandoColumn(
111         com.liferay.portlet.expando.model.ExpandoColumn expandoColumn)
112         throws com.liferay.portal.SystemException {
113         return _expandoColumnLocalService.updateExpandoColumn(expandoColumn);
114     }
115 
116     public com.liferay.portlet.expando.model.ExpandoColumn updateExpandoColumn(
117         com.liferay.portlet.expando.model.ExpandoColumn expandoColumn,
118         boolean merge) throws com.liferay.portal.SystemException {
119         return _expandoColumnLocalService.updateExpandoColumn(expandoColumn,
120             merge);
121     }
122 
123     public com.liferay.portlet.expando.model.ExpandoColumn addColumn(
124         long tableId, java.lang.String name, int type)
125         throws com.liferay.portal.PortalException,
126             com.liferay.portal.SystemException {
127         return _expandoColumnLocalService.addColumn(tableId, name, type);
128     }
129 
130     public com.liferay.portlet.expando.model.ExpandoColumn addColumn(
131         long tableId, java.lang.String name, int type,
132         java.lang.Object defaultData)
133         throws com.liferay.portal.PortalException,
134             com.liferay.portal.SystemException {
135         return _expandoColumnLocalService.addColumn(tableId, name, type,
136             defaultData);
137     }
138 
139     public void deleteColumn(
140         com.liferay.portlet.expando.model.ExpandoColumn column)
141         throws com.liferay.portal.SystemException {
142         _expandoColumnLocalService.deleteColumn(column);
143     }
144 
145     public void deleteColumn(long columnId)
146         throws com.liferay.portal.PortalException,
147             com.liferay.portal.SystemException {
148         _expandoColumnLocalService.deleteColumn(columnId);
149     }
150 
151     public void deleteColumn(long tableId, java.lang.String name)
152         throws com.liferay.portal.PortalException,
153             com.liferay.portal.SystemException {
154         _expandoColumnLocalService.deleteColumn(tableId, name);
155     }
156 
157     public void deleteColumn(long classNameId, java.lang.String tableName,
158         java.lang.String name)
159         throws com.liferay.portal.PortalException,
160             com.liferay.portal.SystemException {
161         _expandoColumnLocalService.deleteColumn(classNameId, tableName, name);
162     }
163 
164     public void deleteColumn(java.lang.String className,
165         java.lang.String tableName, java.lang.String name)
166         throws com.liferay.portal.PortalException,
167             com.liferay.portal.SystemException {
168         _expandoColumnLocalService.deleteColumn(className, tableName, name);
169     }
170 
171     public void deleteColumns(long tableId)
172         throws com.liferay.portal.SystemException {
173         _expandoColumnLocalService.deleteColumns(tableId);
174     }
175 
176     public void deleteColumns(long classNameId, java.lang.String tableName)
177         throws com.liferay.portal.PortalException,
178             com.liferay.portal.SystemException {
179         _expandoColumnLocalService.deleteColumns(classNameId, tableName);
180     }
181 
182     public void deleteColumns(java.lang.String className,
183         java.lang.String tableName)
184         throws com.liferay.portal.PortalException,
185             com.liferay.portal.SystemException {
186         _expandoColumnLocalService.deleteColumns(className, tableName);
187     }
188 
189     public com.liferay.portlet.expando.model.ExpandoColumn getColumn(
190         long columnId)
191         throws com.liferay.portal.PortalException,
192             com.liferay.portal.SystemException {
193         return _expandoColumnLocalService.getColumn(columnId);
194     }
195 
196     public com.liferay.portlet.expando.model.ExpandoColumn getColumn(
197         long tableId, java.lang.String name)
198         throws com.liferay.portal.PortalException,
199             com.liferay.portal.SystemException {
200         return _expandoColumnLocalService.getColumn(tableId, name);
201     }
202 
203     public com.liferay.portlet.expando.model.ExpandoColumn getColumn(
204         long classNameId, java.lang.String tableName, java.lang.String name)
205         throws com.liferay.portal.SystemException {
206         return _expandoColumnLocalService.getColumn(classNameId, tableName, name);
207     }
208 
209     public com.liferay.portlet.expando.model.ExpandoColumn getColumn(
210         java.lang.String className, java.lang.String tableName,
211         java.lang.String name) throws com.liferay.portal.SystemException {
212         return _expandoColumnLocalService.getColumn(className, tableName, name);
213     }
214 
215     public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getColumns(
216         long tableId) throws com.liferay.portal.SystemException {
217         return _expandoColumnLocalService.getColumns(tableId);
218     }
219 
220     public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getColumns(
221         long classNameId, java.lang.String tableName)
222         throws com.liferay.portal.SystemException {
223         return _expandoColumnLocalService.getColumns(classNameId, tableName);
224     }
225 
226     public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getColumns(
227         java.lang.String className, java.lang.String tableName)
228         throws com.liferay.portal.SystemException {
229         return _expandoColumnLocalService.getColumns(className, tableName);
230     }
231 
232     public int getColumnsCount(long tableId)
233         throws com.liferay.portal.SystemException {
234         return _expandoColumnLocalService.getColumnsCount(tableId);
235     }
236 
237     public int getColumnsCount(long classNameId, java.lang.String tableName)
238         throws com.liferay.portal.SystemException {
239         return _expandoColumnLocalService.getColumnsCount(classNameId, tableName);
240     }
241 
242     public int getColumnsCount(java.lang.String className,
243         java.lang.String tableName) throws com.liferay.portal.SystemException {
244         return _expandoColumnLocalService.getColumnsCount(className, tableName);
245     }
246 
247     public com.liferay.portlet.expando.model.ExpandoColumn getDefaultTableColumn(
248         long classNameId, java.lang.String name)
249         throws com.liferay.portal.SystemException {
250         return _expandoColumnLocalService.getDefaultTableColumn(classNameId,
251             name);
252     }
253 
254     public com.liferay.portlet.expando.model.ExpandoColumn getDefaultTableColumn(
255         java.lang.String className, java.lang.String name)
256         throws com.liferay.portal.SystemException {
257         return _expandoColumnLocalService.getDefaultTableColumn(className, name);
258     }
259 
260     public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getDefaultTableColumns(
261         long classNameId) throws com.liferay.portal.SystemException {
262         return _expandoColumnLocalService.getDefaultTableColumns(classNameId);
263     }
264 
265     public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getDefaultTableColumns(
266         java.lang.String className) throws com.liferay.portal.SystemException {
267         return _expandoColumnLocalService.getDefaultTableColumns(className);
268     }
269 
270     public int getDefaultTableColumnsCount(long classNameId)
271         throws com.liferay.portal.SystemException {
272         return _expandoColumnLocalService.getDefaultTableColumnsCount(classNameId);
273     }
274 
275     public int getDefaultTableColumnsCount(java.lang.String className)
276         throws com.liferay.portal.SystemException {
277         return _expandoColumnLocalService.getDefaultTableColumnsCount(className);
278     }
279 
280     public com.liferay.portlet.expando.model.ExpandoColumn updateColumn(
281         long columnId, java.lang.String name, int type)
282         throws com.liferay.portal.PortalException,
283             com.liferay.portal.SystemException {
284         return _expandoColumnLocalService.updateColumn(columnId, name, type);
285     }
286 
287     public com.liferay.portlet.expando.model.ExpandoColumn updateColumn(
288         long columnId, java.lang.String name, int type,
289         java.lang.Object defaultData)
290         throws com.liferay.portal.PortalException,
291             com.liferay.portal.SystemException {
292         return _expandoColumnLocalService.updateColumn(columnId, name, type,
293             defaultData);
294     }
295 
296     public com.liferay.portlet.expando.model.ExpandoColumn updateTypeSettings(
297         long columnId, java.lang.String typeSettings)
298         throws com.liferay.portal.PortalException,
299             com.liferay.portal.SystemException {
300         return _expandoColumnLocalService.updateTypeSettings(columnId,
301             typeSettings);
302     }
303 
304     public ExpandoColumnLocalService getWrappedExpandoColumnLocalService() {
305         return _expandoColumnLocalService;
306     }
307 
308     private ExpandoColumnLocalService _expandoColumnLocalService;
309 }