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