001    /**
002     * Copyright (c) 2000-present 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.portal.service;
016    
017    import aQute.bnd.annotation.ProviderType;
018    
019    /**
020     * Provides a wrapper for {@link LayoutSetPrototypeService}.
021     *
022     * @author Brian Wing Shun Chan
023     * @see LayoutSetPrototypeService
024     * @generated
025     */
026    @ProviderType
027    public class LayoutSetPrototypeServiceWrapper
028            implements LayoutSetPrototypeService,
029                    ServiceWrapper<LayoutSetPrototypeService> {
030            public LayoutSetPrototypeServiceWrapper(
031                    LayoutSetPrototypeService layoutSetPrototypeService) {
032                    _layoutSetPrototypeService = layoutSetPrototypeService;
033            }
034    
035            /**
036            * @deprecated As of 7.0.0, replaced by {@link #addLayoutSetPrototype(Map,
037            Map, boolean, boolean, ServiceContext)}
038            */
039            @Deprecated
040            @Override
041            public com.liferay.portal.model.LayoutSetPrototype addLayoutSetPrototype(
042                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
043                    java.lang.String description, boolean active,
044                    boolean layoutsUpdateable,
045                    com.liferay.portal.service.ServiceContext serviceContext)
046                    throws com.liferay.portal.kernel.exception.PortalException {
047                    return _layoutSetPrototypeService.addLayoutSetPrototype(nameMap,
048                            description, active, layoutsUpdateable, serviceContext);
049            }
050    
051            @Override
052            public com.liferay.portal.model.LayoutSetPrototype addLayoutSetPrototype(
053                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
054                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
055                    boolean active, boolean layoutsUpdateable,
056                    com.liferay.portal.service.ServiceContext serviceContext)
057                    throws com.liferay.portal.kernel.exception.PortalException {
058                    return _layoutSetPrototypeService.addLayoutSetPrototype(nameMap,
059                            descriptionMap, active, layoutsUpdateable, serviceContext);
060            }
061    
062            @Override
063            public void deleteLayoutSetPrototype(long layoutSetPrototypeId)
064                    throws com.liferay.portal.kernel.exception.PortalException {
065                    _layoutSetPrototypeService.deleteLayoutSetPrototype(layoutSetPrototypeId);
066            }
067    
068            @Override
069            public com.liferay.portal.model.LayoutSetPrototype fetchLayoutSetPrototype(
070                    long layoutSetPrototypeId)
071                    throws com.liferay.portal.kernel.exception.PortalException {
072                    return _layoutSetPrototypeService.fetchLayoutSetPrototype(layoutSetPrototypeId);
073            }
074    
075            /**
076            * Returns the Spring bean ID for this bean.
077            *
078            * @return the Spring bean ID for this bean
079            */
080            @Override
081            public java.lang.String getBeanIdentifier() {
082                    return _layoutSetPrototypeService.getBeanIdentifier();
083            }
084    
085            @Override
086            public com.liferay.portal.model.LayoutSetPrototype getLayoutSetPrototype(
087                    long layoutSetPrototypeId)
088                    throws com.liferay.portal.kernel.exception.PortalException {
089                    return _layoutSetPrototypeService.getLayoutSetPrototype(layoutSetPrototypeId);
090            }
091    
092            @Override
093            public java.util.List<com.liferay.portal.model.LayoutSetPrototype> search(
094                    long companyId, java.lang.Boolean active,
095                    com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.model.LayoutSetPrototype> obc)
096                    throws com.liferay.portal.kernel.exception.PortalException {
097                    return _layoutSetPrototypeService.search(companyId, active, obc);
098            }
099    
100            /**
101            * Sets the Spring bean ID for this bean.
102            *
103            * @param beanIdentifier the Spring bean ID for this bean
104            */
105            @Override
106            public void setBeanIdentifier(java.lang.String beanIdentifier) {
107                    _layoutSetPrototypeService.setBeanIdentifier(beanIdentifier);
108            }
109    
110            /**
111            * @deprecated As of 7.0.0, replaced by {@link
112            #updateLayoutSetPrototype(long, Map, Map, boolean, boolean,
113            ServiceContext)}
114            */
115            @Deprecated
116            @Override
117            public com.liferay.portal.model.LayoutSetPrototype updateLayoutSetPrototype(
118                    long layoutSetPrototypeId,
119                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
120                    java.lang.String description, boolean active,
121                    boolean layoutsUpdateable,
122                    com.liferay.portal.service.ServiceContext serviceContext)
123                    throws com.liferay.portal.kernel.exception.PortalException {
124                    return _layoutSetPrototypeService.updateLayoutSetPrototype(layoutSetPrototypeId,
125                            nameMap, description, active, layoutsUpdateable, serviceContext);
126            }
127    
128            @Override
129            public com.liferay.portal.model.LayoutSetPrototype updateLayoutSetPrototype(
130                    long layoutSetPrototypeId,
131                    java.util.Map<java.util.Locale, java.lang.String> nameMap,
132                    java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
133                    boolean active, boolean layoutsUpdateable,
134                    com.liferay.portal.service.ServiceContext serviceContext)
135                    throws com.liferay.portal.kernel.exception.PortalException {
136                    return _layoutSetPrototypeService.updateLayoutSetPrototype(layoutSetPrototypeId,
137                            nameMap, descriptionMap, active, layoutsUpdateable, serviceContext);
138            }
139    
140            @Override
141            public com.liferay.portal.model.LayoutSetPrototype updateLayoutSetPrototype(
142                    long layoutSetPrototypeId, java.lang.String settings)
143                    throws com.liferay.portal.kernel.exception.PortalException {
144                    return _layoutSetPrototypeService.updateLayoutSetPrototype(layoutSetPrototypeId,
145                            settings);
146            }
147    
148            /**
149             * @deprecated As of 6.1.0, replaced by {@link #getWrappedService}
150             */
151            @Deprecated
152            public LayoutSetPrototypeService getWrappedLayoutSetPrototypeService() {
153                    return _layoutSetPrototypeService;
154            }
155    
156            /**
157             * @deprecated As of 6.1.0, replaced by {@link #setWrappedService}
158             */
159            @Deprecated
160            public void setWrappedLayoutSetPrototypeService(
161                    LayoutSetPrototypeService layoutSetPrototypeService) {
162                    _layoutSetPrototypeService = layoutSetPrototypeService;
163            }
164    
165            @Override
166            public LayoutSetPrototypeService getWrappedService() {
167                    return _layoutSetPrototypeService;
168            }
169    
170            @Override
171            public void setWrappedService(
172                    LayoutSetPrototypeService layoutSetPrototypeService) {
173                    _layoutSetPrototypeService = layoutSetPrototypeService;
174            }
175    
176            private LayoutSetPrototypeService _layoutSetPrototypeService;
177    }