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.mobiledevicerules.service;
016    
017    import com.liferay.portal.service.ServiceWrapper;
018    
019    /**
020     * Provides a wrapper for {@link MDRRuleGroupLocalService}.
021     *
022     * @author Edward C. Han
023     * @see MDRRuleGroupLocalService
024     * @generated
025     */
026    public class MDRRuleGroupLocalServiceWrapper implements MDRRuleGroupLocalService,
027            ServiceWrapper<MDRRuleGroupLocalService> {
028            public MDRRuleGroupLocalServiceWrapper(
029                    MDRRuleGroupLocalService mdrRuleGroupLocalService) {
030                    _mdrRuleGroupLocalService = mdrRuleGroupLocalService;
031            }
032    
033            /**
034            * Adds the m d r rule group to the database. Also notifies the appropriate model listeners.
035            *
036            * @param mdrRuleGroup the m d r rule group
037            * @return the m d r rule group that was added
038            * @throws SystemException if a system exception occurred
039            */
040            @Override
041            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup addMDRRuleGroup(
042                    com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup mdrRuleGroup)
043                    throws com.liferay.portal.kernel.exception.SystemException {
044                    return _mdrRuleGroupLocalService.addMDRRuleGroup(mdrRuleGroup);
045            }
046    
047            /**
048            * Creates a new m d r rule group with the primary key. Does not add the m d r rule group to the database.
049            *
050            * @param ruleGroupId the primary key for the new m d r rule group
051            * @return the new m d r rule group
052            */
053            @Override
054            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup createMDRRuleGroup(
055                    long ruleGroupId) {
056                    return _mdrRuleGroupLocalService.createMDRRuleGroup(ruleGroupId);
057            }
058    
059            /**
060            * Deletes the m d r rule group with the primary key from the database. Also notifies the appropriate model listeners.
061            *
062            * @param ruleGroupId the primary key of the m d r rule group
063            * @return the m d r rule group that was removed
064            * @throws PortalException if a m d r rule group with the primary key could not be found
065            * @throws SystemException if a system exception occurred
066            */
067            @Override
068            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup deleteMDRRuleGroup(
069                    long ruleGroupId)
070                    throws com.liferay.portal.kernel.exception.PortalException,
071                            com.liferay.portal.kernel.exception.SystemException {
072                    return _mdrRuleGroupLocalService.deleteMDRRuleGroup(ruleGroupId);
073            }
074    
075            /**
076            * Deletes the m d r rule group from the database. Also notifies the appropriate model listeners.
077            *
078            * @param mdrRuleGroup the m d r rule group
079            * @return the m d r rule group that was removed
080            * @throws SystemException if a system exception occurred
081            */
082            @Override
083            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup deleteMDRRuleGroup(
084                    com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup mdrRuleGroup)
085                    throws com.liferay.portal.kernel.exception.SystemException {
086                    return _mdrRuleGroupLocalService.deleteMDRRuleGroup(mdrRuleGroup);
087            }
088    
089            @Override
090            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
091                    return _mdrRuleGroupLocalService.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 _mdrRuleGroupLocalService.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.mobiledevicerules.model.impl.MDRRuleGroupModelImpl}. 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 _mdrRuleGroupLocalService.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.mobiledevicerules.model.impl.MDRRuleGroupModelImpl}. 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 _mdrRuleGroupLocalService.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 _mdrRuleGroupLocalService.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 _mdrRuleGroupLocalService.dynamicQueryCount(dynamicQuery,
183                            projection);
184            }
185    
186            @Override
187            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup fetchMDRRuleGroup(
188                    long ruleGroupId)
189                    throws com.liferay.portal.kernel.exception.SystemException {
190                    return _mdrRuleGroupLocalService.fetchMDRRuleGroup(ruleGroupId);
191            }
192    
193            /**
194            * Returns the m d r rule group with the matching UUID and company.
195            *
196            * @param uuid the m d r rule group's UUID
197            * @param companyId the primary key of the company
198            * @return the matching m d r rule group, or <code>null</code> if a matching m d r rule group could not be found
199            * @throws SystemException if a system exception occurred
200            */
201            @Override
202            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup fetchMDRRuleGroupByUuidAndCompanyId(
203                    java.lang.String uuid, long companyId)
204                    throws com.liferay.portal.kernel.exception.SystemException {
205                    return _mdrRuleGroupLocalService.fetchMDRRuleGroupByUuidAndCompanyId(uuid,
206                            companyId);
207            }
208    
209            /**
210            * Returns the m d r rule group matching the UUID and group.
211            *
212            * @param uuid the m d r rule group's UUID
213            * @param groupId the primary key of the group
214            * @return the matching m d r rule group, or <code>null</code> if a matching m d r rule group could not be found
215            * @throws SystemException if a system exception occurred
216            */
217            @Override
218            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup fetchMDRRuleGroupByUuidAndGroupId(
219                    java.lang.String uuid, long groupId)
220                    throws com.liferay.portal.kernel.exception.SystemException {
221                    return _mdrRuleGroupLocalService.fetchMDRRuleGroupByUuidAndGroupId(uuid,
222                            groupId);
223            }
224    
225            /**
226            * Returns the m d r rule group with the primary key.
227            *
228            * @param ruleGroupId the primary key of the m d r rule group
229            * @return the m d r rule group
230            * @throws PortalException if a m d r rule group with the primary key could not be found
231            * @throws SystemException if a system exception occurred
232            */
233            @Override
234            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup getMDRRuleGroup(
235                    long ruleGroupId)
236                    throws com.liferay.portal.kernel.exception.PortalException,
237                            com.liferay.portal.kernel.exception.SystemException {
238                    return _mdrRuleGroupLocalService.getMDRRuleGroup(ruleGroupId);
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 _mdrRuleGroupLocalService.getPersistedModel(primaryKeyObj);
247            }
248    
249            /**
250            * Returns the m d r rule group with the matching UUID and company.
251            *
252            * @param uuid the m d r rule group's UUID
253            * @param companyId the primary key of the company
254            * @return the matching m d r rule group
255            * @throws PortalException if a matching m d r rule group could not be found
256            * @throws SystemException if a system exception occurred
257            */
258            @Override
259            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup getMDRRuleGroupByUuidAndCompanyId(
260                    java.lang.String uuid, long companyId)
261                    throws com.liferay.portal.kernel.exception.PortalException,
262                            com.liferay.portal.kernel.exception.SystemException {
263                    return _mdrRuleGroupLocalService.getMDRRuleGroupByUuidAndCompanyId(uuid,
264                            companyId);
265            }
266    
267            /**
268            * Returns the m d r rule group matching the UUID and group.
269            *
270            * @param uuid the m d r rule group's UUID
271            * @param groupId the primary key of the group
272            * @return the matching m d r rule group
273            * @throws PortalException if a matching m d r rule group could not be found
274            * @throws SystemException if a system exception occurred
275            */
276            @Override
277            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup getMDRRuleGroupByUuidAndGroupId(
278                    java.lang.String uuid, long groupId)
279                    throws com.liferay.portal.kernel.exception.PortalException,
280                            com.liferay.portal.kernel.exception.SystemException {
281                    return _mdrRuleGroupLocalService.getMDRRuleGroupByUuidAndGroupId(uuid,
282                            groupId);
283            }
284    
285            /**
286            * Returns a range of all the m d r rule groups.
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.mobiledevicerules.model.impl.MDRRuleGroupModelImpl}. 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 m d r rule groups
293            * @param end the upper bound of the range of m d r rule groups (not inclusive)
294            * @return the range of m d r rule groups
295            * @throws SystemException if a system exception occurred
296            */
297            @Override
298            public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> getMDRRuleGroups(
299                    int start, int end)
300                    throws com.liferay.portal.kernel.exception.SystemException {
301                    return _mdrRuleGroupLocalService.getMDRRuleGroups(start, end);
302            }
303    
304            /**
305            * Returns the number of m d r rule groups.
306            *
307            * @return the number of m d r rule groups
308            * @throws SystemException if a system exception occurred
309            */
310            @Override
311            public int getMDRRuleGroupsCount()
312                    throws com.liferay.portal.kernel.exception.SystemException {
313                    return _mdrRuleGroupLocalService.getMDRRuleGroupsCount();
314            }
315    
316            /**
317            * Updates the m d r rule group in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
318            *
319            * @param mdrRuleGroup the m d r rule group
320            * @return the m d r rule group that was updated
321            * @throws SystemException if a system exception occurred
322            */
323            @Override
324            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup updateMDRRuleGroup(
325                    com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup mdrRuleGroup)
326                    throws com.liferay.portal.kernel.exception.SystemException {
327                    return _mdrRuleGroupLocalService.updateMDRRuleGroup(mdrRuleGroup);
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 _mdrRuleGroupLocalService.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                    _mdrRuleGroupLocalService.setBeanIdentifier(beanIdentifier);
348            }
349    
350            @Override
351            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup addRuleGroup(
352                    long groupId,
353                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
354                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
355                    com.liferay.portal.service.ServiceContext serviceContext)
356                    throws com.liferay.portal.kernel.exception.PortalException,
357                            com.liferay.portal.kernel.exception.SystemException {
358                    return _mdrRuleGroupLocalService.addRuleGroup(groupId, nameMap,
359                            descriptionMap, serviceContext);
360            }
361    
362            @Override
363            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup copyRuleGroup(
364                    long ruleGroupId, long groupId,
365                    com.liferay.portal.service.ServiceContext serviceContext)
366                    throws com.liferay.portal.kernel.exception.PortalException,
367                            com.liferay.portal.kernel.exception.SystemException {
368                    return _mdrRuleGroupLocalService.copyRuleGroup(ruleGroupId, groupId,
369                            serviceContext);
370            }
371    
372            @Override
373            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup copyRuleGroup(
374                    com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup ruleGroup,
375                    long groupId, com.liferay.portal.service.ServiceContext serviceContext)
376                    throws com.liferay.portal.kernel.exception.PortalException,
377                            com.liferay.portal.kernel.exception.SystemException {
378                    return _mdrRuleGroupLocalService.copyRuleGroup(ruleGroup, groupId,
379                            serviceContext);
380            }
381    
382            @Override
383            public void deleteRuleGroup(long ruleGroupId)
384                    throws com.liferay.portal.kernel.exception.SystemException {
385                    _mdrRuleGroupLocalService.deleteRuleGroup(ruleGroupId);
386            }
387    
388            @Override
389            public void deleteRuleGroup(
390                    com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup ruleGroup)
391                    throws com.liferay.portal.kernel.exception.SystemException {
392                    _mdrRuleGroupLocalService.deleteRuleGroup(ruleGroup);
393            }
394    
395            @Override
396            public void deleteRuleGroups(long groupId)
397                    throws com.liferay.portal.kernel.exception.SystemException {
398                    _mdrRuleGroupLocalService.deleteRuleGroups(groupId);
399            }
400    
401            @Override
402            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup fetchRuleGroup(
403                    long ruleGroupId)
404                    throws com.liferay.portal.kernel.exception.SystemException {
405                    return _mdrRuleGroupLocalService.fetchRuleGroup(ruleGroupId);
406            }
407    
408            @Override
409            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup getRuleGroup(
410                    long ruleGroupId)
411                    throws com.liferay.portal.kernel.exception.PortalException,
412                            com.liferay.portal.kernel.exception.SystemException {
413                    return _mdrRuleGroupLocalService.getRuleGroup(ruleGroupId);
414            }
415    
416            @Override
417            public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> getRuleGroups(
418                    long groupId)
419                    throws com.liferay.portal.kernel.exception.SystemException {
420                    return _mdrRuleGroupLocalService.getRuleGroups(groupId);
421            }
422    
423            @Override
424            public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> getRuleGroups(
425                    long groupId, int start, int end)
426                    throws com.liferay.portal.kernel.exception.SystemException {
427                    return _mdrRuleGroupLocalService.getRuleGroups(groupId, start, end);
428            }
429    
430            @Override
431            public int getRuleGroupsCount(long groupId)
432                    throws com.liferay.portal.kernel.exception.SystemException {
433                    return _mdrRuleGroupLocalService.getRuleGroupsCount(groupId);
434            }
435    
436            /**
437            * @deprecated As of 6.2.0, replaced by {@link #search(long, String,
438            LinkedHashMap, boolean, int, int)}
439            */
440            @Override
441            public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> search(
442                    long groupId, java.lang.String name, boolean andOperator, int start,
443                    int end) throws com.liferay.portal.kernel.exception.SystemException {
444                    return _mdrRuleGroupLocalService.search(groupId, name, andOperator,
445                            start, end);
446            }
447    
448            @Override
449            public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> search(
450                    long groupId, java.lang.String name,
451                    java.util.LinkedHashMap<java.lang.String, java.lang.Object> params,
452                    boolean andOperator, int start, int end)
453                    throws com.liferay.portal.kernel.exception.SystemException {
454                    return _mdrRuleGroupLocalService.search(groupId, name, params,
455                            andOperator, start, end);
456            }
457    
458            /**
459            * @deprecated As of 6.2.0, replaced by {@link #searchByKeywords(long,
460            String, LinkedHashMap, boolean, int, int)}
461            */
462            @Override
463            public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> searchByKeywords(
464                    long groupId, java.lang.String keywords, boolean andOperator,
465                    int start, int end)
466                    throws com.liferay.portal.kernel.exception.SystemException {
467                    return _mdrRuleGroupLocalService.searchByKeywords(groupId, keywords,
468                            andOperator, start, end);
469            }
470    
471            @Override
472            public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup> searchByKeywords(
473                    long groupId, java.lang.String keywords,
474                    java.util.LinkedHashMap<java.lang.String, java.lang.Object> params,
475                    boolean andOperator, int start, int end)
476                    throws com.liferay.portal.kernel.exception.SystemException {
477                    return _mdrRuleGroupLocalService.searchByKeywords(groupId, keywords,
478                            params, andOperator, start, end);
479            }
480    
481            /**
482            * @deprecated As of 6.2.0, replaced by {@link #searchByKeywordsCount(long,
483            String, LinkedHashMap, boolean)}
484            */
485            @Override
486            public int searchByKeywordsCount(long groupId, java.lang.String keywords,
487                    boolean andOperator)
488                    throws com.liferay.portal.kernel.exception.SystemException {
489                    return _mdrRuleGroupLocalService.searchByKeywordsCount(groupId,
490                            keywords, andOperator);
491            }
492    
493            @Override
494            public int searchByKeywordsCount(long groupId, java.lang.String keywords,
495                    java.util.LinkedHashMap<java.lang.String, java.lang.Object> params,
496                    boolean andOperator)
497                    throws com.liferay.portal.kernel.exception.SystemException {
498                    return _mdrRuleGroupLocalService.searchByKeywordsCount(groupId,
499                            keywords, params, andOperator);
500            }
501    
502            /**
503            * @deprecated As of 6.2.0, replaced by {@link #searchCount(long, String,
504            LinkedHashMap, boolean)}
505            */
506            @Override
507            public int searchCount(long groupId, java.lang.String name,
508                    boolean andOperator)
509                    throws com.liferay.portal.kernel.exception.SystemException {
510                    return _mdrRuleGroupLocalService.searchCount(groupId, name, andOperator);
511            }
512    
513            @Override
514            public int searchCount(long groupId, java.lang.String name,
515                    java.util.LinkedHashMap<java.lang.String, java.lang.Object> params,
516                    boolean andOperator)
517                    throws com.liferay.portal.kernel.exception.SystemException {
518                    return _mdrRuleGroupLocalService.searchCount(groupId, name, params,
519                            andOperator);
520            }
521    
522            @Override
523            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroup updateRuleGroup(
524                    long ruleGroupId,
525                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
526                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
527                    com.liferay.portal.service.ServiceContext serviceContext)
528                    throws com.liferay.portal.kernel.exception.PortalException,
529                            com.liferay.portal.kernel.exception.SystemException {
530                    return _mdrRuleGroupLocalService.updateRuleGroup(ruleGroupId, nameMap,
531                            descriptionMap, serviceContext);
532            }
533    
534            /**
535             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
536             */
537            public MDRRuleGroupLocalService getWrappedMDRRuleGroupLocalService() {
538                    return _mdrRuleGroupLocalService;
539            }
540    
541            /**
542             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
543             */
544            public void setWrappedMDRRuleGroupLocalService(
545                    MDRRuleGroupLocalService mdrRuleGroupLocalService) {
546                    _mdrRuleGroupLocalService = mdrRuleGroupLocalService;
547            }
548    
549            @Override
550            public MDRRuleGroupLocalService getWrappedService() {
551                    return _mdrRuleGroupLocalService;
552            }
553    
554            @Override
555            public void setWrappedService(
556                    MDRRuleGroupLocalService mdrRuleGroupLocalService) {
557                    _mdrRuleGroupLocalService = mdrRuleGroupLocalService;
558            }
559    
560            private MDRRuleGroupLocalService _mdrRuleGroupLocalService;
561    }