1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.expando.service;
24  
25  
26  /**
27   * <a href="ExpandoValueLocalServiceUtil.java.html"><b><i>View Source</i></b></a>
28   *
29   * <p>
30   * ServiceBuilder generated this class. Modifications in this class will be
31   * overwritten the next time is generated.
32   * </p>
33   *
34   * <p>
35   * This class is a wrapper for {@link ExpandoValueLocalService}.
36   * </p>
37   *
38   * @author    Brian Wing Shun Chan
39   * @see       ExpandoValueLocalService
40   * @generated
41   */
42  public class ExpandoValueLocalServiceWrapper implements ExpandoValueLocalService {
43      public ExpandoValueLocalServiceWrapper(
44          ExpandoValueLocalService expandoValueLocalService) {
45          _expandoValueLocalService = expandoValueLocalService;
46      }
47  
48      public com.liferay.portlet.expando.model.ExpandoValue addExpandoValue(
49          com.liferay.portlet.expando.model.ExpandoValue expandoValue)
50          throws com.liferay.portal.SystemException {
51          return _expandoValueLocalService.addExpandoValue(expandoValue);
52      }
53  
54      public com.liferay.portlet.expando.model.ExpandoValue createExpandoValue(
55          long valueId) {
56          return _expandoValueLocalService.createExpandoValue(valueId);
57      }
58  
59      public void deleteExpandoValue(long valueId)
60          throws com.liferay.portal.PortalException,
61              com.liferay.portal.SystemException {
62          _expandoValueLocalService.deleteExpandoValue(valueId);
63      }
64  
65      public void deleteExpandoValue(
66          com.liferay.portlet.expando.model.ExpandoValue expandoValue)
67          throws com.liferay.portal.SystemException {
68          _expandoValueLocalService.deleteExpandoValue(expandoValue);
69      }
70  
71      public java.util.List<Object> dynamicQuery(
72          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
73          throws com.liferay.portal.SystemException {
74          return _expandoValueLocalService.dynamicQuery(dynamicQuery);
75      }
76  
77      public java.util.List<Object> dynamicQuery(
78          com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79          int end) throws com.liferay.portal.SystemException {
80          return _expandoValueLocalService.dynamicQuery(dynamicQuery, start, end);
81      }
82  
83      public com.liferay.portlet.expando.model.ExpandoValue getExpandoValue(
84          long valueId)
85          throws com.liferay.portal.PortalException,
86              com.liferay.portal.SystemException {
87          return _expandoValueLocalService.getExpandoValue(valueId);
88      }
89  
90      public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getExpandoValues(
91          int start, int end) throws com.liferay.portal.SystemException {
92          return _expandoValueLocalService.getExpandoValues(start, end);
93      }
94  
95      public int getExpandoValuesCount()
96          throws com.liferay.portal.SystemException {
97          return _expandoValueLocalService.getExpandoValuesCount();
98      }
99  
100     public com.liferay.portlet.expando.model.ExpandoValue updateExpandoValue(
101         com.liferay.portlet.expando.model.ExpandoValue expandoValue)
102         throws com.liferay.portal.SystemException {
103         return _expandoValueLocalService.updateExpandoValue(expandoValue);
104     }
105 
106     public com.liferay.portlet.expando.model.ExpandoValue updateExpandoValue(
107         com.liferay.portlet.expando.model.ExpandoValue expandoValue,
108         boolean merge) throws com.liferay.portal.SystemException {
109         return _expandoValueLocalService.updateExpandoValue(expandoValue, merge);
110     }
111 
112     public com.liferay.portlet.expando.model.ExpandoValue addValue(
113         long classNameId, long tableId, long columnId, long classPK,
114         java.lang.String data) throws com.liferay.portal.SystemException {
115         return _expandoValueLocalService.addValue(classNameId, tableId,
116             columnId, classPK, data);
117     }
118 
119     public com.liferay.portlet.expando.model.ExpandoValue addValue(
120         java.lang.String className, java.lang.String tableName,
121         java.lang.String columnName, long classPK, boolean data)
122         throws com.liferay.portal.PortalException,
123             com.liferay.portal.SystemException {
124         return _expandoValueLocalService.addValue(className, tableName,
125             columnName, 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, java.util.Date 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, double 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, float 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, int 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, long 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, java.lang.Object 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, short 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, java.lang.String 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 void addValues(long classNameId, long tableId,
273         java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> columns,
274         long classPK, java.util.Map<String, String> data)
275         throws com.liferay.portal.SystemException {
276         _expandoValueLocalService.addValues(classNameId, tableId, columns,
277             classPK, data);
278     }
279 
280     public void deleteColumnValues(long columnId)
281         throws com.liferay.portal.SystemException {
282         _expandoValueLocalService.deleteColumnValues(columnId);
283     }
284 
285     public void deleteRowValues(long rowId)
286         throws com.liferay.portal.SystemException {
287         _expandoValueLocalService.deleteRowValues(rowId);
288     }
289 
290     public void deleteTableValues(long tableId)
291         throws com.liferay.portal.SystemException {
292         _expandoValueLocalService.deleteTableValues(tableId);
293     }
294 
295     public void deleteValue(long valueId)
296         throws com.liferay.portal.PortalException,
297             com.liferay.portal.SystemException {
298         _expandoValueLocalService.deleteValue(valueId);
299     }
300 
301     public void deleteValue(long columnId, long rowId)
302         throws com.liferay.portal.PortalException,
303             com.liferay.portal.SystemException {
304         _expandoValueLocalService.deleteValue(columnId, rowId);
305     }
306 
307     public void deleteValue(long classNameId, java.lang.String tableName,
308         java.lang.String columnName, long classPK)
309         throws com.liferay.portal.PortalException,
310             com.liferay.portal.SystemException {
311         _expandoValueLocalService.deleteValue(classNameId, tableName,
312             columnName, classPK);
313     }
314 
315     public void deleteValue(java.lang.String className,
316         java.lang.String tableName, java.lang.String columnName, long classPK)
317         throws com.liferay.portal.PortalException,
318             com.liferay.portal.SystemException {
319         _expandoValueLocalService.deleteValue(className, tableName, columnName,
320             classPK);
321     }
322 
323     public void deleteValues(long classNameId, long classPK)
324         throws com.liferay.portal.SystemException {
325         _expandoValueLocalService.deleteValues(classNameId, classPK);
326     }
327 
328     public void deleteValues(java.lang.String className, long classPK)
329         throws com.liferay.portal.SystemException {
330         _expandoValueLocalService.deleteValues(className, classPK);
331     }
332 
333     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
334         long columnId, int start, int end)
335         throws com.liferay.portal.SystemException {
336         return _expandoValueLocalService.getColumnValues(columnId, start, end);
337     }
338 
339     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
340         long classNameId, java.lang.String tableName,
341         java.lang.String columnName, int start, int end)
342         throws com.liferay.portal.SystemException {
343         return _expandoValueLocalService.getColumnValues(classNameId,
344             tableName, columnName, start, end);
345     }
346 
347     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
348         long classNameId, java.lang.String tableName,
349         java.lang.String columnName, java.lang.String data, int start, int end)
350         throws com.liferay.portal.SystemException {
351         return _expandoValueLocalService.getColumnValues(classNameId,
352             tableName, columnName, data, start, end);
353     }
354 
355     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
356         java.lang.String className, java.lang.String tableName,
357         java.lang.String columnName, int start, int end)
358         throws com.liferay.portal.SystemException {
359         return _expandoValueLocalService.getColumnValues(className, tableName,
360             columnName, start, end);
361     }
362 
363     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
364         java.lang.String className, java.lang.String tableName,
365         java.lang.String columnName, java.lang.String data, int start, int end)
366         throws com.liferay.portal.SystemException {
367         return _expandoValueLocalService.getColumnValues(className, tableName,
368             columnName, data, start, end);
369     }
370 
371     public int getColumnValuesCount(long columnId)
372         throws com.liferay.portal.SystemException {
373         return _expandoValueLocalService.getColumnValuesCount(columnId);
374     }
375 
376     public int getColumnValuesCount(long classNameId,
377         java.lang.String tableName, java.lang.String columnName)
378         throws com.liferay.portal.SystemException {
379         return _expandoValueLocalService.getColumnValuesCount(classNameId,
380             tableName, columnName);
381     }
382 
383     public int getColumnValuesCount(long classNameId,
384         java.lang.String tableName, java.lang.String columnName,
385         java.lang.String data) throws com.liferay.portal.SystemException {
386         return _expandoValueLocalService.getColumnValuesCount(classNameId,
387             tableName, columnName, data);
388     }
389 
390     public int getColumnValuesCount(java.lang.String className,
391         java.lang.String tableName, java.lang.String columnName)
392         throws com.liferay.portal.SystemException {
393         return _expandoValueLocalService.getColumnValuesCount(className,
394             tableName, columnName);
395     }
396 
397     public int getColumnValuesCount(java.lang.String className,
398         java.lang.String tableName, java.lang.String columnName,
399         java.lang.String data) throws com.liferay.portal.SystemException {
400         return _expandoValueLocalService.getColumnValuesCount(className,
401             tableName, columnName, data);
402     }
403 
404     public java.io.Serializable getData(java.lang.String className,
405         java.lang.String tableName, java.lang.String columnName, long classPK)
406         throws com.liferay.portal.PortalException,
407             com.liferay.portal.SystemException {
408         return _expandoValueLocalService.getData(className, tableName,
409             columnName, classPK);
410     }
411 
412     public boolean getData(java.lang.String className,
413         java.lang.String tableName, java.lang.String columnName, long classPK,
414         boolean defaultData)
415         throws com.liferay.portal.PortalException,
416             com.liferay.portal.SystemException {
417         return _expandoValueLocalService.getData(className, tableName,
418             columnName, classPK, defaultData);
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 java.util.Date getData(java.lang.String className,
431         java.lang.String tableName, java.lang.String columnName, long classPK,
432         java.util.Date 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 double getData(java.lang.String className,
449         java.lang.String tableName, java.lang.String columnName, long classPK,
450         double 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 float getData(java.lang.String className,
467         java.lang.String tableName, java.lang.String columnName, long classPK,
468         float 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 int getData(java.lang.String className, java.lang.String tableName,
485         java.lang.String columnName, long classPK, int defaultData)
486         throws com.liferay.portal.PortalException,
487             com.liferay.portal.SystemException {
488         return _expandoValueLocalService.getData(className, tableName,
489             columnName, classPK, defaultData);
490     }
491 
492     public int[] getData(java.lang.String className,
493         java.lang.String tableName, java.lang.String columnName, long classPK,
494         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 long getData(java.lang.String className, java.lang.String tableName,
502         java.lang.String columnName, long classPK, long defaultData)
503         throws com.liferay.portal.PortalException,
504             com.liferay.portal.SystemException {
505         return _expandoValueLocalService.getData(className, tableName,
506             columnName, classPK, defaultData);
507     }
508 
509     public long[] getData(java.lang.String className,
510         java.lang.String tableName, java.lang.String columnName, long classPK,
511         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 short getData(java.lang.String className,
519         java.lang.String tableName, java.lang.String columnName, long classPK,
520         short 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 java.lang.String getData(java.lang.String className,
537         java.lang.String tableName, java.lang.String columnName, long classPK,
538         java.lang.String 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.util.List<com.liferay.portlet.expando.model.ExpandoValue> getDefaultTableColumnValues(
555         long classNameId, java.lang.String columnName, int start, int end)
556         throws com.liferay.portal.SystemException {
557         return _expandoValueLocalService.getDefaultTableColumnValues(classNameId,
558             columnName, start, end);
559     }
560 
561     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getDefaultTableColumnValues(
562         java.lang.String className, java.lang.String columnName, int start,
563         int end) throws com.liferay.portal.SystemException {
564         return _expandoValueLocalService.getDefaultTableColumnValues(className,
565             columnName, start, end);
566     }
567 
568     public int getDefaultTableColumnValuesCount(long classNameId,
569         java.lang.String columnName) throws com.liferay.portal.SystemException {
570         return _expandoValueLocalService.getDefaultTableColumnValuesCount(classNameId,
571             columnName);
572     }
573 
574     public int getDefaultTableColumnValuesCount(java.lang.String className,
575         java.lang.String columnName) throws com.liferay.portal.SystemException {
576         return _expandoValueLocalService.getDefaultTableColumnValuesCount(className,
577             columnName);
578     }
579 
580     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
581         long rowId) throws com.liferay.portal.SystemException {
582         return _expandoValueLocalService.getRowValues(rowId);
583     }
584 
585     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
586         long rowId, int start, int end)
587         throws com.liferay.portal.SystemException {
588         return _expandoValueLocalService.getRowValues(rowId, start, end);
589     }
590 
591     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
592         long classNameId, java.lang.String tableName, long classPK, int start,
593         int end) throws com.liferay.portal.SystemException {
594         return _expandoValueLocalService.getRowValues(classNameId, tableName,
595             classPK, start, end);
596     }
597 
598     public java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
599         java.lang.String className, java.lang.String tableName, long classPK,
600         int start, int end) throws com.liferay.portal.SystemException {
601         return _expandoValueLocalService.getRowValues(className, tableName,
602             classPK, start, end);
603     }
604 
605     public int getRowValuesCount(long rowId)
606         throws com.liferay.portal.SystemException {
607         return _expandoValueLocalService.getRowValuesCount(rowId);
608     }
609 
610     public int getRowValuesCount(long classNameId, java.lang.String tableName,
611         long classPK) throws com.liferay.portal.SystemException {
612         return _expandoValueLocalService.getRowValuesCount(classNameId,
613             tableName, classPK);
614     }
615 
616     public int getRowValuesCount(java.lang.String className,
617         java.lang.String tableName, long classPK)
618         throws com.liferay.portal.SystemException {
619         return _expandoValueLocalService.getRowValuesCount(className,
620             tableName, classPK);
621     }
622 
623     public com.liferay.portlet.expando.model.ExpandoValue getValue(long valueId)
624         throws com.liferay.portal.PortalException,
625             com.liferay.portal.SystemException {
626         return _expandoValueLocalService.getValue(valueId);
627     }
628 
629     public com.liferay.portlet.expando.model.ExpandoValue getValue(
630         long columnId, long rowId)
631         throws com.liferay.portal.PortalException,
632             com.liferay.portal.SystemException {
633         return _expandoValueLocalService.getValue(columnId, rowId);
634     }
635 
636     public com.liferay.portlet.expando.model.ExpandoValue getValue(
637         long tableId, long columnId, long classPK)
638         throws com.liferay.portal.SystemException {
639         return _expandoValueLocalService.getValue(tableId, columnId, classPK);
640     }
641 
642     public com.liferay.portlet.expando.model.ExpandoValue getValue(
643         long classNameId, java.lang.String tableName,
644         java.lang.String columnName, long classPK)
645         throws com.liferay.portal.SystemException {
646         return _expandoValueLocalService.getValue(classNameId, tableName,
647             columnName, classPK);
648     }
649 
650     public com.liferay.portlet.expando.model.ExpandoValue getValue(
651         java.lang.String className, java.lang.String tableName,
652         java.lang.String columnName, long classPK)
653         throws com.liferay.portal.SystemException {
654         return _expandoValueLocalService.getValue(className, tableName,
655             columnName, classPK);
656     }
657 
658     public ExpandoValueLocalService getWrappedExpandoValueLocalService() {
659         return _expandoValueLocalService;
660     }
661 
662     private ExpandoValueLocalService _expandoValueLocalService;
663 }