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