001    /**
002     * Copyright (c) 2000-2011 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    /**
018     * <p>
019     * This class is a wrapper for {@link MDRActionService}.
020     * </p>
021     *
022     * @author    Edward C. Han
023     * @see       MDRActionService
024     * @generated
025     */
026    public class MDRActionServiceWrapper implements MDRActionService {
027            public MDRActionServiceWrapper(MDRActionService mdrActionService) {
028                    _mdrActionService = mdrActionService;
029            }
030    
031            public com.liferay.portlet.mobiledevicerules.model.MDRAction addAction(
032                    long ruleGroupInstanceId,
033                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
034                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
035                    java.lang.String type, java.lang.String typeSettings,
036                    com.liferay.portal.service.ServiceContext serviceContext)
037                    throws com.liferay.portal.kernel.exception.PortalException,
038                            com.liferay.portal.kernel.exception.SystemException {
039                    return _mdrActionService.addAction(ruleGroupInstanceId, nameMap,
040                            descriptionMap, type, typeSettings, serviceContext);
041            }
042    
043            public com.liferay.portlet.mobiledevicerules.model.MDRAction addAction(
044                    long ruleGroupInstanceId,
045                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
046                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
047                    java.lang.String type,
048                    com.liferay.portal.kernel.util.UnicodeProperties typeSettingsProperties,
049                    com.liferay.portal.service.ServiceContext serviceContext)
050                    throws com.liferay.portal.kernel.exception.PortalException,
051                            com.liferay.portal.kernel.exception.SystemException {
052                    return _mdrActionService.addAction(ruleGroupInstanceId, nameMap,
053                            descriptionMap, type, typeSettingsProperties, serviceContext);
054            }
055    
056            public void deleteAction(long actionId)
057                    throws com.liferay.portal.kernel.exception.PortalException,
058                            com.liferay.portal.kernel.exception.SystemException {
059                    _mdrActionService.deleteAction(actionId);
060            }
061    
062            public void deleteAction(
063                    com.liferay.portlet.mobiledevicerules.model.MDRAction action)
064                    throws com.liferay.portal.kernel.exception.PortalException,
065                            com.liferay.portal.kernel.exception.SystemException {
066                    _mdrActionService.deleteAction(action);
067            }
068    
069            public com.liferay.portlet.mobiledevicerules.model.MDRAction fetchAction(
070                    long actionId)
071                    throws com.liferay.portal.kernel.exception.PortalException,
072                            com.liferay.portal.kernel.exception.SystemException {
073                    return _mdrActionService.fetchAction(actionId);
074            }
075    
076            public com.liferay.portlet.mobiledevicerules.model.MDRAction getAction(
077                    long actionId)
078                    throws com.liferay.portal.kernel.exception.PortalException,
079                            com.liferay.portal.kernel.exception.SystemException {
080                    return _mdrActionService.getAction(actionId);
081            }
082    
083            public com.liferay.portlet.mobiledevicerules.model.MDRAction updateAction(
084                    long actionId,
085                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
086                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
087                    java.lang.String type, java.lang.String typeSettings,
088                    com.liferay.portal.service.ServiceContext serviceContext)
089                    throws com.liferay.portal.kernel.exception.PortalException,
090                            com.liferay.portal.kernel.exception.SystemException {
091                    return _mdrActionService.updateAction(actionId, nameMap,
092                            descriptionMap, type, typeSettings, serviceContext);
093            }
094    
095            public com.liferay.portlet.mobiledevicerules.model.MDRAction updateAction(
096                    long actionId,
097                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
098                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
099                    java.lang.String type,
100                    com.liferay.portal.kernel.util.UnicodeProperties typeSettingsProperties,
101                    com.liferay.portal.service.ServiceContext serviceContext)
102                    throws com.liferay.portal.kernel.exception.PortalException,
103                            com.liferay.portal.kernel.exception.SystemException {
104                    return _mdrActionService.updateAction(actionId, nameMap,
105                            descriptionMap, type, typeSettingsProperties, serviceContext);
106            }
107    
108            public MDRActionService getWrappedMDRActionService() {
109                    return _mdrActionService;
110            }
111    
112            public void setWrappedMDRActionService(MDRActionService mdrActionService) {
113                    _mdrActionService = mdrActionService;
114            }
115    
116            private MDRActionService _mdrActionService;
117    }