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