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