001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.expando.service;
016    
017    import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018    
019    /**
020     * The utility for the expando value local service. This utility wraps {@link com.liferay.portlet.expando.service.impl.ExpandoValueLocalServiceImpl} and is the primary access point for service operations in application layer code running on the local server.
021     *
022     * <p>
023     * Never modify this class directly. Add custom service methods to {@link com.liferay.portlet.expando.service.impl.ExpandoValueLocalServiceImpl} and rerun ServiceBuilder to regenerate this class.
024     * </p>
025     *
026     * <p>
027     * This is a local service. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.
028     * </p>
029     *
030     * @author Brian Wing Shun Chan
031     * @see ExpandoValueLocalService
032     * @see com.liferay.portlet.expando.service.base.ExpandoValueLocalServiceBaseImpl
033     * @see com.liferay.portlet.expando.service.impl.ExpandoValueLocalServiceImpl
034     * @generated
035     */
036    public class ExpandoValueLocalServiceUtil {
037            /**
038            * Adds the expando value to the database. Also notifies the appropriate model listeners.
039            *
040            * @param expandoValue the expando value to add
041            * @return the expando value that was added
042            * @throws SystemException if a system exception occurred
043            */
044            public static com.liferay.portlet.expando.model.ExpandoValue addExpandoValue(
045                    com.liferay.portlet.expando.model.ExpandoValue expandoValue)
046                    throws com.liferay.portal.kernel.exception.SystemException {
047                    return getService().addExpandoValue(expandoValue);
048            }
049    
050            /**
051            * Creates a new expando value with the primary key. Does not add the expando value to the database.
052            *
053            * @param valueId the primary key for the new expando value
054            * @return the new expando value
055            */
056            public static com.liferay.portlet.expando.model.ExpandoValue createExpandoValue(
057                    long valueId) {
058                    return getService().createExpandoValue(valueId);
059            }
060    
061            /**
062            * Deletes the expando value with the primary key from the database. Also notifies the appropriate model listeners.
063            *
064            * @param valueId the primary key of the expando value to delete
065            * @throws PortalException if a expando value with the primary key could not be found
066            * @throws SystemException if a system exception occurred
067            */
068            public static void deleteExpandoValue(long valueId)
069                    throws com.liferay.portal.kernel.exception.PortalException,
070                            com.liferay.portal.kernel.exception.SystemException {
071                    getService().deleteExpandoValue(valueId);
072            }
073    
074            /**
075            * Deletes the expando value from the database. Also notifies the appropriate model listeners.
076            *
077            * @param expandoValue the expando value to delete
078            * @throws SystemException if a system exception occurred
079            */
080            public static void deleteExpandoValue(
081                    com.liferay.portlet.expando.model.ExpandoValue expandoValue)
082                    throws com.liferay.portal.kernel.exception.SystemException {
083                    getService().deleteExpandoValue(expandoValue);
084            }
085    
086            /**
087            * Performs a dynamic query on the database and returns the matching rows.
088            *
089            * @param dynamicQuery the dynamic query to search with
090            * @return the matching rows
091            * @throws SystemException if a system exception occurred
092            */
093            @SuppressWarnings("rawtypes")
094            public static java.util.List dynamicQuery(
095                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
096                    throws com.liferay.portal.kernel.exception.SystemException {
097                    return getService().dynamicQuery(dynamicQuery);
098            }
099    
100            /**
101            * Performs a dynamic query on the database and returns a range of the matching rows.
102            *
103            * <p>
104            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
105            * </p>
106            *
107            * @param dynamicQuery the dynamic query to search with
108            * @param start the lower bound of the range of model instances to return
109            * @param end the upper bound of the range of model instances to return (not inclusive)
110            * @return the range of matching rows
111            * @throws SystemException if a system exception occurred
112            */
113            @SuppressWarnings("rawtypes")
114            public static java.util.List dynamicQuery(
115                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
116                    int end) throws com.liferay.portal.kernel.exception.SystemException {
117                    return getService().dynamicQuery(dynamicQuery, start, end);
118            }
119    
120            /**
121            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
122            *
123            * <p>
124            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
125            * </p>
126            *
127            * @param dynamicQuery the dynamic query to search with
128            * @param start the lower bound of the range of model instances to return
129            * @param end the upper bound of the range of model instances to return (not inclusive)
130            * @param orderByComparator the comparator to order the results by
131            * @return the ordered range of matching rows
132            * @throws SystemException if a system exception occurred
133            */
134            @SuppressWarnings("rawtypes")
135            public static java.util.List dynamicQuery(
136                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
137                    int end,
138                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
139                    throws com.liferay.portal.kernel.exception.SystemException {
140                    return getService()
141                                       .dynamicQuery(dynamicQuery, start, end, orderByComparator);
142            }
143    
144            /**
145            * Counts the number of rows that match the dynamic query.
146            *
147            * @param dynamicQuery the dynamic query to search with
148            * @return the number of rows that match the dynamic query
149            * @throws SystemException if a system exception occurred
150            */
151            public static long dynamicQueryCount(
152                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
153                    throws com.liferay.portal.kernel.exception.SystemException {
154                    return getService().dynamicQueryCount(dynamicQuery);
155            }
156    
157            /**
158            * Gets the expando value with the primary key.
159            *
160            * @param valueId the primary key of the expando value to get
161            * @return the expando value
162            * @throws PortalException if a expando value with the primary key could not be found
163            * @throws SystemException if a system exception occurred
164            */
165            public static com.liferay.portlet.expando.model.ExpandoValue getExpandoValue(
166                    long valueId)
167                    throws com.liferay.portal.kernel.exception.PortalException,
168                            com.liferay.portal.kernel.exception.SystemException {
169                    return getService().getExpandoValue(valueId);
170            }
171    
172            /**
173            * Gets a range of all the expando values.
174            *
175            * <p>
176            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
177            * </p>
178            *
179            * @param start the lower bound of the range of expando values to return
180            * @param end the upper bound of the range of expando values to return (not inclusive)
181            * @return the range of expando values
182            * @throws SystemException if a system exception occurred
183            */
184            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getExpandoValues(
185                    int start, int end)
186                    throws com.liferay.portal.kernel.exception.SystemException {
187                    return getService().getExpandoValues(start, end);
188            }
189    
190            /**
191            * Gets the number of expando values.
192            *
193            * @return the number of expando values
194            * @throws SystemException if a system exception occurred
195            */
196            public static int getExpandoValuesCount()
197                    throws com.liferay.portal.kernel.exception.SystemException {
198                    return getService().getExpandoValuesCount();
199            }
200    
201            /**
202            * Updates the expando value in the database. Also notifies the appropriate model listeners.
203            *
204            * @param expandoValue the expando value to update
205            * @return the expando value that was updated
206            * @throws SystemException if a system exception occurred
207            */
208            public static com.liferay.portlet.expando.model.ExpandoValue updateExpandoValue(
209                    com.liferay.portlet.expando.model.ExpandoValue expandoValue)
210                    throws com.liferay.portal.kernel.exception.SystemException {
211                    return getService().updateExpandoValue(expandoValue);
212            }
213    
214            /**
215            * Updates the expando value in the database. Also notifies the appropriate model listeners.
216            *
217            * @param expandoValue the expando value to update
218            * @param merge whether to merge the expando value with the current session. See {@link com.liferay.portal.service.persistence.BatchSession#update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean)} for an explanation.
219            * @return the expando value that was updated
220            * @throws SystemException if a system exception occurred
221            */
222            public static com.liferay.portlet.expando.model.ExpandoValue updateExpandoValue(
223                    com.liferay.portlet.expando.model.ExpandoValue expandoValue,
224                    boolean merge)
225                    throws com.liferay.portal.kernel.exception.SystemException {
226                    return getService().updateExpandoValue(expandoValue, merge);
227            }
228    
229            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
230                    long classNameId, long tableId, long columnId, long classPK,
231                    java.lang.String data)
232                    throws com.liferay.portal.kernel.exception.PortalException,
233                            com.liferay.portal.kernel.exception.SystemException {
234                    return getService()
235                                       .addValue(classNameId, tableId, columnId, classPK, data);
236            }
237    
238            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
239                    long companyId, java.lang.String className, java.lang.String tableName,
240                    java.lang.String columnName, long classPK, boolean data)
241                    throws com.liferay.portal.kernel.exception.PortalException,
242                            com.liferay.portal.kernel.exception.SystemException {
243                    return getService()
244                                       .addValue(companyId, className, tableName, columnName,
245                            classPK, data);
246            }
247    
248            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
249                    long companyId, java.lang.String className, java.lang.String tableName,
250                    java.lang.String columnName, long classPK, boolean[] data)
251                    throws com.liferay.portal.kernel.exception.PortalException,
252                            com.liferay.portal.kernel.exception.SystemException {
253                    return getService()
254                                       .addValue(companyId, className, tableName, columnName,
255                            classPK, data);
256            }
257    
258            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
259                    long companyId, java.lang.String className, java.lang.String tableName,
260                    java.lang.String columnName, long classPK, java.util.Date data)
261                    throws com.liferay.portal.kernel.exception.PortalException,
262                            com.liferay.portal.kernel.exception.SystemException {
263                    return getService()
264                                       .addValue(companyId, className, tableName, columnName,
265                            classPK, data);
266            }
267    
268            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
269                    long companyId, java.lang.String className, java.lang.String tableName,
270                    java.lang.String columnName, long classPK, java.util.Date[] data)
271                    throws com.liferay.portal.kernel.exception.PortalException,
272                            com.liferay.portal.kernel.exception.SystemException {
273                    return getService()
274                                       .addValue(companyId, className, tableName, columnName,
275                            classPK, data);
276            }
277    
278            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
279                    long companyId, java.lang.String className, java.lang.String tableName,
280                    java.lang.String columnName, long classPK, double data)
281                    throws com.liferay.portal.kernel.exception.PortalException,
282                            com.liferay.portal.kernel.exception.SystemException {
283                    return getService()
284                                       .addValue(companyId, className, tableName, columnName,
285                            classPK, data);
286            }
287    
288            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
289                    long companyId, java.lang.String className, java.lang.String tableName,
290                    java.lang.String columnName, long classPK, double[] data)
291                    throws com.liferay.portal.kernel.exception.PortalException,
292                            com.liferay.portal.kernel.exception.SystemException {
293                    return getService()
294                                       .addValue(companyId, className, tableName, columnName,
295                            classPK, data);
296            }
297    
298            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
299                    long companyId, java.lang.String className, java.lang.String tableName,
300                    java.lang.String columnName, long classPK, float data)
301                    throws com.liferay.portal.kernel.exception.PortalException,
302                            com.liferay.portal.kernel.exception.SystemException {
303                    return getService()
304                                       .addValue(companyId, className, tableName, columnName,
305                            classPK, data);
306            }
307    
308            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
309                    long companyId, java.lang.String className, java.lang.String tableName,
310                    java.lang.String columnName, long classPK, float[] data)
311                    throws com.liferay.portal.kernel.exception.PortalException,
312                            com.liferay.portal.kernel.exception.SystemException {
313                    return getService()
314                                       .addValue(companyId, className, tableName, columnName,
315                            classPK, data);
316            }
317    
318            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
319                    long companyId, java.lang.String className, java.lang.String tableName,
320                    java.lang.String columnName, long classPK, int data)
321                    throws com.liferay.portal.kernel.exception.PortalException,
322                            com.liferay.portal.kernel.exception.SystemException {
323                    return getService()
324                                       .addValue(companyId, className, tableName, columnName,
325                            classPK, data);
326            }
327    
328            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
329                    long companyId, java.lang.String className, java.lang.String tableName,
330                    java.lang.String columnName, long classPK, int[] data)
331                    throws com.liferay.portal.kernel.exception.PortalException,
332                            com.liferay.portal.kernel.exception.SystemException {
333                    return getService()
334                                       .addValue(companyId, className, tableName, columnName,
335                            classPK, data);
336            }
337    
338            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
339                    long companyId, java.lang.String className, java.lang.String tableName,
340                    java.lang.String columnName, long classPK, long data)
341                    throws com.liferay.portal.kernel.exception.PortalException,
342                            com.liferay.portal.kernel.exception.SystemException {
343                    return getService()
344                                       .addValue(companyId, className, tableName, columnName,
345                            classPK, data);
346            }
347    
348            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
349                    long companyId, java.lang.String className, java.lang.String tableName,
350                    java.lang.String columnName, long classPK, long[] data)
351                    throws com.liferay.portal.kernel.exception.PortalException,
352                            com.liferay.portal.kernel.exception.SystemException {
353                    return getService()
354                                       .addValue(companyId, className, tableName, columnName,
355                            classPK, data);
356            }
357    
358            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
359                    long companyId, java.lang.String className, java.lang.String tableName,
360                    java.lang.String columnName, long classPK, java.lang.Object data)
361                    throws com.liferay.portal.kernel.exception.PortalException,
362                            com.liferay.portal.kernel.exception.SystemException {
363                    return getService()
364                                       .addValue(companyId, className, tableName, columnName,
365                            classPK, data);
366            }
367    
368            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
369                    long companyId, java.lang.String className, java.lang.String tableName,
370                    java.lang.String columnName, long classPK, short data)
371                    throws com.liferay.portal.kernel.exception.PortalException,
372                            com.liferay.portal.kernel.exception.SystemException {
373                    return getService()
374                                       .addValue(companyId, className, tableName, columnName,
375                            classPK, data);
376            }
377    
378            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
379                    long companyId, java.lang.String className, java.lang.String tableName,
380                    java.lang.String columnName, long classPK, short[] data)
381                    throws com.liferay.portal.kernel.exception.PortalException,
382                            com.liferay.portal.kernel.exception.SystemException {
383                    return getService()
384                                       .addValue(companyId, className, tableName, columnName,
385                            classPK, data);
386            }
387    
388            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
389                    long companyId, java.lang.String className, java.lang.String tableName,
390                    java.lang.String columnName, long classPK, java.lang.String data)
391                    throws com.liferay.portal.kernel.exception.PortalException,
392                            com.liferay.portal.kernel.exception.SystemException {
393                    return getService()
394                                       .addValue(companyId, className, tableName, columnName,
395                            classPK, data);
396            }
397    
398            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
399                    long companyId, java.lang.String className, java.lang.String tableName,
400                    java.lang.String columnName, long classPK, java.lang.String[] data)
401                    throws com.liferay.portal.kernel.exception.PortalException,
402                            com.liferay.portal.kernel.exception.SystemException {
403                    return getService()
404                                       .addValue(companyId, className, tableName, columnName,
405                            classPK, data);
406            }
407    
408            /**
409            * @deprecated {@link #addValue(long, String, String, String, long,
410            boolean[])}
411            */
412            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
413                    java.lang.String className, java.lang.String tableName,
414                    java.lang.String columnName, long classPK, boolean data)
415                    throws com.liferay.portal.kernel.exception.PortalException,
416                            com.liferay.portal.kernel.exception.SystemException {
417                    return getService()
418                                       .addValue(className, tableName, columnName, classPK, data);
419            }
420    
421            /**
422            * @deprecated {@link #addValue(long, String, String, String, long,
423            boolean[])}
424            */
425            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
426                    java.lang.String className, java.lang.String tableName,
427                    java.lang.String columnName, long classPK, boolean[] data)
428                    throws com.liferay.portal.kernel.exception.PortalException,
429                            com.liferay.portal.kernel.exception.SystemException {
430                    return getService()
431                                       .addValue(className, tableName, columnName, classPK, data);
432            }
433    
434            /**
435            * @deprecated {@link #addValue(long, String, String, String, long, Date[])}
436            */
437            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
438                    java.lang.String className, java.lang.String tableName,
439                    java.lang.String columnName, long classPK, java.util.Date data)
440                    throws com.liferay.portal.kernel.exception.PortalException,
441                            com.liferay.portal.kernel.exception.SystemException {
442                    return getService()
443                                       .addValue(className, tableName, columnName, classPK, data);
444            }
445    
446            /**
447            * @deprecated {@link #addValue(long, String, String, String, long, Date[])}
448            */
449            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
450                    java.lang.String className, java.lang.String tableName,
451                    java.lang.String columnName, long classPK, java.util.Date[] data)
452                    throws com.liferay.portal.kernel.exception.PortalException,
453                            com.liferay.portal.kernel.exception.SystemException {
454                    return getService()
455                                       .addValue(className, tableName, columnName, classPK, data);
456            }
457    
458            /**
459            * @deprecated {@link #addValue(long, String, String, String, long,
460            double[])}
461            */
462            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
463                    java.lang.String className, java.lang.String tableName,
464                    java.lang.String columnName, long classPK, double data)
465                    throws com.liferay.portal.kernel.exception.PortalException,
466                            com.liferay.portal.kernel.exception.SystemException {
467                    return getService()
468                                       .addValue(className, tableName, columnName, classPK, data);
469            }
470    
471            /**
472            * @deprecated {@link #addValue(long, String, String, String, long,
473            double[])}
474            */
475            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
476                    java.lang.String className, java.lang.String tableName,
477                    java.lang.String columnName, long classPK, double[] data)
478                    throws com.liferay.portal.kernel.exception.PortalException,
479                            com.liferay.portal.kernel.exception.SystemException {
480                    return getService()
481                                       .addValue(className, tableName, columnName, classPK, data);
482            }
483    
484            /**
485            * @deprecated {@link #addValue(long, String, String, String, long,
486            float[])}
487            */
488            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
489                    java.lang.String className, java.lang.String tableName,
490                    java.lang.String columnName, long classPK, float data)
491                    throws com.liferay.portal.kernel.exception.PortalException,
492                            com.liferay.portal.kernel.exception.SystemException {
493                    return getService()
494                                       .addValue(className, tableName, columnName, classPK, data);
495            }
496    
497            /**
498            * @deprecated {@link #addValue(long, String, String, String, long,
499            float[])}
500            */
501            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
502                    java.lang.String className, java.lang.String tableName,
503                    java.lang.String columnName, long classPK, float[] data)
504                    throws com.liferay.portal.kernel.exception.PortalException,
505                            com.liferay.portal.kernel.exception.SystemException {
506                    return getService()
507                                       .addValue(className, tableName, columnName, classPK, data);
508            }
509    
510            /**
511            * @deprecated {@link #addValue(long, String, String, String, long, int[])}
512            */
513            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
514                    java.lang.String className, java.lang.String tableName,
515                    java.lang.String columnName, long classPK, int data)
516                    throws com.liferay.portal.kernel.exception.PortalException,
517                            com.liferay.portal.kernel.exception.SystemException {
518                    return getService()
519                                       .addValue(className, tableName, columnName, classPK, data);
520            }
521    
522            /**
523            * @deprecated {@link #addValue(long, String, String, String, long, int[])}
524            */
525            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
526                    java.lang.String className, java.lang.String tableName,
527                    java.lang.String columnName, long classPK, int[] data)
528                    throws com.liferay.portal.kernel.exception.PortalException,
529                            com.liferay.portal.kernel.exception.SystemException {
530                    return getService()
531                                       .addValue(className, tableName, columnName, classPK, data);
532            }
533    
534            /**
535            * @deprecated {@link #addValue(long, String, String, String, long, long[])}
536            */
537            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
538                    java.lang.String className, java.lang.String tableName,
539                    java.lang.String columnName, long classPK, long data)
540                    throws com.liferay.portal.kernel.exception.PortalException,
541                            com.liferay.portal.kernel.exception.SystemException {
542                    return getService()
543                                       .addValue(className, tableName, columnName, classPK, data);
544            }
545    
546            /**
547            * @deprecated {@link #addValue(long, String, String, String, long, long[])}
548            */
549            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
550                    java.lang.String className, java.lang.String tableName,
551                    java.lang.String columnName, long classPK, long[] data)
552                    throws com.liferay.portal.kernel.exception.PortalException,
553                            com.liferay.portal.kernel.exception.SystemException {
554                    return getService()
555                                       .addValue(className, tableName, columnName, classPK, data);
556            }
557    
558            /**
559            * @deprecated {@link #addValue(long, String, String, String, long, Object)}
560            */
561            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
562                    java.lang.String className, java.lang.String tableName,
563                    java.lang.String columnName, long classPK, java.lang.Object data)
564                    throws com.liferay.portal.kernel.exception.PortalException,
565                            com.liferay.portal.kernel.exception.SystemException {
566                    return getService()
567                                       .addValue(className, tableName, columnName, classPK, data);
568            }
569    
570            /**
571            * @deprecated {@link #addValue(long, String, String, String, long,
572            short[])}
573            */
574            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
575                    java.lang.String className, java.lang.String tableName,
576                    java.lang.String columnName, long classPK, short data)
577                    throws com.liferay.portal.kernel.exception.PortalException,
578                            com.liferay.portal.kernel.exception.SystemException {
579                    return getService()
580                                       .addValue(className, tableName, columnName, classPK, data);
581            }
582    
583            /**
584            * @deprecated {@link #addValue(long, String, String, String, long,
585            short[])}
586            */
587            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
588                    java.lang.String className, java.lang.String tableName,
589                    java.lang.String columnName, long classPK, short[] data)
590                    throws com.liferay.portal.kernel.exception.PortalException,
591                            com.liferay.portal.kernel.exception.SystemException {
592                    return getService()
593                                       .addValue(className, tableName, columnName, classPK, data);
594            }
595    
596            /**
597            * @deprecated {@link #addValue(long, String, String, String, long,
598            String[])}
599            */
600            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
601                    java.lang.String className, java.lang.String tableName,
602                    java.lang.String columnName, long classPK, java.lang.String data)
603                    throws com.liferay.portal.kernel.exception.PortalException,
604                            com.liferay.portal.kernel.exception.SystemException {
605                    return getService()
606                                       .addValue(className, tableName, columnName, classPK, data);
607            }
608    
609            /**
610            * @deprecated {@link #addValue(long, String, String, String, long,
611            String[])}
612            */
613            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
614                    java.lang.String className, java.lang.String tableName,
615                    java.lang.String columnName, long classPK, java.lang.String[] data)
616                    throws com.liferay.portal.kernel.exception.PortalException,
617                            com.liferay.portal.kernel.exception.SystemException {
618                    return getService()
619                                       .addValue(className, tableName, columnName, classPK, data);
620            }
621    
622            public static void addValues(long classNameId, long tableId,
623                    java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> columns,
624                    long classPK, java.util.Map<java.lang.String, java.lang.String> data)
625                    throws com.liferay.portal.kernel.exception.PortalException,
626                            com.liferay.portal.kernel.exception.SystemException {
627                    getService().addValues(classNameId, tableId, columns, classPK, data);
628            }
629    
630            public static void deleteColumnValues(long columnId)
631                    throws com.liferay.portal.kernel.exception.SystemException {
632                    getService().deleteColumnValues(columnId);
633            }
634    
635            public static void deleteRowValues(long rowId)
636                    throws com.liferay.portal.kernel.exception.SystemException {
637                    getService().deleteRowValues(rowId);
638            }
639    
640            public static void deleteTableValues(long tableId)
641                    throws com.liferay.portal.kernel.exception.SystemException {
642                    getService().deleteTableValues(tableId);
643            }
644    
645            public static void deleteValue(long valueId)
646                    throws com.liferay.portal.kernel.exception.PortalException,
647                            com.liferay.portal.kernel.exception.SystemException {
648                    getService().deleteValue(valueId);
649            }
650    
651            public static void deleteValue(long columnId, long rowId)
652                    throws com.liferay.portal.kernel.exception.PortalException,
653                            com.liferay.portal.kernel.exception.SystemException {
654                    getService().deleteValue(columnId, rowId);
655            }
656    
657            public static void deleteValue(long companyId, long classNameId,
658                    java.lang.String tableName, java.lang.String columnName, long classPK)
659                    throws com.liferay.portal.kernel.exception.PortalException,
660                            com.liferay.portal.kernel.exception.SystemException {
661                    getService()
662                            .deleteValue(companyId, classNameId, tableName, columnName, classPK);
663            }
664    
665            public static void deleteValue(long companyId, java.lang.String className,
666                    java.lang.String tableName, java.lang.String columnName, long classPK)
667                    throws com.liferay.portal.kernel.exception.PortalException,
668                            com.liferay.portal.kernel.exception.SystemException {
669                    getService()
670                            .deleteValue(companyId, className, tableName, columnName, classPK);
671            }
672    
673            public static void deleteValues(long classNameId, long classPK)
674                    throws com.liferay.portal.kernel.exception.SystemException {
675                    getService().deleteValues(classNameId, classPK);
676            }
677    
678            public static void deleteValues(java.lang.String className, long classPK)
679                    throws com.liferay.portal.kernel.exception.SystemException {
680                    getService().deleteValues(className, classPK);
681            }
682    
683            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
684                    long columnId, int start, int end)
685                    throws com.liferay.portal.kernel.exception.SystemException {
686                    return getService().getColumnValues(columnId, start, end);
687            }
688    
689            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
690                    long companyId, long classNameId, java.lang.String tableName,
691                    java.lang.String columnName, int start, int end)
692                    throws com.liferay.portal.kernel.exception.SystemException {
693                    return getService()
694                                       .getColumnValues(companyId, classNameId, tableName,
695                            columnName, start, end);
696            }
697    
698            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
699                    long companyId, long classNameId, java.lang.String tableName,
700                    java.lang.String columnName, java.lang.String data, int start, int end)
701                    throws com.liferay.portal.kernel.exception.SystemException {
702                    return getService()
703                                       .getColumnValues(companyId, classNameId, tableName,
704                            columnName, data, start, end);
705            }
706    
707            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
708                    long companyId, java.lang.String className, java.lang.String tableName,
709                    java.lang.String columnName, int start, int end)
710                    throws com.liferay.portal.kernel.exception.SystemException {
711                    return getService()
712                                       .getColumnValues(companyId, className, tableName,
713                            columnName, start, end);
714            }
715    
716            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
717                    java.lang.String className, java.lang.String tableName,
718                    java.lang.String columnName, java.lang.String data, int start, int end)
719                    throws com.liferay.portal.kernel.exception.SystemException {
720                    return getService()
721                                       .getColumnValues(className, tableName, columnName, data,
722                            start, end);
723            }
724    
725            public static int getColumnValuesCount(long columnId)
726                    throws com.liferay.portal.kernel.exception.SystemException {
727                    return getService().getColumnValuesCount(columnId);
728            }
729    
730            public static int getColumnValuesCount(long companyId, long classNameId,
731                    java.lang.String tableName, java.lang.String columnName)
732                    throws com.liferay.portal.kernel.exception.SystemException {
733                    return getService()
734                                       .getColumnValuesCount(companyId, classNameId, tableName,
735                            columnName);
736            }
737    
738            public static int getColumnValuesCount(long companyId, long classNameId,
739                    java.lang.String tableName, java.lang.String columnName,
740                    java.lang.String data)
741                    throws com.liferay.portal.kernel.exception.SystemException {
742                    return getService()
743                                       .getColumnValuesCount(companyId, classNameId, tableName,
744                            columnName, data);
745            }
746    
747            public static int getColumnValuesCount(long companyId,
748                    java.lang.String className, java.lang.String tableName,
749                    java.lang.String columnName)
750                    throws com.liferay.portal.kernel.exception.SystemException {
751                    return getService()
752                                       .getColumnValuesCount(companyId, className, tableName,
753                            columnName);
754            }
755    
756            public static int getColumnValuesCount(java.lang.String className,
757                    java.lang.String tableName, java.lang.String columnName,
758                    java.lang.String data)
759                    throws com.liferay.portal.kernel.exception.SystemException {
760                    return getService()
761                                       .getColumnValuesCount(className, tableName, columnName, data);
762            }
763    
764            public static java.io.Serializable getData(long companyId,
765                    java.lang.String className, java.lang.String tableName,
766                    java.lang.String columnName, long classPK)
767                    throws com.liferay.portal.kernel.exception.PortalException,
768                            com.liferay.portal.kernel.exception.SystemException {
769                    return getService()
770                                       .getData(companyId, className, tableName, columnName, classPK);
771            }
772    
773            public static boolean getData(long companyId, java.lang.String className,
774                    java.lang.String tableName, java.lang.String columnName, long classPK,
775                    boolean defaultData)
776                    throws com.liferay.portal.kernel.exception.PortalException,
777                            com.liferay.portal.kernel.exception.SystemException {
778                    return getService()
779                                       .getData(companyId, className, tableName, columnName,
780                            classPK, defaultData);
781            }
782    
783            public static boolean[] getData(long companyId, java.lang.String className,
784                    java.lang.String tableName, java.lang.String columnName, long classPK,
785                    boolean[] defaultData)
786                    throws com.liferay.portal.kernel.exception.PortalException,
787                            com.liferay.portal.kernel.exception.SystemException {
788                    return getService()
789                                       .getData(companyId, className, tableName, columnName,
790                            classPK, defaultData);
791            }
792    
793            public static java.util.Date getData(long companyId,
794                    java.lang.String className, java.lang.String tableName,
795                    java.lang.String columnName, long classPK, java.util.Date defaultData)
796                    throws com.liferay.portal.kernel.exception.PortalException,
797                            com.liferay.portal.kernel.exception.SystemException {
798                    return getService()
799                                       .getData(companyId, className, tableName, columnName,
800                            classPK, defaultData);
801            }
802    
803            public static java.util.Date[] getData(long companyId,
804                    java.lang.String className, java.lang.String tableName,
805                    java.lang.String columnName, long classPK, java.util.Date[] defaultData)
806                    throws com.liferay.portal.kernel.exception.PortalException,
807                            com.liferay.portal.kernel.exception.SystemException {
808                    return getService()
809                                       .getData(companyId, className, tableName, columnName,
810                            classPK, defaultData);
811            }
812    
813            public static double getData(long companyId, java.lang.String className,
814                    java.lang.String tableName, java.lang.String columnName, long classPK,
815                    double defaultData)
816                    throws com.liferay.portal.kernel.exception.PortalException,
817                            com.liferay.portal.kernel.exception.SystemException {
818                    return getService()
819                                       .getData(companyId, className, tableName, columnName,
820                            classPK, defaultData);
821            }
822    
823            public static double[] getData(long companyId, java.lang.String className,
824                    java.lang.String tableName, java.lang.String columnName, long classPK,
825                    double[] defaultData)
826                    throws com.liferay.portal.kernel.exception.PortalException,
827                            com.liferay.portal.kernel.exception.SystemException {
828                    return getService()
829                                       .getData(companyId, className, tableName, columnName,
830                            classPK, defaultData);
831            }
832    
833            public static float getData(long companyId, java.lang.String className,
834                    java.lang.String tableName, java.lang.String columnName, long classPK,
835                    float defaultData)
836                    throws com.liferay.portal.kernel.exception.PortalException,
837                            com.liferay.portal.kernel.exception.SystemException {
838                    return getService()
839                                       .getData(companyId, className, tableName, columnName,
840                            classPK, defaultData);
841            }
842    
843            public static float[] getData(long companyId, java.lang.String className,
844                    java.lang.String tableName, java.lang.String columnName, long classPK,
845                    float[] defaultData)
846                    throws com.liferay.portal.kernel.exception.PortalException,
847                            com.liferay.portal.kernel.exception.SystemException {
848                    return getService()
849                                       .getData(companyId, className, tableName, columnName,
850                            classPK, defaultData);
851            }
852    
853            public static int getData(long companyId, java.lang.String className,
854                    java.lang.String tableName, java.lang.String columnName, long classPK,
855                    int defaultData)
856                    throws com.liferay.portal.kernel.exception.PortalException,
857                            com.liferay.portal.kernel.exception.SystemException {
858                    return getService()
859                                       .getData(companyId, className, tableName, columnName,
860                            classPK, defaultData);
861            }
862    
863            public static int[] getData(long companyId, java.lang.String className,
864                    java.lang.String tableName, java.lang.String columnName, long classPK,
865                    int[] defaultData)
866                    throws com.liferay.portal.kernel.exception.PortalException,
867                            com.liferay.portal.kernel.exception.SystemException {
868                    return getService()
869                                       .getData(companyId, className, tableName, columnName,
870                            classPK, defaultData);
871            }
872    
873            public static long getData(long companyId, java.lang.String className,
874                    java.lang.String tableName, java.lang.String columnName, long classPK,
875                    long defaultData)
876                    throws com.liferay.portal.kernel.exception.PortalException,
877                            com.liferay.portal.kernel.exception.SystemException {
878                    return getService()
879                                       .getData(companyId, className, tableName, columnName,
880                            classPK, defaultData);
881            }
882    
883            public static long[] getData(long companyId, java.lang.String className,
884                    java.lang.String tableName, java.lang.String columnName, long classPK,
885                    long[] defaultData)
886                    throws com.liferay.portal.kernel.exception.PortalException,
887                            com.liferay.portal.kernel.exception.SystemException {
888                    return getService()
889                                       .getData(companyId, className, tableName, columnName,
890                            classPK, defaultData);
891            }
892    
893            public static short getData(long companyId, java.lang.String className,
894                    java.lang.String tableName, java.lang.String columnName, long classPK,
895                    short defaultData)
896                    throws com.liferay.portal.kernel.exception.PortalException,
897                            com.liferay.portal.kernel.exception.SystemException {
898                    return getService()
899                                       .getData(companyId, className, tableName, columnName,
900                            classPK, defaultData);
901            }
902    
903            public static short[] getData(long companyId, java.lang.String className,
904                    java.lang.String tableName, java.lang.String columnName, long classPK,
905                    short[] defaultData)
906                    throws com.liferay.portal.kernel.exception.PortalException,
907                            com.liferay.portal.kernel.exception.SystemException {
908                    return getService()
909                                       .getData(companyId, className, tableName, columnName,
910                            classPK, defaultData);
911            }
912    
913            public static java.lang.String getData(long companyId,
914                    java.lang.String className, java.lang.String tableName,
915                    java.lang.String columnName, long classPK, java.lang.String defaultData)
916                    throws com.liferay.portal.kernel.exception.PortalException,
917                            com.liferay.portal.kernel.exception.SystemException {
918                    return getService()
919                                       .getData(companyId, className, tableName, columnName,
920                            classPK, defaultData);
921            }
922    
923            public static java.lang.String[] getData(long companyId,
924                    java.lang.String className, java.lang.String tableName,
925                    java.lang.String columnName, long classPK,
926                    java.lang.String[] defaultData)
927                    throws com.liferay.portal.kernel.exception.PortalException,
928                            com.liferay.portal.kernel.exception.SystemException {
929                    return getService()
930                                       .getData(companyId, className, tableName, columnName,
931                            classPK, defaultData);
932            }
933    
934            /**
935            * @deprecated {@link #getData(long, String, String, String, long)}
936            */
937            public static java.io.Serializable getData(java.lang.String className,
938                    java.lang.String tableName, java.lang.String columnName, long classPK)
939                    throws com.liferay.portal.kernel.exception.PortalException,
940                            com.liferay.portal.kernel.exception.SystemException {
941                    return getService().getData(className, tableName, columnName, classPK);
942            }
943    
944            /**
945            * @deprecated {@link #getData(long, String, String, String, long,
946            boolean[])}
947            */
948            public static boolean getData(java.lang.String className,
949                    java.lang.String tableName, java.lang.String columnName, long classPK,
950                    boolean defaultData)
951                    throws com.liferay.portal.kernel.exception.PortalException,
952                            com.liferay.portal.kernel.exception.SystemException {
953                    return getService()
954                                       .getData(className, tableName, columnName, classPK,
955                            defaultData);
956            }
957    
958            /**
959            * @deprecated {@link #getData(long, String, String, String, long,
960            boolean[])}
961            */
962            public static boolean[] getData(java.lang.String className,
963                    java.lang.String tableName, java.lang.String columnName, long classPK,
964                    boolean[] defaultData)
965                    throws com.liferay.portal.kernel.exception.PortalException,
966                            com.liferay.portal.kernel.exception.SystemException {
967                    return getService()
968                                       .getData(className, tableName, columnName, classPK,
969                            defaultData);
970            }
971    
972            /**
973            * @deprecated {@link #getData(long, String, String, String, long, Date[])}
974            */
975            public static java.util.Date getData(java.lang.String className,
976                    java.lang.String tableName, java.lang.String columnName, long classPK,
977                    java.util.Date defaultData)
978                    throws com.liferay.portal.kernel.exception.PortalException,
979                            com.liferay.portal.kernel.exception.SystemException {
980                    return getService()
981                                       .getData(className, tableName, columnName, classPK,
982                            defaultData);
983            }
984    
985            /**
986            * @deprecated {@link #getData(long, String, String, String, long, Date[])}
987            */
988            public static java.util.Date[] getData(java.lang.String className,
989                    java.lang.String tableName, java.lang.String columnName, long classPK,
990                    java.util.Date[] defaultData)
991                    throws com.liferay.portal.kernel.exception.PortalException,
992                            com.liferay.portal.kernel.exception.SystemException {
993                    return getService()
994                                       .getData(className, tableName, columnName, classPK,
995                            defaultData);
996            }
997    
998            /**
999            * @deprecated {@link #getData(long, String, String, String, long,
1000            double[])}
1001            */
1002            public static double getData(java.lang.String className,
1003                    java.lang.String tableName, java.lang.String columnName, long classPK,
1004                    double defaultData)
1005                    throws com.liferay.portal.kernel.exception.PortalException,
1006                            com.liferay.portal.kernel.exception.SystemException {
1007                    return getService()
1008                                       .getData(className, tableName, columnName, classPK,
1009                            defaultData);
1010            }
1011    
1012            /**
1013            * @deprecated {@link #getData(long, String, String, String, long,
1014            double[])}
1015            */
1016            public static double[] getData(java.lang.String className,
1017                    java.lang.String tableName, java.lang.String columnName, long classPK,
1018                    double[] defaultData)
1019                    throws com.liferay.portal.kernel.exception.PortalException,
1020                            com.liferay.portal.kernel.exception.SystemException {
1021                    return getService()
1022                                       .getData(className, tableName, columnName, classPK,
1023                            defaultData);
1024            }
1025    
1026            /**
1027            * @deprecated {@link #getData(long, String, String, String, long, float[])}
1028            */
1029            public static float getData(java.lang.String className,
1030                    java.lang.String tableName, java.lang.String columnName, long classPK,
1031                    float defaultData)
1032                    throws com.liferay.portal.kernel.exception.PortalException,
1033                            com.liferay.portal.kernel.exception.SystemException {
1034                    return getService()
1035                                       .getData(className, tableName, columnName, classPK,
1036                            defaultData);
1037            }
1038    
1039            /**
1040            * @deprecated {@link #getData(long, String, String, String, long, float[])}
1041            */
1042            public static float[] getData(java.lang.String className,
1043                    java.lang.String tableName, java.lang.String columnName, long classPK,
1044                    float[] defaultData)
1045                    throws com.liferay.portal.kernel.exception.PortalException,
1046                            com.liferay.portal.kernel.exception.SystemException {
1047                    return getService()
1048                                       .getData(className, tableName, columnName, classPK,
1049                            defaultData);
1050            }
1051    
1052            /**
1053            * @deprecated {@link #getData(long, String, String, String, long, int[])}
1054            */
1055            public static int getData(java.lang.String className,
1056                    java.lang.String tableName, java.lang.String columnName, long classPK,
1057                    int defaultData)
1058                    throws com.liferay.portal.kernel.exception.PortalException,
1059                            com.liferay.portal.kernel.exception.SystemException {
1060                    return getService()
1061                                       .getData(className, tableName, columnName, classPK,
1062                            defaultData);
1063            }
1064    
1065            /**
1066            * @deprecated {@link #getData(long, String, String, String, long, int[])}
1067            */
1068            public static int[] getData(java.lang.String className,
1069                    java.lang.String tableName, java.lang.String columnName, long classPK,
1070                    int[] defaultData)
1071                    throws com.liferay.portal.kernel.exception.PortalException,
1072                            com.liferay.portal.kernel.exception.SystemException {
1073                    return getService()
1074                                       .getData(className, tableName, columnName, classPK,
1075                            defaultData);
1076            }
1077    
1078            /**
1079            * @deprecated {@link #getData(long, String, String, String, long, long[])}
1080            */
1081            public static long getData(java.lang.String className,
1082                    java.lang.String tableName, java.lang.String columnName, long classPK,
1083                    long defaultData)
1084                    throws com.liferay.portal.kernel.exception.PortalException,
1085                            com.liferay.portal.kernel.exception.SystemException {
1086                    return getService()
1087                                       .getData(className, tableName, columnName, classPK,
1088                            defaultData);
1089            }
1090    
1091            /**
1092            * @deprecated {@link #getData(long, String, String, String, long, long[])}
1093            */
1094            public static long[] getData(java.lang.String className,
1095                    java.lang.String tableName, java.lang.String columnName, long classPK,
1096                    long[] defaultData)
1097                    throws com.liferay.portal.kernel.exception.PortalException,
1098                            com.liferay.portal.kernel.exception.SystemException {
1099                    return getService()
1100                                       .getData(className, tableName, columnName, classPK,
1101                            defaultData);
1102            }
1103    
1104            /**
1105            * @deprecated {@link #getData(long, String, String, String, long, short[])}
1106            */
1107            public static short getData(java.lang.String className,
1108                    java.lang.String tableName, java.lang.String columnName, long classPK,
1109                    short defaultData)
1110                    throws com.liferay.portal.kernel.exception.PortalException,
1111                            com.liferay.portal.kernel.exception.SystemException {
1112                    return getService()
1113                                       .getData(className, tableName, columnName, classPK,
1114                            defaultData);
1115            }
1116    
1117            /**
1118            * @deprecated {@link #getData(long, String, String, String, long, short[])}
1119            */
1120            public static short[] getData(java.lang.String className,
1121                    java.lang.String tableName, java.lang.String columnName, long classPK,
1122                    short[] defaultData)
1123                    throws com.liferay.portal.kernel.exception.PortalException,
1124                            com.liferay.portal.kernel.exception.SystemException {
1125                    return getService()
1126                                       .getData(className, tableName, columnName, classPK,
1127                            defaultData);
1128            }
1129    
1130            /**
1131            * @deprecated {@link #getData(long, String, String, String, long,
1132            String[])}
1133            */
1134            public static java.lang.String getData(java.lang.String className,
1135                    java.lang.String tableName, java.lang.String columnName, long classPK,
1136                    java.lang.String defaultData)
1137                    throws com.liferay.portal.kernel.exception.PortalException,
1138                            com.liferay.portal.kernel.exception.SystemException {
1139                    return getService()
1140                                       .getData(className, tableName, columnName, classPK,
1141                            defaultData);
1142            }
1143    
1144            /**
1145            * @deprecated {@link #getData(long, String, String, String, long,
1146            String[])}
1147            */
1148            public static java.lang.String[] getData(java.lang.String className,
1149                    java.lang.String tableName, java.lang.String columnName, long classPK,
1150                    java.lang.String[] defaultData)
1151                    throws com.liferay.portal.kernel.exception.PortalException,
1152                            com.liferay.portal.kernel.exception.SystemException {
1153                    return getService()
1154                                       .getData(className, tableName, columnName, classPK,
1155                            defaultData);
1156            }
1157    
1158            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getDefaultTableColumnValues(
1159                    long companyId, long classNameId, java.lang.String columnName,
1160                    int start, int end)
1161                    throws com.liferay.portal.kernel.exception.SystemException {
1162                    return getService()
1163                                       .getDefaultTableColumnValues(companyId, classNameId,
1164                            columnName, start, end);
1165            }
1166    
1167            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getDefaultTableColumnValues(
1168                    long companyId, java.lang.String className,
1169                    java.lang.String columnName, int start, int end)
1170                    throws com.liferay.portal.kernel.exception.SystemException {
1171                    return getService()
1172                                       .getDefaultTableColumnValues(companyId, className,
1173                            columnName, start, end);
1174            }
1175    
1176            public static int getDefaultTableColumnValuesCount(long companyId,
1177                    long classNameId, java.lang.String columnName)
1178                    throws com.liferay.portal.kernel.exception.SystemException {
1179                    return getService()
1180                                       .getDefaultTableColumnValuesCount(companyId, classNameId,
1181                            columnName);
1182            }
1183    
1184            public static int getDefaultTableColumnValuesCount(long companyId,
1185                    java.lang.String className, java.lang.String columnName)
1186                    throws com.liferay.portal.kernel.exception.SystemException {
1187                    return getService()
1188                                       .getDefaultTableColumnValuesCount(companyId, className,
1189                            columnName);
1190            }
1191    
1192            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
1193                    long rowId) throws com.liferay.portal.kernel.exception.SystemException {
1194                    return getService().getRowValues(rowId);
1195            }
1196    
1197            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
1198                    long rowId, int start, int end)
1199                    throws com.liferay.portal.kernel.exception.SystemException {
1200                    return getService().getRowValues(rowId, start, end);
1201            }
1202    
1203            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
1204                    long companyId, long classNameId, java.lang.String tableName,
1205                    long classPK, int start, int end)
1206                    throws com.liferay.portal.kernel.exception.SystemException {
1207                    return getService()
1208                                       .getRowValues(companyId, classNameId, tableName, classPK,
1209                            start, end);
1210            }
1211    
1212            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
1213                    long companyId, java.lang.String className, java.lang.String tableName,
1214                    long classPK, int start, int end)
1215                    throws com.liferay.portal.kernel.exception.SystemException {
1216                    return getService()
1217                                       .getRowValues(companyId, className, tableName, classPK,
1218                            start, end);
1219            }
1220    
1221            public static int getRowValuesCount(long rowId)
1222                    throws com.liferay.portal.kernel.exception.SystemException {
1223                    return getService().getRowValuesCount(rowId);
1224            }
1225    
1226            public static int getRowValuesCount(long companyId, long classNameId,
1227                    java.lang.String tableName, long classPK)
1228                    throws com.liferay.portal.kernel.exception.SystemException {
1229                    return getService()
1230                                       .getRowValuesCount(companyId, classNameId, tableName, classPK);
1231            }
1232    
1233            public static int getRowValuesCount(long companyId,
1234                    java.lang.String className, java.lang.String tableName, long classPK)
1235                    throws com.liferay.portal.kernel.exception.SystemException {
1236                    return getService()
1237                                       .getRowValuesCount(companyId, className, tableName, classPK);
1238            }
1239    
1240            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1241                    long valueId)
1242                    throws com.liferay.portal.kernel.exception.PortalException,
1243                            com.liferay.portal.kernel.exception.SystemException {
1244                    return getService().getValue(valueId);
1245            }
1246    
1247            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1248                    long columnId, long rowId)
1249                    throws com.liferay.portal.kernel.exception.PortalException,
1250                            com.liferay.portal.kernel.exception.SystemException {
1251                    return getService().getValue(columnId, rowId);
1252            }
1253    
1254            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1255                    long tableId, long columnId, long classPK)
1256                    throws com.liferay.portal.kernel.exception.SystemException {
1257                    return getService().getValue(tableId, columnId, classPK);
1258            }
1259    
1260            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1261                    long companyId, long classNameId, java.lang.String tableName,
1262                    java.lang.String columnName, long classPK)
1263                    throws com.liferay.portal.kernel.exception.SystemException {
1264                    return getService()
1265                                       .getValue(companyId, classNameId, tableName, columnName,
1266                            classPK);
1267            }
1268    
1269            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1270                    long companyId, java.lang.String className, java.lang.String tableName,
1271                    java.lang.String columnName, long classPK)
1272                    throws com.liferay.portal.kernel.exception.SystemException {
1273                    return getService()
1274                                       .getValue(companyId, className, tableName, columnName,
1275                            classPK);
1276            }
1277    
1278            public static ExpandoValueLocalService getService() {
1279                    if (_service == null) {
1280                            _service = (ExpandoValueLocalService)PortalBeanLocatorUtil.locate(ExpandoValueLocalService.class.getName());
1281                    }
1282    
1283                    return _service;
1284            }
1285    
1286            public void setService(ExpandoValueLocalService service) {
1287                    _service = service;
1288            }
1289    
1290            private static ExpandoValueLocalService _service;
1291    }