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