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.portal.service;
016    
017    import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018    import com.liferay.portal.kernel.util.MethodCache;
019    import com.liferay.portal.kernel.util.ReferenceRegistry;
020    
021    /**
022     * The utility for the layout set remote service. This utility wraps {@link com.liferay.portal.service.impl.LayoutSetServiceImpl} and is the primary access point for service operations in application layer code running on a remote server.
023     *
024     * <p>
025     * This is a remote service. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.
026     * </p>
027     *
028     * @author Brian Wing Shun Chan
029     * @see LayoutSetService
030     * @see com.liferay.portal.service.base.LayoutSetServiceBaseImpl
031     * @see com.liferay.portal.service.impl.LayoutSetServiceImpl
032     * @generated
033     */
034    public class LayoutSetServiceUtil {
035            /*
036             * NOTE FOR DEVELOPERS:
037             *
038             * Never modify this class directly. Add custom service methods to {@link com.liferay.portal.service.impl.LayoutSetServiceImpl} and rerun ServiceBuilder to regenerate this class.
039             */
040            public static void updateLayoutSetPrototypeLinkEnabled(long groupId,
041                    boolean privateLayout, boolean layoutSetPrototypeLinkEnabled)
042                    throws com.liferay.portal.kernel.exception.PortalException,
043                            com.liferay.portal.kernel.exception.SystemException {
044                    getService()
045                            .updateLayoutSetPrototypeLinkEnabled(groupId, privateLayout,
046                            layoutSetPrototypeLinkEnabled);
047            }
048    
049            public static void updateLogo(long groupId, boolean privateLayout,
050                    boolean logo, java.io.InputStream inputStream)
051                    throws com.liferay.portal.kernel.exception.PortalException,
052                            com.liferay.portal.kernel.exception.SystemException {
053                    getService().updateLogo(groupId, privateLayout, logo, inputStream);
054            }
055    
056            public static void updateLogo(long groupId, boolean privateLayout,
057                    boolean logo, java.io.InputStream inputStream, boolean cleanUpStream)
058                    throws com.liferay.portal.kernel.exception.PortalException,
059                            com.liferay.portal.kernel.exception.SystemException {
060                    getService()
061                            .updateLogo(groupId, privateLayout, logo, inputStream, cleanUpStream);
062            }
063    
064            public static com.liferay.portal.model.LayoutSet updateLookAndFeel(
065                    long groupId, boolean privateLayout, java.lang.String themeId,
066                    java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
067                    throws com.liferay.portal.kernel.exception.PortalException,
068                            com.liferay.portal.kernel.exception.SystemException {
069                    return getService()
070                                       .updateLookAndFeel(groupId, privateLayout, themeId,
071                            colorSchemeId, css, wapTheme);
072            }
073    
074            public static com.liferay.portal.model.LayoutSet updateSettings(
075                    long groupId, boolean privateLayout, java.lang.String settings)
076                    throws com.liferay.portal.kernel.exception.PortalException,
077                            com.liferay.portal.kernel.exception.SystemException {
078                    return getService().updateSettings(groupId, privateLayout, settings);
079            }
080    
081            public static com.liferay.portal.model.LayoutSet updateVirtualHost(
082                    long groupId, boolean privateLayout, java.lang.String virtualHost)
083                    throws com.liferay.portal.kernel.exception.PortalException,
084                            com.liferay.portal.kernel.exception.SystemException {
085                    return getService()
086                                       .updateVirtualHost(groupId, privateLayout, virtualHost);
087            }
088    
089            public static LayoutSetService getService() {
090                    if (_service == null) {
091                            _service = (LayoutSetService)PortalBeanLocatorUtil.locate(LayoutSetService.class.getName());
092    
093                            ReferenceRegistry.registerReference(LayoutSetServiceUtil.class,
094                                    "_service");
095                            MethodCache.remove(LayoutSetService.class);
096                    }
097    
098                    return _service;
099            }
100    
101            public void setService(LayoutSetService service) {
102                    MethodCache.remove(LayoutSetService.class);
103    
104                    _service = service;
105    
106                    ReferenceRegistry.registerReference(LayoutSetServiceUtil.class,
107                            "_service");
108                    MethodCache.remove(LayoutSetService.class);
109            }
110    
111            private static LayoutSetService _service;
112    }