001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.dynamicdatalists.service;
016    
017    import com.liferay.portal.service.ServiceWrapper;
018    
019    /**
020     * Provides a wrapper for {@link DDLRecordSetLocalService}.
021     *
022     * @author Brian Wing Shun Chan
023     * @see DDLRecordSetLocalService
024     * @generated
025     */
026    public class DDLRecordSetLocalServiceWrapper implements DDLRecordSetLocalService,
027            ServiceWrapper<DDLRecordSetLocalService> {
028            public DDLRecordSetLocalServiceWrapper(
029                    DDLRecordSetLocalService ddlRecordSetLocalService) {
030                    _ddlRecordSetLocalService = ddlRecordSetLocalService;
031            }
032    
033            /**
034            * Adds the d d l record set to the database. Also notifies the appropriate model listeners.
035            *
036            * @param ddlRecordSet the d d l record set
037            * @return the d d l record set that was added
038            * @throws SystemException if a system exception occurred
039            */
040            @Override
041            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet addDDLRecordSet(
042                    com.liferay.portlet.dynamicdatalists.model.DDLRecordSet ddlRecordSet)
043                    throws com.liferay.portal.kernel.exception.SystemException {
044                    return _ddlRecordSetLocalService.addDDLRecordSet(ddlRecordSet);
045            }
046    
047            /**
048            * Creates a new d d l record set with the primary key. Does not add the d d l record set to the database.
049            *
050            * @param recordSetId the primary key for the new d d l record set
051            * @return the new d d l record set
052            */
053            @Override
054            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet createDDLRecordSet(
055                    long recordSetId) {
056                    return _ddlRecordSetLocalService.createDDLRecordSet(recordSetId);
057            }
058    
059            /**
060            * Deletes the d d l record set with the primary key from the database. Also notifies the appropriate model listeners.
061            *
062            * @param recordSetId the primary key of the d d l record set
063            * @return the d d l record set that was removed
064            * @throws PortalException if a d d l record set with the primary key could not be found
065            * @throws SystemException if a system exception occurred
066            */
067            @Override
068            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet deleteDDLRecordSet(
069                    long recordSetId)
070                    throws com.liferay.portal.kernel.exception.PortalException,
071                            com.liferay.portal.kernel.exception.SystemException {
072                    return _ddlRecordSetLocalService.deleteDDLRecordSet(recordSetId);
073            }
074    
075            /**
076            * Deletes the d d l record set from the database. Also notifies the appropriate model listeners.
077            *
078            * @param ddlRecordSet the d d l record set
079            * @return the d d l record set that was removed
080            * @throws SystemException if a system exception occurred
081            */
082            @Override
083            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet deleteDDLRecordSet(
084                    com.liferay.portlet.dynamicdatalists.model.DDLRecordSet ddlRecordSet)
085                    throws com.liferay.portal.kernel.exception.SystemException {
086                    return _ddlRecordSetLocalService.deleteDDLRecordSet(ddlRecordSet);
087            }
088    
089            @Override
090            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
091                    return _ddlRecordSetLocalService.dynamicQuery();
092            }
093    
094            /**
095            * Performs a dynamic query on the database and returns the matching rows.
096            *
097            * @param dynamicQuery the dynamic query
098            * @return the matching rows
099            * @throws SystemException if a system exception occurred
100            */
101            @Override
102            @SuppressWarnings("rawtypes")
103            public java.util.List dynamicQuery(
104                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
105                    throws com.liferay.portal.kernel.exception.SystemException {
106                    return _ddlRecordSetLocalService.dynamicQuery(dynamicQuery);
107            }
108    
109            /**
110            * Performs a dynamic query on the database and returns a range of the matching rows.
111            *
112            * <p>
113            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.dynamicdatalists.model.impl.DDLRecordSetModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
114            * </p>
115            *
116            * @param dynamicQuery the dynamic query
117            * @param start the lower bound of the range of model instances
118            * @param end the upper bound of the range of model instances (not inclusive)
119            * @return the range of matching rows
120            * @throws SystemException if a system exception occurred
121            */
122            @Override
123            @SuppressWarnings("rawtypes")
124            public java.util.List dynamicQuery(
125                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
126                    int end) throws com.liferay.portal.kernel.exception.SystemException {
127                    return _ddlRecordSetLocalService.dynamicQuery(dynamicQuery, start, end);
128            }
129    
130            /**
131            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
132            *
133            * <p>
134            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.dynamicdatalists.model.impl.DDLRecordSetModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
135            * </p>
136            *
137            * @param dynamicQuery the dynamic query
138            * @param start the lower bound of the range of model instances
139            * @param end the upper bound of the range of model instances (not inclusive)
140            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
141            * @return the ordered range of matching rows
142            * @throws SystemException if a system exception occurred
143            */
144            @Override
145            @SuppressWarnings("rawtypes")
146            public java.util.List dynamicQuery(
147                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
148                    int end,
149                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
150                    throws com.liferay.portal.kernel.exception.SystemException {
151                    return _ddlRecordSetLocalService.dynamicQuery(dynamicQuery, start, end,
152                            orderByComparator);
153            }
154    
155            /**
156            * Returns the number of rows that match the dynamic query.
157            *
158            * @param dynamicQuery the dynamic query
159            * @return the number of rows that match the dynamic query
160            * @throws SystemException if a system exception occurred
161            */
162            @Override
163            public long dynamicQueryCount(
164                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
165                    throws com.liferay.portal.kernel.exception.SystemException {
166                    return _ddlRecordSetLocalService.dynamicQueryCount(dynamicQuery);
167            }
168    
169            /**
170            * Returns the number of rows that match the dynamic query.
171            *
172            * @param dynamicQuery the dynamic query
173            * @param projection the projection to apply to the query
174            * @return the number of rows that match the dynamic query
175            * @throws SystemException if a system exception occurred
176            */
177            @Override
178            public long dynamicQueryCount(
179                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
180                    com.liferay.portal.kernel.dao.orm.Projection projection)
181                    throws com.liferay.portal.kernel.exception.SystemException {
182                    return _ddlRecordSetLocalService.dynamicQueryCount(dynamicQuery,
183                            projection);
184            }
185    
186            @Override
187            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchDDLRecordSet(
188                    long recordSetId)
189                    throws com.liferay.portal.kernel.exception.SystemException {
190                    return _ddlRecordSetLocalService.fetchDDLRecordSet(recordSetId);
191            }
192    
193            /**
194            * Returns the d d l record set with the matching UUID and company.
195            *
196            * @param uuid the d d l record set's UUID
197            * @param companyId the primary key of the company
198            * @return the matching d d l record set, or <code>null</code> if a matching d d l record set could not be found
199            * @throws SystemException if a system exception occurred
200            */
201            @Override
202            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchDDLRecordSetByUuidAndCompanyId(
203                    java.lang.String uuid, long companyId)
204                    throws com.liferay.portal.kernel.exception.SystemException {
205                    return _ddlRecordSetLocalService.fetchDDLRecordSetByUuidAndCompanyId(uuid,
206                            companyId);
207            }
208    
209            /**
210            * Returns the d d l record set matching the UUID and group.
211            *
212            * @param uuid the d d l record set's UUID
213            * @param groupId the primary key of the group
214            * @return the matching d d l record set, or <code>null</code> if a matching d d l record set could not be found
215            * @throws SystemException if a system exception occurred
216            */
217            @Override
218            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchDDLRecordSetByUuidAndGroupId(
219                    java.lang.String uuid, long groupId)
220                    throws com.liferay.portal.kernel.exception.SystemException {
221                    return _ddlRecordSetLocalService.fetchDDLRecordSetByUuidAndGroupId(uuid,
222                            groupId);
223            }
224    
225            /**
226            * Returns the d d l record set with the primary key.
227            *
228            * @param recordSetId the primary key of the d d l record set
229            * @return the d d l record set
230            * @throws PortalException if a d d l record set with the primary key could not be found
231            * @throws SystemException if a system exception occurred
232            */
233            @Override
234            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet getDDLRecordSet(
235                    long recordSetId)
236                    throws com.liferay.portal.kernel.exception.PortalException,
237                            com.liferay.portal.kernel.exception.SystemException {
238                    return _ddlRecordSetLocalService.getDDLRecordSet(recordSetId);
239            }
240    
241            @Override
242            public com.liferay.portal.model.PersistedModel getPersistedModel(
243                    java.io.Serializable primaryKeyObj)
244                    throws com.liferay.portal.kernel.exception.PortalException,
245                            com.liferay.portal.kernel.exception.SystemException {
246                    return _ddlRecordSetLocalService.getPersistedModel(primaryKeyObj);
247            }
248    
249            /**
250            * Returns the d d l record set with the matching UUID and company.
251            *
252            * @param uuid the d d l record set's UUID
253            * @param companyId the primary key of the company
254            * @return the matching d d l record set
255            * @throws PortalException if a matching d d l record set could not be found
256            * @throws SystemException if a system exception occurred
257            */
258            @Override
259            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet getDDLRecordSetByUuidAndCompanyId(
260                    java.lang.String uuid, long companyId)
261                    throws com.liferay.portal.kernel.exception.PortalException,
262                            com.liferay.portal.kernel.exception.SystemException {
263                    return _ddlRecordSetLocalService.getDDLRecordSetByUuidAndCompanyId(uuid,
264                            companyId);
265            }
266    
267            /**
268            * Returns the d d l record set matching the UUID and group.
269            *
270            * @param uuid the d d l record set's UUID
271            * @param groupId the primary key of the group
272            * @return the matching d d l record set
273            * @throws PortalException if a matching d d l record set could not be found
274            * @throws SystemException if a system exception occurred
275            */
276            @Override
277            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet getDDLRecordSetByUuidAndGroupId(
278                    java.lang.String uuid, long groupId)
279                    throws com.liferay.portal.kernel.exception.PortalException,
280                            com.liferay.portal.kernel.exception.SystemException {
281                    return _ddlRecordSetLocalService.getDDLRecordSetByUuidAndGroupId(uuid,
282                            groupId);
283            }
284    
285            /**
286            * Returns a range of all the d d l record sets.
287            *
288            * <p>
289            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set. If <code>orderByComparator</code> is specified, then the query will include the given ORDER BY logic. If <code>orderByComparator</code> is absent and pagination is required (<code>start</code> and <code>end</code> are not {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link com.liferay.portlet.dynamicdatalists.model.impl.DDLRecordSetModelImpl}. If both <code>orderByComparator</code> and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.
290            * </p>
291            *
292            * @param start the lower bound of the range of d d l record sets
293            * @param end the upper bound of the range of d d l record sets (not inclusive)
294            * @return the range of d d l record sets
295            * @throws SystemException if a system exception occurred
296            */
297            @Override
298            public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> getDDLRecordSets(
299                    int start, int end)
300                    throws com.liferay.portal.kernel.exception.SystemException {
301                    return _ddlRecordSetLocalService.getDDLRecordSets(start, end);
302            }
303    
304            /**
305            * Returns the number of d d l record sets.
306            *
307            * @return the number of d d l record sets
308            * @throws SystemException if a system exception occurred
309            */
310            @Override
311            public int getDDLRecordSetsCount()
312                    throws com.liferay.portal.kernel.exception.SystemException {
313                    return _ddlRecordSetLocalService.getDDLRecordSetsCount();
314            }
315    
316            /**
317            * Updates the d d l record set in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
318            *
319            * @param ddlRecordSet the d d l record set
320            * @return the d d l record set that was updated
321            * @throws SystemException if a system exception occurred
322            */
323            @Override
324            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet updateDDLRecordSet(
325                    com.liferay.portlet.dynamicdatalists.model.DDLRecordSet ddlRecordSet)
326                    throws com.liferay.portal.kernel.exception.SystemException {
327                    return _ddlRecordSetLocalService.updateDDLRecordSet(ddlRecordSet);
328            }
329    
330            /**
331            * Returns the Spring bean ID for this bean.
332            *
333            * @return the Spring bean ID for this bean
334            */
335            @Override
336            public java.lang.String getBeanIdentifier() {
337                    return _ddlRecordSetLocalService.getBeanIdentifier();
338            }
339    
340            /**
341            * Sets the Spring bean ID for this bean.
342            *
343            * @param beanIdentifier the Spring bean ID for this bean
344            */
345            @Override
346            public void setBeanIdentifier(java.lang.String beanIdentifier) {
347                    _ddlRecordSetLocalService.setBeanIdentifier(beanIdentifier);
348            }
349    
350            @Override
351            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet addRecordSet(
352                    long userId, long groupId, long ddmStructureId,
353                    java.lang.String recordSetKey,
354                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
355                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
356                    int minDisplayRows, int scope,
357                    com.liferay.portal.service.ServiceContext serviceContext)
358                    throws com.liferay.portal.kernel.exception.PortalException,
359                            com.liferay.portal.kernel.exception.SystemException {
360                    return _ddlRecordSetLocalService.addRecordSet(userId, groupId,
361                            ddmStructureId, recordSetKey, nameMap, descriptionMap,
362                            minDisplayRows, scope, serviceContext);
363            }
364    
365            @Override
366            public void addRecordSetResources(
367                    com.liferay.portlet.dynamicdatalists.model.DDLRecordSet recordSet,
368                    boolean addGroupPermissions, boolean addGuestPermissions)
369                    throws com.liferay.portal.kernel.exception.PortalException,
370                            com.liferay.portal.kernel.exception.SystemException {
371                    _ddlRecordSetLocalService.addRecordSetResources(recordSet,
372                            addGroupPermissions, addGuestPermissions);
373            }
374    
375            @Override
376            public void addRecordSetResources(
377                    com.liferay.portlet.dynamicdatalists.model.DDLRecordSet recordSet,
378                    java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
379                    throws com.liferay.portal.kernel.exception.PortalException,
380                            com.liferay.portal.kernel.exception.SystemException {
381                    _ddlRecordSetLocalService.addRecordSetResources(recordSet,
382                            groupPermissions, guestPermissions);
383            }
384    
385            @Override
386            public void deleteRecordSet(
387                    com.liferay.portlet.dynamicdatalists.model.DDLRecordSet recordSet)
388                    throws com.liferay.portal.kernel.exception.PortalException,
389                            com.liferay.portal.kernel.exception.SystemException {
390                    _ddlRecordSetLocalService.deleteRecordSet(recordSet);
391            }
392    
393            @Override
394            public void deleteRecordSet(long recordSetId)
395                    throws com.liferay.portal.kernel.exception.PortalException,
396                            com.liferay.portal.kernel.exception.SystemException {
397                    _ddlRecordSetLocalService.deleteRecordSet(recordSetId);
398            }
399    
400            @Override
401            public void deleteRecordSet(long groupId, java.lang.String recordSetKey)
402                    throws com.liferay.portal.kernel.exception.PortalException,
403                            com.liferay.portal.kernel.exception.SystemException {
404                    _ddlRecordSetLocalService.deleteRecordSet(groupId, recordSetKey);
405            }
406    
407            @Override
408            public void deleteRecordSets(long groupId)
409                    throws com.liferay.portal.kernel.exception.PortalException,
410                            com.liferay.portal.kernel.exception.SystemException {
411                    _ddlRecordSetLocalService.deleteRecordSets(groupId);
412            }
413    
414            @Override
415            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchRecordSet(
416                    long recordSetId)
417                    throws com.liferay.portal.kernel.exception.SystemException {
418                    return _ddlRecordSetLocalService.fetchRecordSet(recordSetId);
419            }
420    
421            @Override
422            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchRecordSet(
423                    long groupId, java.lang.String recordSetKey)
424                    throws com.liferay.portal.kernel.exception.SystemException {
425                    return _ddlRecordSetLocalService.fetchRecordSet(groupId, recordSetKey);
426            }
427    
428            @Override
429            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet getRecordSet(
430                    long recordSetId)
431                    throws com.liferay.portal.kernel.exception.PortalException,
432                            com.liferay.portal.kernel.exception.SystemException {
433                    return _ddlRecordSetLocalService.getRecordSet(recordSetId);
434            }
435    
436            @Override
437            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet getRecordSet(
438                    long groupId, java.lang.String recordSetKey)
439                    throws com.liferay.portal.kernel.exception.PortalException,
440                            com.liferay.portal.kernel.exception.SystemException {
441                    return _ddlRecordSetLocalService.getRecordSet(groupId, recordSetKey);
442            }
443    
444            @Override
445            public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> getRecordSets(
446                    long groupId)
447                    throws com.liferay.portal.kernel.exception.SystemException {
448                    return _ddlRecordSetLocalService.getRecordSets(groupId);
449            }
450    
451            @Override
452            public int getRecordSetsCount(long groupId)
453                    throws com.liferay.portal.kernel.exception.SystemException {
454                    return _ddlRecordSetLocalService.getRecordSetsCount(groupId);
455            }
456    
457            @Override
458            public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> search(
459                    long companyId, long groupId, java.lang.String keywords, int scope,
460                    int start, int end,
461                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
462                    throws com.liferay.portal.kernel.exception.SystemException {
463                    return _ddlRecordSetLocalService.search(companyId, groupId, keywords,
464                            scope, start, end, orderByComparator);
465            }
466    
467            @Override
468            public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> search(
469                    long companyId, long groupId, java.lang.String name,
470                    java.lang.String description, int scope, boolean andOperator,
471                    int start, int end,
472                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
473                    throws com.liferay.portal.kernel.exception.SystemException {
474                    return _ddlRecordSetLocalService.search(companyId, groupId, name,
475                            description, scope, andOperator, start, end, orderByComparator);
476            }
477    
478            @Override
479            public int searchCount(long companyId, long groupId,
480                    java.lang.String keywords, int scope)
481                    throws com.liferay.portal.kernel.exception.SystemException {
482                    return _ddlRecordSetLocalService.searchCount(companyId, groupId,
483                            keywords, scope);
484            }
485    
486            @Override
487            public int searchCount(long companyId, long groupId, java.lang.String name,
488                    java.lang.String description, int scope, boolean andOperator)
489                    throws com.liferay.portal.kernel.exception.SystemException {
490                    return _ddlRecordSetLocalService.searchCount(companyId, groupId, name,
491                            description, scope, andOperator);
492            }
493    
494            @Override
495            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet updateMinDisplayRows(
496                    long recordSetId, int minDisplayRows,
497                    com.liferay.portal.service.ServiceContext serviceContext)
498                    throws com.liferay.portal.kernel.exception.PortalException,
499                            com.liferay.portal.kernel.exception.SystemException {
500                    return _ddlRecordSetLocalService.updateMinDisplayRows(recordSetId,
501                            minDisplayRows, serviceContext);
502            }
503    
504            @Override
505            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet updateRecordSet(
506                    long recordSetId, long ddmStructureId,
507                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
508                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
509                    int minDisplayRows,
510                    com.liferay.portal.service.ServiceContext serviceContext)
511                    throws com.liferay.portal.kernel.exception.PortalException,
512                            com.liferay.portal.kernel.exception.SystemException {
513                    return _ddlRecordSetLocalService.updateRecordSet(recordSetId,
514                            ddmStructureId, nameMap, descriptionMap, minDisplayRows,
515                            serviceContext);
516            }
517    
518            @Override
519            public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet updateRecordSet(
520                    long groupId, long ddmStructureId, java.lang.String recordSetKey,
521                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
522                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
523                    int minDisplayRows,
524                    com.liferay.portal.service.ServiceContext serviceContext)
525                    throws com.liferay.portal.kernel.exception.PortalException,
526                            com.liferay.portal.kernel.exception.SystemException {
527                    return _ddlRecordSetLocalService.updateRecordSet(groupId,
528                            ddmStructureId, recordSetKey, nameMap, descriptionMap,
529                            minDisplayRows, serviceContext);
530            }
531    
532            /**
533             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
534             */
535            public DDLRecordSetLocalService getWrappedDDLRecordSetLocalService() {
536                    return _ddlRecordSetLocalService;
537            }
538    
539            /**
540             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
541             */
542            public void setWrappedDDLRecordSetLocalService(
543                    DDLRecordSetLocalService ddlRecordSetLocalService) {
544                    _ddlRecordSetLocalService = ddlRecordSetLocalService;
545            }
546    
547            @Override
548            public DDLRecordSetLocalService getWrappedService() {
549                    return _ddlRecordSetLocalService;
550            }
551    
552            @Override
553            public void setWrappedService(
554                    DDLRecordSetLocalService ddlRecordSetLocalService) {
555                    _ddlRecordSetLocalService = ddlRecordSetLocalService;
556            }
557    
558            private DDLRecordSetLocalService _ddlRecordSetLocalService;
559    }