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     * <p>
021     * This class is a wrapper for {@link MDRActionService}.
022     * </p>
023     *
024     * @author    Edward C. Han
025     * @see       MDRActionService
026     * @generated
027     */
028    public class MDRActionServiceWrapper implements MDRActionService,
029            ServiceWrapper<MDRActionService> {
030            public MDRActionServiceWrapper(MDRActionService mdrActionService) {
031                    _mdrActionService = mdrActionService;
032            }
033    
034            /**
035            * Returns the Spring bean ID for this bean.
036            *
037            * @return the Spring bean ID for this bean
038            */
039            public java.lang.String getBeanIdentifier() {
040                    return _mdrActionService.getBeanIdentifier();
041            }
042    
043            /**
044            * Sets the Spring bean ID for this bean.
045            *
046            * @param beanIdentifier the Spring bean ID for this bean
047            */
048            public void setBeanIdentifier(java.lang.String beanIdentifier) {
049                    _mdrActionService.setBeanIdentifier(beanIdentifier);
050            }
051    
052            public com.liferay.portlet.mobiledevicerules.model.MDRAction addAction(
053                    long ruleGroupInstanceId,
054                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
055                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
056                    java.lang.String type, java.lang.String typeSettings,
057                    com.liferay.portal.service.ServiceContext serviceContext)
058                    throws com.liferay.portal.kernel.exception.PortalException,
059                            com.liferay.portal.kernel.exception.SystemException {
060                    return _mdrActionService.addAction(ruleGroupInstanceId, nameMap,
061                            descriptionMap, type, typeSettings, serviceContext);
062            }
063    
064            public com.liferay.portlet.mobiledevicerules.model.MDRAction addAction(
065                    long ruleGroupInstanceId,
066                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
067                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
068                    java.lang.String type,
069                    com.liferay.portal.kernel.util.UnicodeProperties typeSettingsProperties,
070                    com.liferay.portal.service.ServiceContext serviceContext)
071                    throws com.liferay.portal.kernel.exception.PortalException,
072                            com.liferay.portal.kernel.exception.SystemException {
073                    return _mdrActionService.addAction(ruleGroupInstanceId, nameMap,
074                            descriptionMap, type, typeSettingsProperties, serviceContext);
075            }
076    
077            public void deleteAction(long actionId)
078                    throws com.liferay.portal.kernel.exception.PortalException,
079                            com.liferay.portal.kernel.exception.SystemException {
080                    _mdrActionService.deleteAction(actionId);
081            }
082    
083            public com.liferay.portlet.mobiledevicerules.model.MDRAction fetchAction(
084                    long actionId)
085                    throws com.liferay.portal.kernel.exception.PortalException,
086                            com.liferay.portal.kernel.exception.SystemException {
087                    return _mdrActionService.fetchAction(actionId);
088            }
089    
090            public com.liferay.portlet.mobiledevicerules.model.MDRAction getAction(
091                    long actionId)
092                    throws com.liferay.portal.kernel.exception.PortalException,
093                            com.liferay.portal.kernel.exception.SystemException {
094                    return _mdrActionService.getAction(actionId);
095            }
096    
097            public com.liferay.portlet.mobiledevicerules.model.MDRAction updateAction(
098                    long actionId,
099                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
100                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
101                    java.lang.String type, java.lang.String typeSettings,
102                    com.liferay.portal.service.ServiceContext serviceContext)
103                    throws com.liferay.portal.kernel.exception.PortalException,
104                            com.liferay.portal.kernel.exception.SystemException {
105                    return _mdrActionService.updateAction(actionId, nameMap,
106                            descriptionMap, type, typeSettings, serviceContext);
107            }
108    
109            public com.liferay.portlet.mobiledevicerules.model.MDRAction updateAction(
110                    long actionId,
111                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
112                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
113                    java.lang.String type,
114                    com.liferay.portal.kernel.util.UnicodeProperties typeSettingsProperties,
115                    com.liferay.portal.service.ServiceContext serviceContext)
116                    throws com.liferay.portal.kernel.exception.PortalException,
117                            com.liferay.portal.kernel.exception.SystemException {
118                    return _mdrActionService.updateAction(actionId, nameMap,
119                            descriptionMap, type, typeSettingsProperties, serviceContext);
120            }
121    
122            /**
123             * @deprecated Renamed to {@link #getWrappedService}
124             */
125            public MDRActionService getWrappedMDRActionService() {
126                    return _mdrActionService;
127            }
128    
129            /**
130             * @deprecated Renamed to {@link #setWrappedService}
131             */
132            public void setWrappedMDRActionService(MDRActionService mdrActionService) {
133                    _mdrActionService = mdrActionService;
134            }
135    
136            public MDRActionService getWrappedService() {
137                    return _mdrActionService;
138            }
139    
140            public void setWrappedService(MDRActionService mdrActionService) {
141                    _mdrActionService = mdrActionService;
142            }
143    
144            private MDRActionService _mdrActionService;
145    }