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 updateLogo(long groupId, boolean privateLayout,
041                    boolean logo, java.io.InputStream inputStream)
042                    throws com.liferay.portal.kernel.exception.PortalException,
043                            com.liferay.portal.kernel.exception.SystemException {
044                    getService().updateLogo(groupId, privateLayout, logo, inputStream);
045            }
046    
047            public static com.liferay.portal.model.LayoutSet updateLookAndFeel(
048                    long groupId, boolean privateLayout, java.lang.String themeId,
049                    java.lang.String colorSchemeId, java.lang.String css, boolean wapTheme)
050                    throws com.liferay.portal.kernel.exception.PortalException,
051                            com.liferay.portal.kernel.exception.SystemException {
052                    return getService()
053                                       .updateLookAndFeel(groupId, privateLayout, themeId,
054                            colorSchemeId, css, wapTheme);
055            }
056    
057            public static com.liferay.portal.model.LayoutSet updateSettings(
058                    long groupId, boolean privateLayout, java.lang.String settings)
059                    throws com.liferay.portal.kernel.exception.PortalException,
060                            com.liferay.portal.kernel.exception.SystemException {
061                    return getService().updateSettings(groupId, privateLayout, settings);
062            }
063    
064            public static com.liferay.portal.model.LayoutSet updateVirtualHost(
065                    long groupId, boolean privateLayout, java.lang.String virtualHost)
066                    throws com.liferay.portal.kernel.exception.PortalException,
067                            com.liferay.portal.kernel.exception.SystemException {
068                    return getService()
069                                       .updateVirtualHost(groupId, privateLayout, virtualHost);
070            }
071    
072            public static LayoutSetService getService() {
073                    if (_service == null) {
074                            _service = (LayoutSetService)PortalBeanLocatorUtil.locate(LayoutSetService.class.getName());
075    
076                            ReferenceRegistry.registerReference(LayoutSetServiceUtil.class,
077                                    "_service");
078                            MethodCache.remove(LayoutSetService.class);
079                    }
080    
081                    return _service;
082            }
083    
084            public void setService(LayoutSetService service) {
085                    MethodCache.remove(LayoutSetService.class);
086    
087                    _service = service;
088    
089                    ReferenceRegistry.registerReference(LayoutSetServiceUtil.class,
090                            "_service");
091                    MethodCache.remove(LayoutSetService.class);
092            }
093    
094            private static LayoutSetService _service;
095    }