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.portal.service;
016    
017    /**
018     * <p>
019     * This class is a wrapper for {@link LayoutTemplateLocalService}.
020     * </p>
021     *
022     * @author    Brian Wing Shun Chan
023     * @see       LayoutTemplateLocalService
024     * @generated
025     */
026    public class LayoutTemplateLocalServiceWrapper
027            implements LayoutTemplateLocalService,
028                    ServiceWrapper<LayoutTemplateLocalService> {
029            public LayoutTemplateLocalServiceWrapper(
030                    LayoutTemplateLocalService layoutTemplateLocalService) {
031                    _layoutTemplateLocalService = layoutTemplateLocalService;
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 _layoutTemplateLocalService.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                    _layoutTemplateLocalService.setBeanIdentifier(beanIdentifier);
050            }
051    
052            public java.lang.String getContent(java.lang.String layoutTemplateId,
053                    boolean standard, java.lang.String themeId)
054                    throws com.liferay.portal.kernel.exception.SystemException {
055                    return _layoutTemplateLocalService.getContent(layoutTemplateId,
056                            standard, themeId);
057            }
058    
059            public com.liferay.portal.model.LayoutTemplate getLayoutTemplate(
060                    java.lang.String layoutTemplateId, boolean standard,
061                    java.lang.String themeId) {
062                    return _layoutTemplateLocalService.getLayoutTemplate(layoutTemplateId,
063                            standard, themeId);
064            }
065    
066            public java.util.List<com.liferay.portal.model.LayoutTemplate> getLayoutTemplates() {
067                    return _layoutTemplateLocalService.getLayoutTemplates();
068            }
069    
070            public java.util.List<com.liferay.portal.model.LayoutTemplate> getLayoutTemplates(
071                    java.lang.String themeId) {
072                    return _layoutTemplateLocalService.getLayoutTemplates(themeId);
073            }
074    
075            public java.lang.String getWapContent(java.lang.String layoutTemplateId,
076                    boolean standard, java.lang.String themeId)
077                    throws com.liferay.portal.kernel.exception.SystemException {
078                    return _layoutTemplateLocalService.getWapContent(layoutTemplateId,
079                            standard, themeId);
080            }
081    
082            public java.util.List<com.liferay.portal.kernel.util.ObjectValuePair<java.lang.String, java.lang.Boolean>> init(
083                    javax.servlet.ServletContext servletContext, java.lang.String[] xmls,
084                    com.liferay.portal.kernel.plugin.PluginPackage pluginPackage) {
085                    return _layoutTemplateLocalService.init(servletContext, xmls,
086                            pluginPackage);
087            }
088    
089            public java.util.List<com.liferay.portal.kernel.util.ObjectValuePair<java.lang.String, java.lang.Boolean>> init(
090                    java.lang.String servletContextName,
091                    javax.servlet.ServletContext servletContext, java.lang.String[] xmls,
092                    com.liferay.portal.kernel.plugin.PluginPackage pluginPackage) {
093                    return _layoutTemplateLocalService.init(servletContextName,
094                            servletContext, xmls, pluginPackage);
095            }
096    
097            public void readLayoutTemplate(java.lang.String servletContextName,
098                    javax.servlet.ServletContext servletContext,
099                    java.util.Set<com.liferay.portal.kernel.util.ObjectValuePair<java.lang.String, java.lang.Boolean>> layoutTemplateIds,
100                    com.liferay.portal.kernel.xml.Element el, boolean standard,
101                    java.lang.String themeId,
102                    com.liferay.portal.kernel.plugin.PluginPackage pluginPackage) {
103                    _layoutTemplateLocalService.readLayoutTemplate(servletContextName,
104                            servletContext, layoutTemplateIds, el, standard, themeId,
105                            pluginPackage);
106            }
107    
108            public void uninstallLayoutTemplate(java.lang.String layoutTemplateId,
109                    boolean standard) {
110                    _layoutTemplateLocalService.uninstallLayoutTemplate(layoutTemplateId,
111                            standard);
112            }
113    
114            public void uninstallLayoutTemplates(java.lang.String themeId) {
115                    _layoutTemplateLocalService.uninstallLayoutTemplates(themeId);
116            }
117    
118            /**
119             * @deprecated Renamed to {@link #getWrappedService}
120             */
121            public LayoutTemplateLocalService getWrappedLayoutTemplateLocalService() {
122                    return _layoutTemplateLocalService;
123            }
124    
125            /**
126             * @deprecated Renamed to {@link #setWrappedService}
127             */
128            public void setWrappedLayoutTemplateLocalService(
129                    LayoutTemplateLocalService layoutTemplateLocalService) {
130                    _layoutTemplateLocalService = layoutTemplateLocalService;
131            }
132    
133            public LayoutTemplateLocalService getWrappedService() {
134                    return _layoutTemplateLocalService;
135            }
136    
137            public void setWrappedService(
138                    LayoutTemplateLocalService layoutTemplateLocalService) {
139                    _layoutTemplateLocalService = layoutTemplateLocalService;
140            }
141    
142            private LayoutTemplateLocalService _layoutTemplateLocalService;
143    }