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