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