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