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