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