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