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="ExpandoValueLocalServiceUtil.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 ExpandoValueLocalService}.
28   * </p>
29   *
30   * @author    Brian Wing Shun Chan
31   * @see       ExpandoValueLocalService
32   * @generated
33   */
34  public class ExpandoValueLocalServiceWrapper implements ExpandoValueLocalService {
35      public ExpandoValueLocalServiceWrapper(
36          ExpandoValueLocalService expandoValueLocalService) {
37          _expandoValueLocalService = expandoValueLocalService;
38      }
39  
40      public com.liferay.portlet.expando.model.ExpandoValue addExpandoValue(
41          com.liferay.portlet.expando.model.ExpandoValue expandoValue)
42          throws com.liferay.portal.SystemException {
43          return _expandoValueLocalService.addExpandoValue(expandoValue);
44      }
45  
46      public com.liferay.portlet.expando.model.ExpandoValue createExpandoValue(
47          long valueId) {
48          return _expandoValueLocalService.createExpandoValue(valueId);
49      }
50  
51      public void deleteExpandoValue(long valueId)
52          throws com.liferay.portal.PortalException,
53              com.liferay.portal.SystemException {
54          _expandoValueLocalService.deleteExpandoValue(valueId);
55      }
56  
57      public void deleteExpandoValue(
58          com.liferay.portlet.expando.model.ExpandoValue expandoValue)
59          throws com.liferay.portal.SystemException {
60          _expandoValueLocalService.deleteExpandoValue(expandoValue);
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 _expandoValueLocalService.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 _expandoValueLocalService.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 _expandoValueLocalService.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 _expandoValueLocalService.dynamicQueryCount(dynamicQuery);
88      }
89  
90      public com.liferay.portlet.expando.model.ExpandoValue getExpandoValue(
91          long valueId)
92          throws com.liferay.portal.PortalException,
93              com.liferay.portal.SystemException {
94          return _expandoValueLocalService.getExpandoValue(valueId);
95      }
96  
97      public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getExpandoValues(
98          int start, int end) throws com.liferay.portal.SystemException {
99          return _expandoValueLocalService.getExpandoValues(start, end);
100     }
101 
102     public int getExpandoValuesCount()
103         throws com.liferay.portal.SystemException {
104         return _expandoValueLocalService.getExpandoValuesCount();
105     }
106 
107     public com.liferay.portlet.expando.model.ExpandoValue updateExpandoValue(
108         com.liferay.portlet.expando.model.ExpandoValue expandoValue)
109         throws com.liferay.portal.SystemException {
110         return _expandoValueLocalService.updateExpandoValue(expandoValue);
111     }
112 
113     public com.liferay.portlet.expando.model.ExpandoValue updateExpandoValue(
114         com.liferay.portlet.expando.model.ExpandoValue expandoValue,
115         boolean merge) throws com.liferay.portal.SystemException {
116         return _expandoValueLocalService.updateExpandoValue(expandoValue, merge);
117     }
118 
119     public com.liferay.portlet.expando.model.ExpandoValue addValue(
120         long classNameId, long tableId, long columnId, long classPK,
121         java.lang.String data) throws com.liferay.portal.SystemException {
122         return _expandoValueLocalService.addValue(classNameId, tableId,
123             columnId, classPK, data);
124     }
125 
126     public com.liferay.portlet.expando.model.ExpandoValue addValue(
127         java.lang.String className, java.lang.String tableName,
128         java.lang.String columnName, long classPK, boolean data)
129         throws com.liferay.portal.PortalException,
130             com.liferay.portal.SystemException {
131         return _expandoValueLocalService.addValue(className, tableName,
132             columnName, classPK, data);
133     }
134 
135     public com.liferay.portlet.expando.model.ExpandoValue addValue(
136         java.lang.String className, java.lang.String tableName,
137         java.lang.String columnName, long classPK, boolean[] data)
138         throws com.liferay.portal.PortalException,
139             com.liferay.portal.SystemException {
140         return _expandoValueLocalService.addValue(className, tableName,
141             columnName, classPK, data);
142     }
143 
144     public com.liferay.portlet.expando.model.ExpandoValue addValue(
145         java.lang.String className, java.lang.String tableName,
146         java.lang.String columnName, long classPK, java.util.Date data)
147         throws com.liferay.portal.PortalException,
148             com.liferay.portal.SystemException {
149         return _expandoValueLocalService.addValue(className, tableName,
150             columnName, classPK, data);
151     }
152 
153     public com.liferay.portlet.expando.model.ExpandoValue addValue(
154         java.lang.String className, java.lang.String tableName,
155         java.lang.String columnName, long classPK, java.util.Date[] data)
156         throws com.liferay.portal.PortalException,
157             com.liferay.portal.SystemException {
158         return _expandoValueLocalService.addValue(className, tableName,
159             columnName, classPK, data);
160     }
161 
162     public com.liferay.portlet.expando.model.ExpandoValue addValue(
163         java.lang.String className, java.lang.String tableName,
164         java.lang.String columnName, long classPK, double data)
165         throws com.liferay.portal.PortalException,
166             com.liferay.portal.SystemException {
167         return _expandoValueLocalService.addValue(className, tableName,
168             columnName, classPK, data);
169     }
170 
171     public com.liferay.portlet.expando.model.ExpandoValue addValue(
172         java.lang.String className, java.lang.String tableName,
173         java.lang.String columnName, long classPK, double[] data)
174         throws com.liferay.portal.PortalException,
175             com.liferay.portal.SystemException {
176         return _expandoValueLocalService.addValue(className, tableName,
177             columnName, classPK, data);
178     }
179 
180     public com.liferay.portlet.expando.model.ExpandoValue addValue(
181         java.lang.String className, java.lang.String tableName,
182         java.lang.String columnName, long classPK, float data)
183         throws com.liferay.portal.PortalException,
184             com.liferay.portal.SystemException {
185         return _expandoValueLocalService.addValue(className, tableName,
186             columnName, classPK, data);
187     }
188 
189     public com.liferay.portlet.expando.model.ExpandoValue addValue(
190         java.lang.String className, java.lang.String tableName,
191         java.lang.String columnName, long classPK, float[] data)
192         throws com.liferay.portal.PortalException,
193             com.liferay.portal.SystemException {
194         return _expandoValueLocalService.addValue(className, tableName,
195             columnName, classPK, data);
196     }
197 
198     public com.liferay.portlet.expando.model.ExpandoValue addValue(
199         java.lang.String className, java.lang.String tableName,
200         java.lang.String columnName, long classPK, int data)
201         throws com.liferay.portal.PortalException,
202             com.liferay.portal.SystemException {
203         return _expandoValueLocalService.addValue(className, tableName,
204             columnName, classPK, data);
205     }
206 
207     public com.liferay.portlet.expando.model.ExpandoValue addValue(
208         java.lang.String className, java.lang.String tableName,
209         java.lang.String columnName, long classPK, int[] data)
210         throws com.liferay.portal.PortalException,
211             com.liferay.portal.SystemException {
212         return _expandoValueLocalService.addValue(className, tableName,
213             columnName, classPK, data);
214     }
215 
216     public com.liferay.portlet.expando.model.ExpandoValue addValue(
217         java.lang.String className, java.lang.String tableName,
218         java.lang.String columnName, long classPK, long data)
219         throws com.liferay.portal.PortalException,
220             com.liferay.portal.SystemException {
221         return _expandoValueLocalService.addValue(className, tableName,
222             columnName, classPK, data);
223     }
224 
225     public com.liferay.portlet.expando.model.ExpandoValue addValue(
226         java.lang.String className, java.lang.String tableName,
227         java.lang.String columnName, long classPK, long[] data)
228         throws com.liferay.portal.PortalException,
229             com.liferay.portal.SystemException {
230         return _expandoValueLocalService.addValue(className, tableName,
231             columnName, classPK, data);
232     }
233 
234     public com.liferay.portlet.expando.model.ExpandoValue addValue(
235         java.lang.String className, java.lang.String tableName,
236         java.lang.String columnName, long classPK, java.lang.Object data)
237         throws com.liferay.portal.PortalException,
238             com.liferay.portal.SystemException {
239         return _expandoValueLocalService.addValue(className, tableName,
240             columnName, classPK, data);
241     }
242 
243     public com.liferay.portlet.expando.model.ExpandoValue addValue(
244         java.lang.String className, java.lang.String tableName,
245         java.lang.String columnName, long classPK, short data)
246         throws com.liferay.portal.PortalException,
247             com.liferay.portal.SystemException {
248         return _expandoValueLocalService.addValue(className, tableName,
249             columnName, classPK, data);
250     }
251 
252     public com.liferay.portlet.expando.model.ExpandoValue addValue(
253         java.lang.String className, java.lang.String tableName,
254         java.lang.String columnName, long classPK, short[] data)
255         throws com.liferay.portal.PortalException,
256             com.liferay.portal.SystemException {
257         return _expandoValueLocalService.addValue(className, tableName,
258             columnName, classPK, data);
259     }
260 
261     public com.liferay.portlet.expando.model.ExpandoValue addValue(
262         java.lang.String className, java.lang.String tableName,
263         java.lang.String columnName, long classPK, java.lang.String data)
264         throws com.liferay.portal.PortalException,
265             com.liferay.portal.SystemException {
266         return _expandoValueLocalService.addValue(className, tableName,
267             columnName, classPK, data);
268     }
269 
270     public com.liferay.portlet.expando.model.ExpandoValue addValue(
271         java.lang.String className, java.lang.String tableName,
272         java.lang.String columnName, long classPK, java.lang.String[] data)
273         throws com.liferay.portal.PortalException,
274             com.liferay.portal.SystemException {
275         return _expandoValueLocalService.addValue(className, tableName,
276             columnName, classPK, data);
277     }
278 
279     public void addValues(long classNameId, long tableId,
280         java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> columns,
281         long classPK, java.util.Map<String, String> data)
282         throws com.liferay.portal.SystemException {
283         _expandoValueLocalService.addValues(classNameId, tableId, columns,
284             classPK, data);
285     }
286 
287     public void deleteColumnValues(long columnId)
288         throws com.liferay.portal.SystemException {
289         _expandoValueLocalService.deleteColumnValues(columnId);
290     }
291 
292     public void deleteRowValues(long rowId)
293         throws com.liferay.portal.SystemException {
294         _expandoValueLocalService.deleteRowValues(rowId);
295     }
296 
297     public void deleteTableValues(long tableId)
298         throws com.liferay.portal.SystemException {
299         _expandoValueLocalService.deleteTableValues(tableId);
300     }
301 
302     public void deleteValue(long valueId)
303         throws com.liferay.portal.PortalException,
304             com.liferay.portal.SystemException {
305         _expandoValueLocalService.deleteValue(valueId);
306     }
307 
308     public void deleteValue(long columnId, long rowId)
309         throws com.liferay.portal.PortalException,
310             com.liferay.portal.SystemException {
311         _expandoValueLocalService.deleteValue(columnId, rowId);
312     }
313 
314     public void deleteValue(long classNameId, java.lang.String tableName,
315         java.lang.String columnName, long classPK)
316         throws com.liferay.portal.PortalException,
317             com.liferay.portal.SystemException {
318         _expandoValueLocalService.deleteValue(classNameId, tableName,
319             columnName, classPK);
320     }
321 
322     public void deleteValue(java.lang.String className,
323         java.lang.String tableName, java.lang.String columnName, long classPK)
324         throws com.liferay.portal.PortalException,
325             com.liferay.portal.SystemException {
326         _expandoValueLocalService.deleteValue(className, tableName, columnName,
327             classPK);
328     }
329 
330     public void deleteValues(long classNameId, long classPK)
331         throws com.liferay.portal.SystemException {
332         _expandoValueLocalService.deleteValues(classNameId, classPK);
333     }
334 
335     public void deleteValues(java.lang.String className, long classPK)
336         throws com.liferay.portal.SystemException {
337         _expandoValueLocalService.deleteValues(className, classPK);
338     }
339 
340     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
341         long columnId, int start, int end)
342         throws com.liferay.portal.SystemException {
343         return _expandoValueLocalService.getColumnValues(columnId, start, end);
344     }
345 
346     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
347         long classNameId, java.lang.String tableName,
348         java.lang.String columnName, int start, int end)
349         throws com.liferay.portal.SystemException {
350         return _expandoValueLocalService.getColumnValues(classNameId,
351             tableName, columnName, start, end);
352     }
353 
354     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
355         long classNameId, java.lang.String tableName,
356         java.lang.String columnName, java.lang.String data, int start, int end)
357         throws com.liferay.portal.SystemException {
358         return _expandoValueLocalService.getColumnValues(classNameId,
359             tableName, columnName, data, start, end);
360     }
361 
362     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
363         java.lang.String className, java.lang.String tableName,
364         java.lang.String columnName, int start, int end)
365         throws com.liferay.portal.SystemException {
366         return _expandoValueLocalService.getColumnValues(className, tableName,
367             columnName, start, end);
368     }
369 
370     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
371         java.lang.String className, java.lang.String tableName,
372         java.lang.String columnName, java.lang.String data, int start, int end)
373         throws com.liferay.portal.SystemException {
374         return _expandoValueLocalService.getColumnValues(className, tableName,
375             columnName, data, start, end);
376     }
377 
378     public int getColumnValuesCount(long columnId)
379         throws com.liferay.portal.SystemException {
380         return _expandoValueLocalService.getColumnValuesCount(columnId);
381     }
382 
383     public int getColumnValuesCount(long classNameId,
384         java.lang.String tableName, java.lang.String columnName)
385         throws com.liferay.portal.SystemException {
386         return _expandoValueLocalService.getColumnValuesCount(classNameId,
387             tableName, columnName);
388     }
389 
390     public int getColumnValuesCount(long classNameId,
391         java.lang.String tableName, java.lang.String columnName,
392         java.lang.String data) throws com.liferay.portal.SystemException {
393         return _expandoValueLocalService.getColumnValuesCount(classNameId,
394             tableName, columnName, data);
395     }
396 
397     public int getColumnValuesCount(java.lang.String className,
398         java.lang.String tableName, java.lang.String columnName)
399         throws com.liferay.portal.SystemException {
400         return _expandoValueLocalService.getColumnValuesCount(className,
401             tableName, columnName);
402     }
403 
404     public int getColumnValuesCount(java.lang.String className,
405         java.lang.String tableName, java.lang.String columnName,
406         java.lang.String data) throws com.liferay.portal.SystemException {
407         return _expandoValueLocalService.getColumnValuesCount(className,
408             tableName, columnName, data);
409     }
410 
411     public java.io.Serializable getData(java.lang.String className,
412         java.lang.String tableName, java.lang.String columnName, long classPK)
413         throws com.liferay.portal.PortalException,
414             com.liferay.portal.SystemException {
415         return _expandoValueLocalService.getData(className, tableName,
416             columnName, classPK);
417     }
418 
419     public boolean getData(java.lang.String className,
420         java.lang.String tableName, java.lang.String columnName, long classPK,
421         boolean defaultData)
422         throws com.liferay.portal.PortalException,
423             com.liferay.portal.SystemException {
424         return _expandoValueLocalService.getData(className, tableName,
425             columnName, classPK, defaultData);
426     }
427 
428     public boolean[] getData(java.lang.String className,
429         java.lang.String tableName, java.lang.String columnName, long classPK,
430         boolean[] defaultData)
431         throws com.liferay.portal.PortalException,
432             com.liferay.portal.SystemException {
433         return _expandoValueLocalService.getData(className, tableName,
434             columnName, classPK, defaultData);
435     }
436 
437     public java.util.Date getData(java.lang.String className,
438         java.lang.String tableName, java.lang.String columnName, long classPK,
439         java.util.Date defaultData)
440         throws com.liferay.portal.PortalException,
441             com.liferay.portal.SystemException {
442         return _expandoValueLocalService.getData(className, tableName,
443             columnName, classPK, defaultData);
444     }
445 
446     public java.util.Date[] getData(java.lang.String className,
447         java.lang.String tableName, java.lang.String columnName, long classPK,
448         java.util.Date[] defaultData)
449         throws com.liferay.portal.PortalException,
450             com.liferay.portal.SystemException {
451         return _expandoValueLocalService.getData(className, tableName,
452             columnName, classPK, defaultData);
453     }
454 
455     public double getData(java.lang.String className,
456         java.lang.String tableName, java.lang.String columnName, long classPK,
457         double defaultData)
458         throws com.liferay.portal.PortalException,
459             com.liferay.portal.SystemException {
460         return _expandoValueLocalService.getData(className, tableName,
461             columnName, classPK, defaultData);
462     }
463 
464     public double[] getData(java.lang.String className,
465         java.lang.String tableName, java.lang.String columnName, long classPK,
466         double[] defaultData)
467         throws com.liferay.portal.PortalException,
468             com.liferay.portal.SystemException {
469         return _expandoValueLocalService.getData(className, tableName,
470             columnName, classPK, defaultData);
471     }
472 
473     public float getData(java.lang.String className,
474         java.lang.String tableName, java.lang.String columnName, long classPK,
475         float defaultData)
476         throws com.liferay.portal.PortalException,
477             com.liferay.portal.SystemException {
478         return _expandoValueLocalService.getData(className, tableName,
479             columnName, classPK, defaultData);
480     }
481 
482     public float[] getData(java.lang.String className,
483         java.lang.String tableName, java.lang.String columnName, long classPK,
484         float[] defaultData)
485         throws com.liferay.portal.PortalException,
486             com.liferay.portal.SystemException {
487         return _expandoValueLocalService.getData(className, tableName,
488             columnName, classPK, defaultData);
489     }
490 
491     public int getData(java.lang.String className, java.lang.String tableName,
492         java.lang.String columnName, long classPK, int defaultData)
493         throws com.liferay.portal.PortalException,
494             com.liferay.portal.SystemException {
495         return _expandoValueLocalService.getData(className, tableName,
496             columnName, classPK, defaultData);
497     }
498 
499     public int[] getData(java.lang.String className,
500         java.lang.String tableName, java.lang.String columnName, long classPK,
501         int[] defaultData)
502         throws com.liferay.portal.PortalException,
503             com.liferay.portal.SystemException {
504         return _expandoValueLocalService.getData(className, tableName,
505             columnName, classPK, defaultData);
506     }
507 
508     public long getData(java.lang.String className, java.lang.String tableName,
509         java.lang.String columnName, long classPK, long defaultData)
510         throws com.liferay.portal.PortalException,
511             com.liferay.portal.SystemException {
512         return _expandoValueLocalService.getData(className, tableName,
513             columnName, classPK, defaultData);
514     }
515 
516     public long[] getData(java.lang.String className,
517         java.lang.String tableName, java.lang.String columnName, long classPK,
518         long[] defaultData)
519         throws com.liferay.portal.PortalException,
520             com.liferay.portal.SystemException {
521         return _expandoValueLocalService.getData(className, tableName,
522             columnName, classPK, defaultData);
523     }
524 
525     public short getData(java.lang.String className,
526         java.lang.String tableName, java.lang.String columnName, long classPK,
527         short defaultData)
528         throws com.liferay.portal.PortalException,
529             com.liferay.portal.SystemException {
530         return _expandoValueLocalService.getData(className, tableName,
531             columnName, classPK, defaultData);
532     }
533 
534     public short[] getData(java.lang.String className,
535         java.lang.String tableName, java.lang.String columnName, long classPK,
536         short[] defaultData)
537         throws com.liferay.portal.PortalException,
538             com.liferay.portal.SystemException {
539         return _expandoValueLocalService.getData(className, tableName,
540             columnName, classPK, defaultData);
541     }
542 
543     public java.lang.String getData(java.lang.String className,
544         java.lang.String tableName, java.lang.String columnName, long classPK,
545         java.lang.String defaultData)
546         throws com.liferay.portal.PortalException,
547             com.liferay.portal.SystemException {
548         return _expandoValueLocalService.getData(className, tableName,
549             columnName, classPK, defaultData);
550     }
551 
552     public java.lang.String[] getData(java.lang.String className,
553         java.lang.String tableName, java.lang.String columnName, long classPK,
554         java.lang.String[] defaultData)
555         throws com.liferay.portal.PortalException,
556             com.liferay.portal.SystemException {
557         return _expandoValueLocalService.getData(className, tableName,
558             columnName, classPK, defaultData);
559     }
560 
561     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getDefaultTableColumnValues(
562         long classNameId, java.lang.String columnName, int start, int end)
563         throws com.liferay.portal.SystemException {
564         return _expandoValueLocalService.getDefaultTableColumnValues(classNameId,
565             columnName, start, end);
566     }
567 
568     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getDefaultTableColumnValues(
569         java.lang.String className, java.lang.String columnName, int start,
570         int end) throws com.liferay.portal.SystemException {
571         return _expandoValueLocalService.getDefaultTableColumnValues(className,
572             columnName, start, end);
573     }
574 
575     public int getDefaultTableColumnValuesCount(long classNameId,
576         java.lang.String columnName) throws com.liferay.portal.SystemException {
577         return _expandoValueLocalService.getDefaultTableColumnValuesCount(classNameId,
578             columnName);
579     }
580 
581     public int getDefaultTableColumnValuesCount(java.lang.String className,
582         java.lang.String columnName) throws com.liferay.portal.SystemException {
583         return _expandoValueLocalService.getDefaultTableColumnValuesCount(className,
584             columnName);
585     }
586 
587     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
588         long rowId) throws com.liferay.portal.SystemException {
589         return _expandoValueLocalService.getRowValues(rowId);
590     }
591 
592     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
593         long rowId, int start, int end)
594         throws com.liferay.portal.SystemException {
595         return _expandoValueLocalService.getRowValues(rowId, start, end);
596     }
597 
598     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
599         long classNameId, java.lang.String tableName, long classPK, int start,
600         int end) throws com.liferay.portal.SystemException {
601         return _expandoValueLocalService.getRowValues(classNameId, tableName,
602             classPK, start, end);
603     }
604 
605     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
606         java.lang.String className, java.lang.String tableName, long classPK,
607         int start, int end) throws com.liferay.portal.SystemException {
608         return _expandoValueLocalService.getRowValues(className, tableName,
609             classPK, start, end);
610     }
611 
612     public int getRowValuesCount(long rowId)
613         throws com.liferay.portal.SystemException {
614         return _expandoValueLocalService.getRowValuesCount(rowId);
615     }
616 
617     public int getRowValuesCount(long classNameId, java.lang.String tableName,
618         long classPK) throws com.liferay.portal.SystemException {
619         return _expandoValueLocalService.getRowValuesCount(classNameId,
620             tableName, classPK);
621     }
622 
623     public int getRowValuesCount(java.lang.String className,
624         java.lang.String tableName, long classPK)
625         throws com.liferay.portal.SystemException {
626         return _expandoValueLocalService.getRowValuesCount(className,
627             tableName, classPK);
628     }
629 
630     public com.liferay.portlet.expando.model.ExpandoValue getValue(long valueId)
631         throws com.liferay.portal.PortalException,
632             com.liferay.portal.SystemException {
633         return _expandoValueLocalService.getValue(valueId);
634     }
635 
636     public com.liferay.portlet.expando.model.ExpandoValue getValue(
637         long columnId, long rowId)
638         throws com.liferay.portal.PortalException,
639             com.liferay.portal.SystemException {
640         return _expandoValueLocalService.getValue(columnId, rowId);
641     }
642 
643     public com.liferay.portlet.expando.model.ExpandoValue getValue(
644         long tableId, long columnId, long classPK)
645         throws com.liferay.portal.SystemException {
646         return _expandoValueLocalService.getValue(tableId, columnId, classPK);
647     }
648 
649     public com.liferay.portlet.expando.model.ExpandoValue getValue(
650         long classNameId, java.lang.String tableName,
651         java.lang.String columnName, long classPK)
652         throws com.liferay.portal.SystemException {
653         return _expandoValueLocalService.getValue(classNameId, tableName,
654             columnName, classPK);
655     }
656 
657     public com.liferay.portlet.expando.model.ExpandoValue getValue(
658         java.lang.String className, java.lang.String tableName,
659         java.lang.String columnName, long classPK)
660         throws com.liferay.portal.SystemException {
661         return _expandoValueLocalService.getValue(className, tableName,
662             columnName, classPK);
663     }
664 
665     public ExpandoValueLocalService getWrappedExpandoValueLocalService() {
666         return _expandoValueLocalService;
667     }
668 
669     private ExpandoValueLocalService _expandoValueLocalService;
670 }