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