001    /**
002     * Copyright (c) 2000-2013 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.
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.
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.
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            * Updates the expando value in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
239            *
240            * @param expandoValue the expando value
241            * @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.
242            * @return the expando value that was updated
243            * @throws SystemException if a system exception occurred
244            */
245            public static com.liferay.portlet.expando.model.ExpandoValue updateExpandoValue(
246                    com.liferay.portlet.expando.model.ExpandoValue expandoValue,
247                    boolean merge)
248                    throws com.liferay.portal.kernel.exception.SystemException {
249                    return getService().updateExpandoValue(expandoValue, merge);
250            }
251    
252            /**
253            * Returns the Spring bean ID for this bean.
254            *
255            * @return the Spring bean ID for this bean
256            */
257            public static java.lang.String getBeanIdentifier() {
258                    return getService().getBeanIdentifier();
259            }
260    
261            /**
262            * Sets the Spring bean ID for this bean.
263            *
264            * @param beanIdentifier the Spring bean ID for this bean
265            */
266            public static void setBeanIdentifier(java.lang.String beanIdentifier) {
267                    getService().setBeanIdentifier(beanIdentifier);
268            }
269    
270            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
271                    long classNameId, long tableId, long columnId, long classPK,
272                    java.lang.String data)
273                    throws com.liferay.portal.kernel.exception.PortalException,
274                            com.liferay.portal.kernel.exception.SystemException {
275                    return getService()
276                                       .addValue(classNameId, tableId, columnId, classPK, data);
277            }
278    
279            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
280                    long companyId, java.lang.String className, java.lang.String tableName,
281                    java.lang.String columnName, long classPK, boolean data)
282                    throws com.liferay.portal.kernel.exception.PortalException,
283                            com.liferay.portal.kernel.exception.SystemException {
284                    return getService()
285                                       .addValue(companyId, className, tableName, columnName,
286                            classPK, data);
287            }
288    
289            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
290                    long companyId, java.lang.String className, java.lang.String tableName,
291                    java.lang.String columnName, long classPK, boolean[] data)
292                    throws com.liferay.portal.kernel.exception.PortalException,
293                            com.liferay.portal.kernel.exception.SystemException {
294                    return getService()
295                                       .addValue(companyId, className, tableName, columnName,
296                            classPK, data);
297            }
298    
299            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
300                    long companyId, java.lang.String className, java.lang.String tableName,
301                    java.lang.String columnName, long classPK, java.util.Date data)
302                    throws com.liferay.portal.kernel.exception.PortalException,
303                            com.liferay.portal.kernel.exception.SystemException {
304                    return getService()
305                                       .addValue(companyId, className, tableName, columnName,
306                            classPK, data);
307            }
308    
309            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
310                    long companyId, java.lang.String className, java.lang.String tableName,
311                    java.lang.String columnName, long classPK, java.util.Date[] data)
312                    throws com.liferay.portal.kernel.exception.PortalException,
313                            com.liferay.portal.kernel.exception.SystemException {
314                    return getService()
315                                       .addValue(companyId, className, tableName, columnName,
316                            classPK, data);
317            }
318    
319            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
320                    long companyId, java.lang.String className, java.lang.String tableName,
321                    java.lang.String columnName, long classPK, double data)
322                    throws com.liferay.portal.kernel.exception.PortalException,
323                            com.liferay.portal.kernel.exception.SystemException {
324                    return getService()
325                                       .addValue(companyId, className, tableName, columnName,
326                            classPK, data);
327            }
328    
329            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
330                    long companyId, java.lang.String className, java.lang.String tableName,
331                    java.lang.String columnName, long classPK, double[] data)
332                    throws com.liferay.portal.kernel.exception.PortalException,
333                            com.liferay.portal.kernel.exception.SystemException {
334                    return getService()
335                                       .addValue(companyId, className, tableName, columnName,
336                            classPK, data);
337            }
338    
339            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
340                    long companyId, java.lang.String className, java.lang.String tableName,
341                    java.lang.String columnName, long classPK, float data)
342                    throws com.liferay.portal.kernel.exception.PortalException,
343                            com.liferay.portal.kernel.exception.SystemException {
344                    return getService()
345                                       .addValue(companyId, className, tableName, columnName,
346                            classPK, data);
347            }
348    
349            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
350                    long companyId, java.lang.String className, java.lang.String tableName,
351                    java.lang.String columnName, long classPK, float[] data)
352                    throws com.liferay.portal.kernel.exception.PortalException,
353                            com.liferay.portal.kernel.exception.SystemException {
354                    return getService()
355                                       .addValue(companyId, className, tableName, columnName,
356                            classPK, data);
357            }
358    
359            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
360                    long companyId, java.lang.String className, java.lang.String tableName,
361                    java.lang.String columnName, long classPK, int data)
362                    throws com.liferay.portal.kernel.exception.PortalException,
363                            com.liferay.portal.kernel.exception.SystemException {
364                    return getService()
365                                       .addValue(companyId, className, tableName, columnName,
366                            classPK, data);
367            }
368    
369            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
370                    long companyId, java.lang.String className, java.lang.String tableName,
371                    java.lang.String columnName, long classPK, int[] data)
372                    throws com.liferay.portal.kernel.exception.PortalException,
373                            com.liferay.portal.kernel.exception.SystemException {
374                    return getService()
375                                       .addValue(companyId, className, tableName, columnName,
376                            classPK, data);
377            }
378    
379            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
380                    long companyId, java.lang.String className, java.lang.String tableName,
381                    java.lang.String columnName, long classPK, long data)
382                    throws com.liferay.portal.kernel.exception.PortalException,
383                            com.liferay.portal.kernel.exception.SystemException {
384                    return getService()
385                                       .addValue(companyId, className, tableName, columnName,
386                            classPK, data);
387            }
388    
389            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
390                    long companyId, java.lang.String className, java.lang.String tableName,
391                    java.lang.String columnName, long classPK, long[] data)
392                    throws com.liferay.portal.kernel.exception.PortalException,
393                            com.liferay.portal.kernel.exception.SystemException {
394                    return getService()
395                                       .addValue(companyId, className, tableName, columnName,
396                            classPK, data);
397            }
398    
399            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
400                    long companyId, java.lang.String className, java.lang.String tableName,
401                    java.lang.String columnName, long classPK, java.lang.Number data)
402                    throws com.liferay.portal.kernel.exception.PortalException,
403                            com.liferay.portal.kernel.exception.SystemException {
404                    return getService()
405                                       .addValue(companyId, className, tableName, columnName,
406                            classPK, data);
407            }
408    
409            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
410                    long companyId, java.lang.String className, java.lang.String tableName,
411                    java.lang.String columnName, long classPK, java.lang.Number[] data)
412                    throws com.liferay.portal.kernel.exception.PortalException,
413                            com.liferay.portal.kernel.exception.SystemException {
414                    return getService()
415                                       .addValue(companyId, className, tableName, columnName,
416                            classPK, data);
417            }
418    
419            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
420                    long companyId, java.lang.String className, java.lang.String tableName,
421                    java.lang.String columnName, long classPK, java.lang.Object data)
422                    throws com.liferay.portal.kernel.exception.PortalException,
423                            com.liferay.portal.kernel.exception.SystemException {
424                    return getService()
425                                       .addValue(companyId, className, tableName, columnName,
426                            classPK, data);
427            }
428    
429            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
430                    long companyId, java.lang.String className, java.lang.String tableName,
431                    java.lang.String columnName, long classPK, short data)
432                    throws com.liferay.portal.kernel.exception.PortalException,
433                            com.liferay.portal.kernel.exception.SystemException {
434                    return getService()
435                                       .addValue(companyId, className, tableName, columnName,
436                            classPK, data);
437            }
438    
439            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
440                    long companyId, java.lang.String className, java.lang.String tableName,
441                    java.lang.String columnName, long classPK, short[] data)
442                    throws com.liferay.portal.kernel.exception.PortalException,
443                            com.liferay.portal.kernel.exception.SystemException {
444                    return getService()
445                                       .addValue(companyId, className, tableName, columnName,
446                            classPK, data);
447            }
448    
449            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
450                    long companyId, java.lang.String className, java.lang.String tableName,
451                    java.lang.String columnName, long classPK, java.lang.String data)
452                    throws com.liferay.portal.kernel.exception.PortalException,
453                            com.liferay.portal.kernel.exception.SystemException {
454                    return getService()
455                                       .addValue(companyId, className, tableName, columnName,
456                            classPK, data);
457            }
458    
459            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
460                    long companyId, java.lang.String className, java.lang.String tableName,
461                    java.lang.String columnName, long classPK, java.lang.String[] data)
462                    throws com.liferay.portal.kernel.exception.PortalException,
463                            com.liferay.portal.kernel.exception.SystemException {
464                    return getService()
465                                       .addValue(companyId, className, tableName, columnName,
466                            classPK, data);
467            }
468    
469            /**
470            * @deprecated {@link #addValue(long, String, String, String, long,
471            boolean[])}
472            */
473            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
474                    java.lang.String className, java.lang.String tableName,
475                    java.lang.String columnName, long classPK, boolean data)
476                    throws com.liferay.portal.kernel.exception.PortalException,
477                            com.liferay.portal.kernel.exception.SystemException {
478                    return getService()
479                                       .addValue(className, tableName, columnName, classPK, data);
480            }
481    
482            /**
483            * @deprecated {@link #addValue(long, String, String, String, long,
484            boolean[])}
485            */
486            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
487                    java.lang.String className, java.lang.String tableName,
488                    java.lang.String columnName, long classPK, boolean[] data)
489                    throws com.liferay.portal.kernel.exception.PortalException,
490                            com.liferay.portal.kernel.exception.SystemException {
491                    return getService()
492                                       .addValue(className, tableName, columnName, classPK, data);
493            }
494    
495            /**
496            * @deprecated {@link #addValue(long, String, String, String, long, Date[])}
497            */
498            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
499                    java.lang.String className, java.lang.String tableName,
500                    java.lang.String columnName, long classPK, java.util.Date data)
501                    throws com.liferay.portal.kernel.exception.PortalException,
502                            com.liferay.portal.kernel.exception.SystemException {
503                    return getService()
504                                       .addValue(className, tableName, columnName, classPK, data);
505            }
506    
507            /**
508            * @deprecated {@link #addValue(long, String, String, String, long, Date[])}
509            */
510            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
511                    java.lang.String className, java.lang.String tableName,
512                    java.lang.String columnName, long classPK, java.util.Date[] data)
513                    throws com.liferay.portal.kernel.exception.PortalException,
514                            com.liferay.portal.kernel.exception.SystemException {
515                    return getService()
516                                       .addValue(className, tableName, columnName, classPK, data);
517            }
518    
519            /**
520            * @deprecated {@link #addValue(long, String, String, String, long,
521            double[])}
522            */
523            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
524                    java.lang.String className, java.lang.String tableName,
525                    java.lang.String columnName, long classPK, double data)
526                    throws com.liferay.portal.kernel.exception.PortalException,
527                            com.liferay.portal.kernel.exception.SystemException {
528                    return getService()
529                                       .addValue(className, tableName, columnName, classPK, data);
530            }
531    
532            /**
533            * @deprecated {@link #addValue(long, String, String, String, long,
534            double[])}
535            */
536            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
537                    java.lang.String className, java.lang.String tableName,
538                    java.lang.String columnName, long classPK, double[] data)
539                    throws com.liferay.portal.kernel.exception.PortalException,
540                            com.liferay.portal.kernel.exception.SystemException {
541                    return getService()
542                                       .addValue(className, tableName, columnName, classPK, data);
543            }
544    
545            /**
546            * @deprecated {@link #addValue(long, String, String, String, long,
547            float[])}
548            */
549            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
550                    java.lang.String className, java.lang.String tableName,
551                    java.lang.String columnName, long classPK, float data)
552                    throws com.liferay.portal.kernel.exception.PortalException,
553                            com.liferay.portal.kernel.exception.SystemException {
554                    return getService()
555                                       .addValue(className, tableName, columnName, classPK, data);
556            }
557    
558            /**
559            * @deprecated {@link #addValue(long, String, String, String, long,
560            float[])}
561            */
562            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
563                    java.lang.String className, java.lang.String tableName,
564                    java.lang.String columnName, long classPK, float[] data)
565                    throws com.liferay.portal.kernel.exception.PortalException,
566                            com.liferay.portal.kernel.exception.SystemException {
567                    return getService()
568                                       .addValue(className, tableName, columnName, classPK, data);
569            }
570    
571            /**
572            * @deprecated {@link #addValue(long, String, String, String, long, int[])}
573            */
574            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
575                    java.lang.String className, java.lang.String tableName,
576                    java.lang.String columnName, long classPK, int data)
577                    throws com.liferay.portal.kernel.exception.PortalException,
578                            com.liferay.portal.kernel.exception.SystemException {
579                    return getService()
580                                       .addValue(className, tableName, columnName, classPK, data);
581            }
582    
583            /**
584            * @deprecated {@link #addValue(long, String, String, String, long, int[])}
585            */
586            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
587                    java.lang.String className, java.lang.String tableName,
588                    java.lang.String columnName, long classPK, int[] data)
589                    throws com.liferay.portal.kernel.exception.PortalException,
590                            com.liferay.portal.kernel.exception.SystemException {
591                    return getService()
592                                       .addValue(className, tableName, columnName, classPK, data);
593            }
594    
595            /**
596            * @deprecated {@link #addValue(long, String, String, String, long, long[])}
597            */
598            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
599                    java.lang.String className, java.lang.String tableName,
600                    java.lang.String columnName, long classPK, long data)
601                    throws com.liferay.portal.kernel.exception.PortalException,
602                            com.liferay.portal.kernel.exception.SystemException {
603                    return getService()
604                                       .addValue(className, tableName, columnName, classPK, data);
605            }
606    
607            /**
608            * @deprecated {@link #addValue(long, String, String, String, long, long[])}
609            */
610            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
611                    java.lang.String className, java.lang.String tableName,
612                    java.lang.String columnName, long classPK, long[] data)
613                    throws com.liferay.portal.kernel.exception.PortalException,
614                            com.liferay.portal.kernel.exception.SystemException {
615                    return getService()
616                                       .addValue(className, tableName, columnName, classPK, data);
617            }
618    
619            /**
620            * @deprecated {@link #addValue(long, String, String, String, long, Object)}
621            */
622            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
623                    java.lang.String className, java.lang.String tableName,
624                    java.lang.String columnName, long classPK, java.lang.Object data)
625                    throws com.liferay.portal.kernel.exception.PortalException,
626                            com.liferay.portal.kernel.exception.SystemException {
627                    return getService()
628                                       .addValue(className, tableName, columnName, classPK, data);
629            }
630    
631            /**
632            * @deprecated {@link #addValue(long, String, String, String, long,
633            short[])}
634            */
635            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
636                    java.lang.String className, java.lang.String tableName,
637                    java.lang.String columnName, long classPK, short data)
638                    throws com.liferay.portal.kernel.exception.PortalException,
639                            com.liferay.portal.kernel.exception.SystemException {
640                    return getService()
641                                       .addValue(className, tableName, columnName, classPK, data);
642            }
643    
644            /**
645            * @deprecated {@link #addValue(long, String, String, String, long,
646            short[])}
647            */
648            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
649                    java.lang.String className, java.lang.String tableName,
650                    java.lang.String columnName, long classPK, short[] data)
651                    throws com.liferay.portal.kernel.exception.PortalException,
652                            com.liferay.portal.kernel.exception.SystemException {
653                    return getService()
654                                       .addValue(className, tableName, columnName, classPK, data);
655            }
656    
657            /**
658            * @deprecated {@link #addValue(long, String, String, String, long,
659            String[])}
660            */
661            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
662                    java.lang.String className, java.lang.String tableName,
663                    java.lang.String columnName, long classPK, java.lang.String data)
664                    throws com.liferay.portal.kernel.exception.PortalException,
665                            com.liferay.portal.kernel.exception.SystemException {
666                    return getService()
667                                       .addValue(className, tableName, columnName, classPK, data);
668            }
669    
670            /**
671            * @deprecated {@link #addValue(long, String, String, String, long,
672            String[])}
673            */
674            public static com.liferay.portlet.expando.model.ExpandoValue addValue(
675                    java.lang.String className, java.lang.String tableName,
676                    java.lang.String columnName, long classPK, java.lang.String[] data)
677                    throws com.liferay.portal.kernel.exception.PortalException,
678                            com.liferay.portal.kernel.exception.SystemException {
679                    return getService()
680                                       .addValue(className, tableName, columnName, classPK, data);
681            }
682    
683            public static void addValues(long classNameId, long tableId,
684                    java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> columns,
685                    long classPK, java.util.Map<java.lang.String, java.lang.String> data)
686                    throws com.liferay.portal.kernel.exception.PortalException,
687                            com.liferay.portal.kernel.exception.SystemException {
688                    getService().addValues(classNameId, tableId, columns, classPK, data);
689            }
690    
691            public static void addValues(long companyId, long classNameId,
692                    java.lang.String tableName, long classPK,
693                    java.util.Map<java.lang.String, java.io.Serializable> attributes)
694                    throws com.liferay.portal.kernel.exception.PortalException,
695                            com.liferay.portal.kernel.exception.SystemException {
696                    getService()
697                            .addValues(companyId, classNameId, tableName, classPK, attributes);
698            }
699    
700            public static void addValues(long companyId, java.lang.String className,
701                    java.lang.String tableName, long classPK,
702                    java.util.Map<java.lang.String, java.io.Serializable> attributes)
703                    throws com.liferay.portal.kernel.exception.PortalException,
704                            com.liferay.portal.kernel.exception.SystemException {
705                    getService()
706                            .addValues(companyId, className, tableName, classPK, attributes);
707            }
708    
709            public static void deleteColumnValues(long columnId)
710                    throws com.liferay.portal.kernel.exception.SystemException {
711                    getService().deleteColumnValues(columnId);
712            }
713    
714            public static void deleteRowValues(long rowId)
715                    throws com.liferay.portal.kernel.exception.SystemException {
716                    getService().deleteRowValues(rowId);
717            }
718    
719            public static void deleteTableValues(long tableId)
720                    throws com.liferay.portal.kernel.exception.SystemException {
721                    getService().deleteTableValues(tableId);
722            }
723    
724            public static void deleteValue(
725                    com.liferay.portlet.expando.model.ExpandoValue value)
726                    throws com.liferay.portal.kernel.exception.SystemException {
727                    getService().deleteValue(value);
728            }
729    
730            public static void deleteValue(long valueId)
731                    throws com.liferay.portal.kernel.exception.PortalException,
732                            com.liferay.portal.kernel.exception.SystemException {
733                    getService().deleteValue(valueId);
734            }
735    
736            public static void deleteValue(long columnId, long rowId)
737                    throws com.liferay.portal.kernel.exception.PortalException,
738                            com.liferay.portal.kernel.exception.SystemException {
739                    getService().deleteValue(columnId, rowId);
740            }
741    
742            public static void deleteValue(long companyId, long classNameId,
743                    java.lang.String tableName, java.lang.String columnName, long classPK)
744                    throws com.liferay.portal.kernel.exception.PortalException,
745                            com.liferay.portal.kernel.exception.SystemException {
746                    getService()
747                            .deleteValue(companyId, classNameId, tableName, columnName, classPK);
748            }
749    
750            public static void deleteValue(long companyId, java.lang.String className,
751                    java.lang.String tableName, java.lang.String columnName, long classPK)
752                    throws com.liferay.portal.kernel.exception.PortalException,
753                            com.liferay.portal.kernel.exception.SystemException {
754                    getService()
755                            .deleteValue(companyId, className, tableName, columnName, classPK);
756            }
757    
758            public static void deleteValues(long classNameId, long classPK)
759                    throws com.liferay.portal.kernel.exception.SystemException {
760                    getService().deleteValues(classNameId, classPK);
761            }
762    
763            public static void deleteValues(java.lang.String className, long classPK)
764                    throws com.liferay.portal.kernel.exception.SystemException {
765                    getService().deleteValues(className, classPK);
766            }
767    
768            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
769                    long columnId, int start, int end)
770                    throws com.liferay.portal.kernel.exception.SystemException {
771                    return getService().getColumnValues(columnId, start, end);
772            }
773    
774            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
775                    long companyId, long classNameId, java.lang.String tableName,
776                    java.lang.String columnName, int start, int end)
777                    throws com.liferay.portal.kernel.exception.SystemException {
778                    return getService()
779                                       .getColumnValues(companyId, classNameId, tableName,
780                            columnName, start, end);
781            }
782    
783            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
784                    long companyId, long classNameId, java.lang.String tableName,
785                    java.lang.String columnName, java.lang.String data, int start, int end)
786                    throws com.liferay.portal.kernel.exception.SystemException {
787                    return getService()
788                                       .getColumnValues(companyId, classNameId, tableName,
789                            columnName, data, start, end);
790            }
791    
792            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
793                    long companyId, java.lang.String className, java.lang.String tableName,
794                    java.lang.String columnName, int start, int end)
795                    throws com.liferay.portal.kernel.exception.SystemException {
796                    return getService()
797                                       .getColumnValues(companyId, className, tableName,
798                            columnName, start, end);
799            }
800    
801            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
802                    long companyId, java.lang.String className, java.lang.String tableName,
803                    java.lang.String columnName, java.lang.String data, int start, int end)
804                    throws com.liferay.portal.kernel.exception.SystemException {
805                    return getService()
806                                       .getColumnValues(companyId, className, tableName,
807                            columnName, data, start, end);
808            }
809    
810            /**
811            * @deprecated {@link #getColumnValues(long, String, String, String, String,
812            int, int)}
813            */
814            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getColumnValues(
815                    java.lang.String className, java.lang.String tableName,
816                    java.lang.String columnName, java.lang.String data, int start, int end)
817                    throws com.liferay.portal.kernel.exception.SystemException {
818                    return getService()
819                                       .getColumnValues(className, tableName, columnName, data,
820                            start, end);
821            }
822    
823            public static int getColumnValuesCount(long columnId)
824                    throws com.liferay.portal.kernel.exception.SystemException {
825                    return getService().getColumnValuesCount(columnId);
826            }
827    
828            public static int getColumnValuesCount(long companyId, long classNameId,
829                    java.lang.String tableName, java.lang.String columnName)
830                    throws com.liferay.portal.kernel.exception.SystemException {
831                    return getService()
832                                       .getColumnValuesCount(companyId, classNameId, tableName,
833                            columnName);
834            }
835    
836            public static int getColumnValuesCount(long companyId, long classNameId,
837                    java.lang.String tableName, java.lang.String columnName,
838                    java.lang.String data)
839                    throws com.liferay.portal.kernel.exception.SystemException {
840                    return getService()
841                                       .getColumnValuesCount(companyId, classNameId, tableName,
842                            columnName, data);
843            }
844    
845            public static int getColumnValuesCount(long companyId,
846                    java.lang.String className, java.lang.String tableName,
847                    java.lang.String columnName)
848                    throws com.liferay.portal.kernel.exception.SystemException {
849                    return getService()
850                                       .getColumnValuesCount(companyId, className, tableName,
851                            columnName);
852            }
853    
854            public static int getColumnValuesCount(long companyId,
855                    java.lang.String className, java.lang.String tableName,
856                    java.lang.String columnName, java.lang.String data)
857                    throws com.liferay.portal.kernel.exception.SystemException {
858                    return getService()
859                                       .getColumnValuesCount(companyId, className, tableName,
860                            columnName, data);
861            }
862    
863            /**
864            * @deprecated {@link #getColumnValuesCount(long, String, String, String,
865            String)}
866            */
867            public static int getColumnValuesCount(java.lang.String className,
868                    java.lang.String tableName, java.lang.String columnName,
869                    java.lang.String data)
870                    throws com.liferay.portal.kernel.exception.SystemException {
871                    return getService()
872                                       .getColumnValuesCount(className, tableName, columnName, data);
873            }
874    
875            public static java.util.Map<java.lang.String, java.io.Serializable> getData(
876                    long companyId, java.lang.String className, java.lang.String tableName,
877                    java.util.Collection<java.lang.String> columnNames, long classPK)
878                    throws com.liferay.portal.kernel.exception.PortalException,
879                            com.liferay.portal.kernel.exception.SystemException {
880                    return getService()
881                                       .getData(companyId, className, tableName, columnNames,
882                            classPK);
883            }
884    
885            public static java.io.Serializable getData(long companyId,
886                    java.lang.String className, java.lang.String tableName,
887                    java.lang.String columnName, long classPK)
888                    throws com.liferay.portal.kernel.exception.PortalException,
889                            com.liferay.portal.kernel.exception.SystemException {
890                    return getService()
891                                       .getData(companyId, className, tableName, columnName, classPK);
892            }
893    
894            public static boolean getData(long companyId, java.lang.String className,
895                    java.lang.String tableName, java.lang.String columnName, long classPK,
896                    boolean defaultData)
897                    throws com.liferay.portal.kernel.exception.PortalException,
898                            com.liferay.portal.kernel.exception.SystemException {
899                    return getService()
900                                       .getData(companyId, className, tableName, columnName,
901                            classPK, defaultData);
902            }
903    
904            public static boolean[] getData(long companyId, java.lang.String className,
905                    java.lang.String tableName, java.lang.String columnName, long classPK,
906                    boolean[] defaultData)
907                    throws com.liferay.portal.kernel.exception.PortalException,
908                            com.liferay.portal.kernel.exception.SystemException {
909                    return getService()
910                                       .getData(companyId, className, tableName, columnName,
911                            classPK, defaultData);
912            }
913    
914            public static java.util.Date getData(long companyId,
915                    java.lang.String className, java.lang.String tableName,
916                    java.lang.String columnName, long classPK, java.util.Date defaultData)
917                    throws com.liferay.portal.kernel.exception.PortalException,
918                            com.liferay.portal.kernel.exception.SystemException {
919                    return getService()
920                                       .getData(companyId, className, tableName, columnName,
921                            classPK, defaultData);
922            }
923    
924            public static java.util.Date[] getData(long companyId,
925                    java.lang.String className, java.lang.String tableName,
926                    java.lang.String columnName, long classPK, java.util.Date[] defaultData)
927                    throws com.liferay.portal.kernel.exception.PortalException,
928                            com.liferay.portal.kernel.exception.SystemException {
929                    return getService()
930                                       .getData(companyId, className, tableName, columnName,
931                            classPK, defaultData);
932            }
933    
934            public static double getData(long companyId, java.lang.String className,
935                    java.lang.String tableName, java.lang.String columnName, long classPK,
936                    double defaultData)
937                    throws com.liferay.portal.kernel.exception.PortalException,
938                            com.liferay.portal.kernel.exception.SystemException {
939                    return getService()
940                                       .getData(companyId, className, tableName, columnName,
941                            classPK, defaultData);
942            }
943    
944            public static double[] getData(long companyId, java.lang.String className,
945                    java.lang.String tableName, java.lang.String columnName, long classPK,
946                    double[] defaultData)
947                    throws com.liferay.portal.kernel.exception.PortalException,
948                            com.liferay.portal.kernel.exception.SystemException {
949                    return getService()
950                                       .getData(companyId, className, tableName, columnName,
951                            classPK, defaultData);
952            }
953    
954            public static float getData(long companyId, java.lang.String className,
955                    java.lang.String tableName, java.lang.String columnName, long classPK,
956                    float defaultData)
957                    throws com.liferay.portal.kernel.exception.PortalException,
958                            com.liferay.portal.kernel.exception.SystemException {
959                    return getService()
960                                       .getData(companyId, className, tableName, columnName,
961                            classPK, defaultData);
962            }
963    
964            public static float[] getData(long companyId, java.lang.String className,
965                    java.lang.String tableName, java.lang.String columnName, long classPK,
966                    float[] defaultData)
967                    throws com.liferay.portal.kernel.exception.PortalException,
968                            com.liferay.portal.kernel.exception.SystemException {
969                    return getService()
970                                       .getData(companyId, className, tableName, columnName,
971                            classPK, defaultData);
972            }
973    
974            public static int getData(long companyId, java.lang.String className,
975                    java.lang.String tableName, java.lang.String columnName, long classPK,
976                    int defaultData)
977                    throws com.liferay.portal.kernel.exception.PortalException,
978                            com.liferay.portal.kernel.exception.SystemException {
979                    return getService()
980                                       .getData(companyId, className, tableName, columnName,
981                            classPK, defaultData);
982            }
983    
984            public static int[] getData(long companyId, java.lang.String className,
985                    java.lang.String tableName, java.lang.String columnName, long classPK,
986                    int[] defaultData)
987                    throws com.liferay.portal.kernel.exception.PortalException,
988                            com.liferay.portal.kernel.exception.SystemException {
989                    return getService()
990                                       .getData(companyId, className, tableName, columnName,
991                            classPK, defaultData);
992            }
993    
994            public static long getData(long companyId, java.lang.String className,
995                    java.lang.String tableName, java.lang.String columnName, long classPK,
996                    long defaultData)
997                    throws com.liferay.portal.kernel.exception.PortalException,
998                            com.liferay.portal.kernel.exception.SystemException {
999                    return getService()
1000                                       .getData(companyId, className, tableName, columnName,
1001                            classPK, defaultData);
1002            }
1003    
1004            public static long[] getData(long companyId, java.lang.String className,
1005                    java.lang.String tableName, java.lang.String columnName, long classPK,
1006                    long[] defaultData)
1007                    throws com.liferay.portal.kernel.exception.PortalException,
1008                            com.liferay.portal.kernel.exception.SystemException {
1009                    return getService()
1010                                       .getData(companyId, className, tableName, columnName,
1011                            classPK, defaultData);
1012            }
1013    
1014            public static java.lang.Number getData(long companyId,
1015                    java.lang.String className, java.lang.String tableName,
1016                    java.lang.String columnName, long classPK, java.lang.Number defaultData)
1017                    throws com.liferay.portal.kernel.exception.PortalException,
1018                            com.liferay.portal.kernel.exception.SystemException {
1019                    return getService()
1020                                       .getData(companyId, className, tableName, columnName,
1021                            classPK, defaultData);
1022            }
1023    
1024            public static java.lang.Number[] getData(long companyId,
1025                    java.lang.String className, java.lang.String tableName,
1026                    java.lang.String columnName, long classPK,
1027                    java.lang.Number[] defaultData)
1028                    throws com.liferay.portal.kernel.exception.PortalException,
1029                            com.liferay.portal.kernel.exception.SystemException {
1030                    return getService()
1031                                       .getData(companyId, className, tableName, columnName,
1032                            classPK, defaultData);
1033            }
1034    
1035            public static short getData(long companyId, java.lang.String className,
1036                    java.lang.String tableName, java.lang.String columnName, long classPK,
1037                    short defaultData)
1038                    throws com.liferay.portal.kernel.exception.PortalException,
1039                            com.liferay.portal.kernel.exception.SystemException {
1040                    return getService()
1041                                       .getData(companyId, className, tableName, columnName,
1042                            classPK, defaultData);
1043            }
1044    
1045            public static short[] getData(long companyId, java.lang.String className,
1046                    java.lang.String tableName, java.lang.String columnName, long classPK,
1047                    short[] defaultData)
1048                    throws com.liferay.portal.kernel.exception.PortalException,
1049                            com.liferay.portal.kernel.exception.SystemException {
1050                    return getService()
1051                                       .getData(companyId, className, tableName, columnName,
1052                            classPK, defaultData);
1053            }
1054    
1055            public static java.lang.String getData(long companyId,
1056                    java.lang.String className, java.lang.String tableName,
1057                    java.lang.String columnName, long classPK, java.lang.String defaultData)
1058                    throws com.liferay.portal.kernel.exception.PortalException,
1059                            com.liferay.portal.kernel.exception.SystemException {
1060                    return getService()
1061                                       .getData(companyId, className, tableName, columnName,
1062                            classPK, defaultData);
1063            }
1064    
1065            public static java.lang.String[] getData(long companyId,
1066                    java.lang.String className, java.lang.String tableName,
1067                    java.lang.String columnName, long classPK,
1068                    java.lang.String[] defaultData)
1069                    throws com.liferay.portal.kernel.exception.PortalException,
1070                            com.liferay.portal.kernel.exception.SystemException {
1071                    return getService()
1072                                       .getData(companyId, className, tableName, columnName,
1073                            classPK, defaultData);
1074            }
1075    
1076            /**
1077            * @deprecated {@link #getData(long, String, String, String, long)}
1078            */
1079            public static java.io.Serializable getData(java.lang.String className,
1080                    java.lang.String tableName, java.lang.String columnName, long classPK)
1081                    throws com.liferay.portal.kernel.exception.PortalException,
1082                            com.liferay.portal.kernel.exception.SystemException {
1083                    return getService().getData(className, tableName, columnName, classPK);
1084            }
1085    
1086            /**
1087            * @deprecated {@link #getData(long, String, String, String, long,
1088            boolean[])}
1089            */
1090            public static boolean getData(java.lang.String className,
1091                    java.lang.String tableName, java.lang.String columnName, long classPK,
1092                    boolean defaultData)
1093                    throws com.liferay.portal.kernel.exception.PortalException,
1094                            com.liferay.portal.kernel.exception.SystemException {
1095                    return getService()
1096                                       .getData(className, tableName, columnName, classPK,
1097                            defaultData);
1098            }
1099    
1100            /**
1101            * @deprecated {@link #getData(long, String, String, String, long,
1102            boolean[])}
1103            */
1104            public static boolean[] getData(java.lang.String className,
1105                    java.lang.String tableName, java.lang.String columnName, long classPK,
1106                    boolean[] defaultData)
1107                    throws com.liferay.portal.kernel.exception.PortalException,
1108                            com.liferay.portal.kernel.exception.SystemException {
1109                    return getService()
1110                                       .getData(className, tableName, columnName, classPK,
1111                            defaultData);
1112            }
1113    
1114            /**
1115            * @deprecated {@link #getData(long, String, String, String, long, Date[])}
1116            */
1117            public static java.util.Date getData(java.lang.String className,
1118                    java.lang.String tableName, java.lang.String columnName, long classPK,
1119                    java.util.Date defaultData)
1120                    throws com.liferay.portal.kernel.exception.PortalException,
1121                            com.liferay.portal.kernel.exception.SystemException {
1122                    return getService()
1123                                       .getData(className, tableName, columnName, classPK,
1124                            defaultData);
1125            }
1126    
1127            /**
1128            * @deprecated {@link #getData(long, String, String, String, long, Date[])}
1129            */
1130            public static java.util.Date[] getData(java.lang.String className,
1131                    java.lang.String tableName, java.lang.String columnName, long classPK,
1132                    java.util.Date[] defaultData)
1133                    throws com.liferay.portal.kernel.exception.PortalException,
1134                            com.liferay.portal.kernel.exception.SystemException {
1135                    return getService()
1136                                       .getData(className, tableName, columnName, classPK,
1137                            defaultData);
1138            }
1139    
1140            /**
1141            * @deprecated {@link #getData(long, String, String, String, long,
1142            double[])}
1143            */
1144            public static double getData(java.lang.String className,
1145                    java.lang.String tableName, java.lang.String columnName, long classPK,
1146                    double 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,
1156            double[])}
1157            */
1158            public static double[] getData(java.lang.String className,
1159                    java.lang.String tableName, java.lang.String columnName, long classPK,
1160                    double[] defaultData)
1161                    throws com.liferay.portal.kernel.exception.PortalException,
1162                            com.liferay.portal.kernel.exception.SystemException {
1163                    return getService()
1164                                       .getData(className, tableName, columnName, classPK,
1165                            defaultData);
1166            }
1167    
1168            /**
1169            * @deprecated {@link #getData(long, String, String, String, long, float[])}
1170            */
1171            public static float getData(java.lang.String className,
1172                    java.lang.String tableName, java.lang.String columnName, long classPK,
1173                    float defaultData)
1174                    throws com.liferay.portal.kernel.exception.PortalException,
1175                            com.liferay.portal.kernel.exception.SystemException {
1176                    return getService()
1177                                       .getData(className, tableName, columnName, classPK,
1178                            defaultData);
1179            }
1180    
1181            /**
1182            * @deprecated {@link #getData(long, String, String, String, long, float[])}
1183            */
1184            public static float[] getData(java.lang.String className,
1185                    java.lang.String tableName, java.lang.String columnName, long classPK,
1186                    float[] defaultData)
1187                    throws com.liferay.portal.kernel.exception.PortalException,
1188                            com.liferay.portal.kernel.exception.SystemException {
1189                    return getService()
1190                                       .getData(className, tableName, columnName, classPK,
1191                            defaultData);
1192            }
1193    
1194            /**
1195            * @deprecated {@link #getData(long, String, String, String, long, int[])}
1196            */
1197            public static int getData(java.lang.String className,
1198                    java.lang.String tableName, java.lang.String columnName, long classPK,
1199                    int defaultData)
1200                    throws com.liferay.portal.kernel.exception.PortalException,
1201                            com.liferay.portal.kernel.exception.SystemException {
1202                    return getService()
1203                                       .getData(className, tableName, columnName, classPK,
1204                            defaultData);
1205            }
1206    
1207            /**
1208            * @deprecated {@link #getData(long, String, String, String, long, int[])}
1209            */
1210            public static int[] getData(java.lang.String className,
1211                    java.lang.String tableName, java.lang.String columnName, long classPK,
1212                    int[] defaultData)
1213                    throws com.liferay.portal.kernel.exception.PortalException,
1214                            com.liferay.portal.kernel.exception.SystemException {
1215                    return getService()
1216                                       .getData(className, tableName, columnName, classPK,
1217                            defaultData);
1218            }
1219    
1220            /**
1221            * @deprecated {@link #getData(long, String, String, String, long, long[])}
1222            */
1223            public static long getData(java.lang.String className,
1224                    java.lang.String tableName, java.lang.String columnName, long classPK,
1225                    long 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, long[])}
1235            */
1236            public static long[] getData(java.lang.String className,
1237                    java.lang.String tableName, java.lang.String columnName, long classPK,
1238                    long[] defaultData)
1239                    throws com.liferay.portal.kernel.exception.PortalException,
1240                            com.liferay.portal.kernel.exception.SystemException {
1241                    return getService()
1242                                       .getData(className, tableName, columnName, classPK,
1243                            defaultData);
1244            }
1245    
1246            /**
1247            * @deprecated {@link #getData(long, String, String, String, long, short[])}
1248            */
1249            public static short getData(java.lang.String className,
1250                    java.lang.String tableName, java.lang.String columnName, long classPK,
1251                    short defaultData)
1252                    throws com.liferay.portal.kernel.exception.PortalException,
1253                            com.liferay.portal.kernel.exception.SystemException {
1254                    return getService()
1255                                       .getData(className, tableName, columnName, classPK,
1256                            defaultData);
1257            }
1258    
1259            /**
1260            * @deprecated {@link #getData(long, String, String, String, long, short[])}
1261            */
1262            public static short[] getData(java.lang.String className,
1263                    java.lang.String tableName, java.lang.String columnName, long classPK,
1264                    short[] defaultData)
1265                    throws com.liferay.portal.kernel.exception.PortalException,
1266                            com.liferay.portal.kernel.exception.SystemException {
1267                    return getService()
1268                                       .getData(className, tableName, columnName, classPK,
1269                            defaultData);
1270            }
1271    
1272            /**
1273            * @deprecated {@link #getData(long, String, String, String, long,
1274            String[])}
1275            */
1276            public static java.lang.String getData(java.lang.String className,
1277                    java.lang.String tableName, java.lang.String columnName, long classPK,
1278                    java.lang.String defaultData)
1279                    throws com.liferay.portal.kernel.exception.PortalException,
1280                            com.liferay.portal.kernel.exception.SystemException {
1281                    return getService()
1282                                       .getData(className, tableName, columnName, classPK,
1283                            defaultData);
1284            }
1285    
1286            /**
1287            * @deprecated {@link #getData(long, String, String, String, long,
1288            String[])}
1289            */
1290            public static java.lang.String[] getData(java.lang.String className,
1291                    java.lang.String tableName, java.lang.String columnName, long classPK,
1292                    java.lang.String[] defaultData)
1293                    throws com.liferay.portal.kernel.exception.PortalException,
1294                            com.liferay.portal.kernel.exception.SystemException {
1295                    return getService()
1296                                       .getData(className, tableName, columnName, classPK,
1297                            defaultData);
1298            }
1299    
1300            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getDefaultTableColumnValues(
1301                    long companyId, long classNameId, java.lang.String columnName,
1302                    int start, int end)
1303                    throws com.liferay.portal.kernel.exception.SystemException {
1304                    return getService()
1305                                       .getDefaultTableColumnValues(companyId, classNameId,
1306                            columnName, start, end);
1307            }
1308    
1309            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getDefaultTableColumnValues(
1310                    long companyId, java.lang.String className,
1311                    java.lang.String columnName, int start, int end)
1312                    throws com.liferay.portal.kernel.exception.SystemException {
1313                    return getService()
1314                                       .getDefaultTableColumnValues(companyId, className,
1315                            columnName, start, end);
1316            }
1317    
1318            public static int getDefaultTableColumnValuesCount(long companyId,
1319                    long classNameId, java.lang.String columnName)
1320                    throws com.liferay.portal.kernel.exception.SystemException {
1321                    return getService()
1322                                       .getDefaultTableColumnValuesCount(companyId, classNameId,
1323                            columnName);
1324            }
1325    
1326            public static int getDefaultTableColumnValuesCount(long companyId,
1327                    java.lang.String className, java.lang.String columnName)
1328                    throws com.liferay.portal.kernel.exception.SystemException {
1329                    return getService()
1330                                       .getDefaultTableColumnValuesCount(companyId, className,
1331                            columnName);
1332            }
1333    
1334            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
1335                    long rowId) throws com.liferay.portal.kernel.exception.SystemException {
1336                    return getService().getRowValues(rowId);
1337            }
1338    
1339            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
1340                    long rowId, int start, int end)
1341                    throws com.liferay.portal.kernel.exception.SystemException {
1342                    return getService().getRowValues(rowId, start, end);
1343            }
1344    
1345            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
1346                    long companyId, long classNameId, java.lang.String tableName,
1347                    long classPK, int start, int end)
1348                    throws com.liferay.portal.kernel.exception.SystemException {
1349                    return getService()
1350                                       .getRowValues(companyId, classNameId, tableName, classPK,
1351                            start, end);
1352            }
1353    
1354            public static java.util.List<com.liferay.portlet.expando.model.ExpandoValue> getRowValues(
1355                    long companyId, java.lang.String className, java.lang.String tableName,
1356                    long classPK, int start, int end)
1357                    throws com.liferay.portal.kernel.exception.SystemException {
1358                    return getService()
1359                                       .getRowValues(companyId, className, tableName, classPK,
1360                            start, end);
1361            }
1362    
1363            public static int getRowValuesCount(long rowId)
1364                    throws com.liferay.portal.kernel.exception.SystemException {
1365                    return getService().getRowValuesCount(rowId);
1366            }
1367    
1368            public static int getRowValuesCount(long companyId, long classNameId,
1369                    java.lang.String tableName, long classPK)
1370                    throws com.liferay.portal.kernel.exception.SystemException {
1371                    return getService()
1372                                       .getRowValuesCount(companyId, classNameId, tableName, classPK);
1373            }
1374    
1375            public static int getRowValuesCount(long companyId,
1376                    java.lang.String className, java.lang.String tableName, long classPK)
1377                    throws com.liferay.portal.kernel.exception.SystemException {
1378                    return getService()
1379                                       .getRowValuesCount(companyId, className, tableName, classPK);
1380            }
1381    
1382            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1383                    long valueId)
1384                    throws com.liferay.portal.kernel.exception.PortalException,
1385                            com.liferay.portal.kernel.exception.SystemException {
1386                    return getService().getValue(valueId);
1387            }
1388    
1389            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1390                    long columnId, long rowId)
1391                    throws com.liferay.portal.kernel.exception.PortalException,
1392                            com.liferay.portal.kernel.exception.SystemException {
1393                    return getService().getValue(columnId, rowId);
1394            }
1395    
1396            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1397                    long tableId, long columnId, long classPK)
1398                    throws com.liferay.portal.kernel.exception.SystemException {
1399                    return getService().getValue(tableId, columnId, classPK);
1400            }
1401    
1402            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1403                    long companyId, long classNameId, java.lang.String tableName,
1404                    java.lang.String columnName, long classPK)
1405                    throws com.liferay.portal.kernel.exception.SystemException {
1406                    return getService()
1407                                       .getValue(companyId, classNameId, tableName, columnName,
1408                            classPK);
1409            }
1410    
1411            /**
1412            * @deprecated {@link #getValue(long, long, String, String, long)}
1413            */
1414            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1415                    long classNameId, java.lang.String tableName,
1416                    java.lang.String columnName, long classPK)
1417                    throws com.liferay.portal.kernel.exception.SystemException {
1418                    return getService().getValue(classNameId, tableName, columnName, classPK);
1419            }
1420    
1421            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1422                    long companyId, java.lang.String className, java.lang.String tableName,
1423                    java.lang.String columnName, long classPK)
1424                    throws com.liferay.portal.kernel.exception.SystemException {
1425                    return getService()
1426                                       .getValue(companyId, className, tableName, columnName,
1427                            classPK);
1428            }
1429    
1430            /**
1431            * @deprecated {@link #getValue(long, String, String, String, long)}
1432            */
1433            public static com.liferay.portlet.expando.model.ExpandoValue getValue(
1434                    java.lang.String className, java.lang.String tableName,
1435                    java.lang.String columnName, long classPK)
1436                    throws com.liferay.portal.kernel.exception.SystemException {
1437                    return getService().getValue(className, tableName, columnName, classPK);
1438            }
1439    
1440            public static ExpandoValueLocalService getService() {
1441                    if (_service == null) {
1442                            _service = (ExpandoValueLocalService)PortalBeanLocatorUtil.locate(ExpandoValueLocalService.class.getName());
1443    
1444                            ReferenceRegistry.registerReference(ExpandoValueLocalServiceUtil.class,
1445                                    "_service");
1446                    }
1447    
1448                    return _service;
1449            }
1450    
1451            /**
1452             * @deprecated
1453             */
1454            public void setService(ExpandoValueLocalService service) {
1455            }
1456    
1457            private static ExpandoValueLocalService _service;
1458    }