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 MDRRuleGroupInstanceLocalService}.
023     *
024     * @author Edward C. Han
025     * @see MDRRuleGroupInstanceLocalService
026     * @generated
027     */
028    @ProviderType
029    public class MDRRuleGroupInstanceLocalServiceWrapper
030            implements MDRRuleGroupInstanceLocalService,
031                    ServiceWrapper<MDRRuleGroupInstanceLocalService> {
032            public MDRRuleGroupInstanceLocalServiceWrapper(
033                    MDRRuleGroupInstanceLocalService mdrRuleGroupInstanceLocalService) {
034                    _mdrRuleGroupInstanceLocalService = mdrRuleGroupInstanceLocalService;
035            }
036    
037            /**
038            * Adds the m d r rule group instance to the database. Also notifies the appropriate model listeners.
039            *
040            * @param mdrRuleGroupInstance the m d r rule group instance
041            * @return the m d r rule group instance that was added
042            * @throws SystemException if a system exception occurred
043            */
044            @Override
045            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance addMDRRuleGroupInstance(
046                    com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance mdrRuleGroupInstance)
047                    throws com.liferay.portal.kernel.exception.SystemException {
048                    return _mdrRuleGroupInstanceLocalService.addMDRRuleGroupInstance(mdrRuleGroupInstance);
049            }
050    
051            /**
052            * Creates a new m d r rule group instance with the primary key. Does not add the m d r rule group instance to the database.
053            *
054            * @param ruleGroupInstanceId the primary key for the new m d r rule group instance
055            * @return the new m d r rule group instance
056            */
057            @Override
058            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance createMDRRuleGroupInstance(
059                    long ruleGroupInstanceId) {
060                    return _mdrRuleGroupInstanceLocalService.createMDRRuleGroupInstance(ruleGroupInstanceId);
061            }
062    
063            /**
064            * Deletes the m d r rule group instance with the primary key from the database. Also notifies the appropriate model listeners.
065            *
066            * @param ruleGroupInstanceId the primary key of the m d r rule group instance
067            * @return the m d r rule group instance that was removed
068            * @throws PortalException if a m d r rule group instance with the primary key could not be found
069            * @throws SystemException if a system exception occurred
070            */
071            @Override
072            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance deleteMDRRuleGroupInstance(
073                    long ruleGroupInstanceId)
074                    throws com.liferay.portal.kernel.exception.PortalException,
075                            com.liferay.portal.kernel.exception.SystemException {
076                    return _mdrRuleGroupInstanceLocalService.deleteMDRRuleGroupInstance(ruleGroupInstanceId);
077            }
078    
079            /**
080            * Deletes the m d r rule group instance from the database. Also notifies the appropriate model listeners.
081            *
082            * @param mdrRuleGroupInstance the m d r rule group instance
083            * @return the m d r rule group instance that was removed
084            * @throws SystemException if a system exception occurred
085            */
086            @Override
087            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance deleteMDRRuleGroupInstance(
088                    com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance mdrRuleGroupInstance)
089                    throws com.liferay.portal.kernel.exception.SystemException {
090                    return _mdrRuleGroupInstanceLocalService.deleteMDRRuleGroupInstance(mdrRuleGroupInstance);
091            }
092    
093            @Override
094            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
095                    return _mdrRuleGroupInstanceLocalService.dynamicQuery();
096            }
097    
098            /**
099            * Performs a dynamic query on the database and returns the matching rows.
100            *
101            * @param dynamicQuery the dynamic query
102            * @return the matching rows
103            * @throws SystemException if a system exception occurred
104            */
105            @Override
106            @SuppressWarnings("rawtypes")
107            public java.util.List dynamicQuery(
108                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
109                    throws com.liferay.portal.kernel.exception.SystemException {
110                    return _mdrRuleGroupInstanceLocalService.dynamicQuery(dynamicQuery);
111            }
112    
113            /**
114            * Performs a dynamic query on the database and returns a range of the matching rows.
115            *
116            * <p>
117            * 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.MDRRuleGroupInstanceModelImpl}. 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.
118            * </p>
119            *
120            * @param dynamicQuery the dynamic query
121            * @param start the lower bound of the range of model instances
122            * @param end the upper bound of the range of model instances (not inclusive)
123            * @return the range of matching rows
124            * @throws SystemException if a system exception occurred
125            */
126            @Override
127            @SuppressWarnings("rawtypes")
128            public java.util.List dynamicQuery(
129                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
130                    int end) throws com.liferay.portal.kernel.exception.SystemException {
131                    return _mdrRuleGroupInstanceLocalService.dynamicQuery(dynamicQuery,
132                            start, end);
133            }
134    
135            /**
136            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
137            *
138            * <p>
139            * 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.MDRRuleGroupInstanceModelImpl}. 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.
140            * </p>
141            *
142            * @param dynamicQuery the dynamic query
143            * @param start the lower bound of the range of model instances
144            * @param end the upper bound of the range of model instances (not inclusive)
145            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
146            * @return the ordered range of matching rows
147            * @throws SystemException if a system exception occurred
148            */
149            @Override
150            @SuppressWarnings("rawtypes")
151            public java.util.List dynamicQuery(
152                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
153                    int end,
154                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
155                    throws com.liferay.portal.kernel.exception.SystemException {
156                    return _mdrRuleGroupInstanceLocalService.dynamicQuery(dynamicQuery,
157                            start, end, orderByComparator);
158            }
159    
160            /**
161            * Returns the number of rows that match the dynamic query.
162            *
163            * @param dynamicQuery the dynamic query
164            * @return the number of rows that match the dynamic query
165            * @throws SystemException if a system exception occurred
166            */
167            @Override
168            public long dynamicQueryCount(
169                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
170                    throws com.liferay.portal.kernel.exception.SystemException {
171                    return _mdrRuleGroupInstanceLocalService.dynamicQueryCount(dynamicQuery);
172            }
173    
174            /**
175            * Returns the number of rows that match the dynamic query.
176            *
177            * @param dynamicQuery the dynamic query
178            * @param projection the projection to apply to the query
179            * @return the number of rows that match the dynamic query
180            * @throws SystemException if a system exception occurred
181            */
182            @Override
183            public long dynamicQueryCount(
184                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
185                    com.liferay.portal.kernel.dao.orm.Projection projection)
186                    throws com.liferay.portal.kernel.exception.SystemException {
187                    return _mdrRuleGroupInstanceLocalService.dynamicQueryCount(dynamicQuery,
188                            projection);
189            }
190    
191            @Override
192            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance fetchMDRRuleGroupInstance(
193                    long ruleGroupInstanceId)
194                    throws com.liferay.portal.kernel.exception.SystemException {
195                    return _mdrRuleGroupInstanceLocalService.fetchMDRRuleGroupInstance(ruleGroupInstanceId);
196            }
197    
198            /**
199            * Returns the m d r rule group instance with the matching UUID and company.
200            *
201            * @param uuid the m d r rule group instance's UUID
202            * @param companyId the primary key of the company
203            * @return the matching m d r rule group instance, or <code>null</code> if a matching m d r rule group instance could not be found
204            * @throws SystemException if a system exception occurred
205            */
206            @Override
207            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance fetchMDRRuleGroupInstanceByUuidAndCompanyId(
208                    java.lang.String uuid, long companyId)
209                    throws com.liferay.portal.kernel.exception.SystemException {
210                    return _mdrRuleGroupInstanceLocalService.fetchMDRRuleGroupInstanceByUuidAndCompanyId(uuid,
211                            companyId);
212            }
213    
214            /**
215            * Returns the m d r rule group instance matching the UUID and group.
216            *
217            * @param uuid the m d r rule group instance's UUID
218            * @param groupId the primary key of the group
219            * @return the matching m d r rule group instance, or <code>null</code> if a matching m d r rule group instance could not be found
220            * @throws SystemException if a system exception occurred
221            */
222            @Override
223            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance fetchMDRRuleGroupInstanceByUuidAndGroupId(
224                    java.lang.String uuid, long groupId)
225                    throws com.liferay.portal.kernel.exception.SystemException {
226                    return _mdrRuleGroupInstanceLocalService.fetchMDRRuleGroupInstanceByUuidAndGroupId(uuid,
227                            groupId);
228            }
229    
230            /**
231            * Returns the m d r rule group instance with the primary key.
232            *
233            * @param ruleGroupInstanceId the primary key of the m d r rule group instance
234            * @return the m d r rule group instance
235            * @throws PortalException if a m d r rule group instance with the primary key could not be found
236            * @throws SystemException if a system exception occurred
237            */
238            @Override
239            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance getMDRRuleGroupInstance(
240                    long ruleGroupInstanceId)
241                    throws com.liferay.portal.kernel.exception.PortalException,
242                            com.liferay.portal.kernel.exception.SystemException {
243                    return _mdrRuleGroupInstanceLocalService.getMDRRuleGroupInstance(ruleGroupInstanceId);
244            }
245    
246            @Override
247            public com.liferay.portal.model.PersistedModel getPersistedModel(
248                    java.io.Serializable primaryKeyObj)
249                    throws com.liferay.portal.kernel.exception.PortalException,
250                            com.liferay.portal.kernel.exception.SystemException {
251                    return _mdrRuleGroupInstanceLocalService.getPersistedModel(primaryKeyObj);
252            }
253    
254            /**
255            * Returns the m d r rule group instance with the matching UUID and company.
256            *
257            * @param uuid the m d r rule group instance's UUID
258            * @param companyId the primary key of the company
259            * @return the matching m d r rule group instance
260            * @throws PortalException if a matching m d r rule group instance could not be found
261            * @throws SystemException if a system exception occurred
262            */
263            @Override
264            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance getMDRRuleGroupInstanceByUuidAndCompanyId(
265                    java.lang.String uuid, long companyId)
266                    throws com.liferay.portal.kernel.exception.PortalException,
267                            com.liferay.portal.kernel.exception.SystemException {
268                    return _mdrRuleGroupInstanceLocalService.getMDRRuleGroupInstanceByUuidAndCompanyId(uuid,
269                            companyId);
270            }
271    
272            /**
273            * Returns the m d r rule group instance matching the UUID and group.
274            *
275            * @param uuid the m d r rule group instance's UUID
276            * @param groupId the primary key of the group
277            * @return the matching m d r rule group instance
278            * @throws PortalException if a matching m d r rule group instance could not be found
279            * @throws SystemException if a system exception occurred
280            */
281            @Override
282            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance getMDRRuleGroupInstanceByUuidAndGroupId(
283                    java.lang.String uuid, long groupId)
284                    throws com.liferay.portal.kernel.exception.PortalException,
285                            com.liferay.portal.kernel.exception.SystemException {
286                    return _mdrRuleGroupInstanceLocalService.getMDRRuleGroupInstanceByUuidAndGroupId(uuid,
287                            groupId);
288            }
289    
290            /**
291            * Returns a range of all the m d r rule group instances.
292            *
293            * <p>
294            * 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.MDRRuleGroupInstanceModelImpl}. 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.
295            * </p>
296            *
297            * @param start the lower bound of the range of m d r rule group instances
298            * @param end the upper bound of the range of m d r rule group instances (not inclusive)
299            * @return the range of m d r rule group instances
300            * @throws SystemException if a system exception occurred
301            */
302            @Override
303            public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance> getMDRRuleGroupInstances(
304                    int start, int end)
305                    throws com.liferay.portal.kernel.exception.SystemException {
306                    return _mdrRuleGroupInstanceLocalService.getMDRRuleGroupInstances(start,
307                            end);
308            }
309    
310            /**
311            * Returns the number of m d r rule group instances.
312            *
313            * @return the number of m d r rule group instances
314            * @throws SystemException if a system exception occurred
315            */
316            @Override
317            public int getMDRRuleGroupInstancesCount()
318                    throws com.liferay.portal.kernel.exception.SystemException {
319                    return _mdrRuleGroupInstanceLocalService.getMDRRuleGroupInstancesCount();
320            }
321    
322            /**
323            * Updates the m d r rule group instance in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
324            *
325            * @param mdrRuleGroupInstance the m d r rule group instance
326            * @return the m d r rule group instance that was updated
327            * @throws SystemException if a system exception occurred
328            */
329            @Override
330            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance updateMDRRuleGroupInstance(
331                    com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance mdrRuleGroupInstance)
332                    throws com.liferay.portal.kernel.exception.SystemException {
333                    return _mdrRuleGroupInstanceLocalService.updateMDRRuleGroupInstance(mdrRuleGroupInstance);
334            }
335    
336            /**
337            * Returns the Spring bean ID for this bean.
338            *
339            * @return the Spring bean ID for this bean
340            */
341            @Override
342            public java.lang.String getBeanIdentifier() {
343                    return _mdrRuleGroupInstanceLocalService.getBeanIdentifier();
344            }
345    
346            /**
347            * Sets the Spring bean ID for this bean.
348            *
349            * @param beanIdentifier the Spring bean ID for this bean
350            */
351            @Override
352            public void setBeanIdentifier(java.lang.String beanIdentifier) {
353                    _mdrRuleGroupInstanceLocalService.setBeanIdentifier(beanIdentifier);
354            }
355    
356            @Override
357            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance addRuleGroupInstance(
358                    long groupId, java.lang.String className, long classPK,
359                    long ruleGroupId, int priority,
360                    com.liferay.portal.service.ServiceContext serviceContext)
361                    throws com.liferay.portal.kernel.exception.PortalException,
362                            com.liferay.portal.kernel.exception.SystemException {
363                    return _mdrRuleGroupInstanceLocalService.addRuleGroupInstance(groupId,
364                            className, classPK, ruleGroupId, priority, serviceContext);
365            }
366    
367            @Override
368            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance addRuleGroupInstance(
369                    long groupId, java.lang.String className, long classPK,
370                    long ruleGroupId,
371                    com.liferay.portal.service.ServiceContext serviceContext)
372                    throws com.liferay.portal.kernel.exception.PortalException,
373                            com.liferay.portal.kernel.exception.SystemException {
374                    return _mdrRuleGroupInstanceLocalService.addRuleGroupInstance(groupId,
375                            className, classPK, ruleGroupId, serviceContext);
376            }
377    
378            @Override
379            public void deleteGroupRuleGroupInstances(long groupId)
380                    throws com.liferay.portal.kernel.exception.SystemException {
381                    _mdrRuleGroupInstanceLocalService.deleteGroupRuleGroupInstances(groupId);
382            }
383    
384            @Override
385            public void deleteRuleGroupInstance(long ruleGroupInstanceId)
386                    throws com.liferay.portal.kernel.exception.SystemException {
387                    _mdrRuleGroupInstanceLocalService.deleteRuleGroupInstance(ruleGroupInstanceId);
388            }
389    
390            @Override
391            public void deleteRuleGroupInstance(
392                    com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance ruleGroupInstance)
393                    throws com.liferay.portal.kernel.exception.SystemException {
394                    _mdrRuleGroupInstanceLocalService.deleteRuleGroupInstance(ruleGroupInstance);
395            }
396    
397            @Override
398            public void deleteRuleGroupInstances(long ruleGroupId)
399                    throws com.liferay.portal.kernel.exception.SystemException {
400                    _mdrRuleGroupInstanceLocalService.deleteRuleGroupInstances(ruleGroupId);
401            }
402    
403            @Override
404            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance fetchRuleGroupInstance(
405                    long ruleGroupInstanceId)
406                    throws com.liferay.portal.kernel.exception.SystemException {
407                    return _mdrRuleGroupInstanceLocalService.fetchRuleGroupInstance(ruleGroupInstanceId);
408            }
409    
410            @Override
411            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance fetchRuleGroupInstance(
412                    java.lang.String className, long classPK, long ruleGroupId)
413                    throws com.liferay.portal.kernel.exception.SystemException {
414                    return _mdrRuleGroupInstanceLocalService.fetchRuleGroupInstance(className,
415                            classPK, ruleGroupId);
416            }
417    
418            @Override
419            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance getRuleGroupInstance(
420                    long ruleGroupInstanceId)
421                    throws com.liferay.portal.kernel.exception.PortalException,
422                            com.liferay.portal.kernel.exception.SystemException {
423                    return _mdrRuleGroupInstanceLocalService.getRuleGroupInstance(ruleGroupInstanceId);
424            }
425    
426            @Override
427            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance getRuleGroupInstance(
428                    java.lang.String className, long classPK, long ruleGroupId)
429                    throws com.liferay.portal.kernel.exception.PortalException,
430                            com.liferay.portal.kernel.exception.SystemException {
431                    return _mdrRuleGroupInstanceLocalService.getRuleGroupInstance(className,
432                            classPK, ruleGroupId);
433            }
434    
435            @Override
436            public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance> getRuleGroupInstances(
437                    long ruleGroupId)
438                    throws com.liferay.portal.kernel.exception.SystemException {
439                    return _mdrRuleGroupInstanceLocalService.getRuleGroupInstances(ruleGroupId);
440            }
441    
442            @Override
443            public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance> getRuleGroupInstances(
444                    long ruleGroupId, int start, int end)
445                    throws com.liferay.portal.kernel.exception.SystemException {
446                    return _mdrRuleGroupInstanceLocalService.getRuleGroupInstances(ruleGroupId,
447                            start, end);
448            }
449    
450            @Override
451            public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance> getRuleGroupInstances(
452                    java.lang.String className, long classPK)
453                    throws com.liferay.portal.kernel.exception.SystemException {
454                    return _mdrRuleGroupInstanceLocalService.getRuleGroupInstances(className,
455                            classPK);
456            }
457    
458            @Override
459            public java.util.List<com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance> getRuleGroupInstances(
460                    java.lang.String className, long classPK, int start, int end,
461                    com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
462                    throws com.liferay.portal.kernel.exception.SystemException {
463                    return _mdrRuleGroupInstanceLocalService.getRuleGroupInstances(className,
464                            classPK, start, end, orderByComparator);
465            }
466    
467            @Override
468            public int getRuleGroupInstancesCount(long ruleGroupId)
469                    throws com.liferay.portal.kernel.exception.SystemException {
470                    return _mdrRuleGroupInstanceLocalService.getRuleGroupInstancesCount(ruleGroupId);
471            }
472    
473            @Override
474            public int getRuleGroupInstancesCount(java.lang.String className,
475                    long classPK)
476                    throws com.liferay.portal.kernel.exception.SystemException {
477                    return _mdrRuleGroupInstanceLocalService.getRuleGroupInstancesCount(className,
478                            classPK);
479            }
480    
481            @Override
482            public com.liferay.portlet.mobiledevicerules.model.MDRRuleGroupInstance updateRuleGroupInstance(
483                    long ruleGroupInstanceId, int priority)
484                    throws com.liferay.portal.kernel.exception.PortalException,
485                            com.liferay.portal.kernel.exception.SystemException {
486                    return _mdrRuleGroupInstanceLocalService.updateRuleGroupInstance(ruleGroupInstanceId,
487                            priority);
488            }
489    
490            /**
491             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
492             */
493            public MDRRuleGroupInstanceLocalService getWrappedMDRRuleGroupInstanceLocalService() {
494                    return _mdrRuleGroupInstanceLocalService;
495            }
496    
497            /**
498             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
499             */
500            public void setWrappedMDRRuleGroupInstanceLocalService(
501                    MDRRuleGroupInstanceLocalService mdrRuleGroupInstanceLocalService) {
502                    _mdrRuleGroupInstanceLocalService = mdrRuleGroupInstanceLocalService;
503            }
504    
505            @Override
506            public MDRRuleGroupInstanceLocalService getWrappedService() {
507                    return _mdrRuleGroupInstanceLocalService;
508            }
509    
510            @Override
511            public void setWrappedService(
512                    MDRRuleGroupInstanceLocalService mdrRuleGroupInstanceLocalService) {
513                    _mdrRuleGroupInstanceLocalService = mdrRuleGroupInstanceLocalService;
514            }
515    
516            private MDRRuleGroupInstanceLocalService _mdrRuleGroupInstanceLocalService;
517    }