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    import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
018    import com.liferay.portal.kernel.util.ReferenceRegistry;
019    
020    /**
021     * The utility for the layout set branch remote service. This utility wraps {@link com.liferay.portal.service.impl.LayoutSetBranchServiceImpl} and is the primary access point for service operations in application layer code running on a remote server.
022     *
023     * <p>
024     * 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.
025     * </p>
026     *
027     * @author Brian Wing Shun Chan
028     * @see LayoutSetBranchService
029     * @see com.liferay.portal.service.base.LayoutSetBranchServiceBaseImpl
030     * @see com.liferay.portal.service.impl.LayoutSetBranchServiceImpl
031     * @generated
032     */
033    public class LayoutSetBranchServiceUtil {
034            /*
035             * NOTE FOR DEVELOPERS:
036             *
037             * Never modify this class directly. Add custom service methods to {@link com.liferay.portal.service.impl.LayoutSetBranchServiceImpl} and rerun ServiceBuilder to regenerate this class.
038             */
039    
040            /**
041            * Returns the Spring bean ID for this bean.
042            *
043            * @return the Spring bean ID for this bean
044            */
045            public static java.lang.String getBeanIdentifier() {
046                    return getService().getBeanIdentifier();
047            }
048    
049            /**
050            * Sets the Spring bean ID for this bean.
051            *
052            * @param beanIdentifier the Spring bean ID for this bean
053            */
054            public static void setBeanIdentifier(java.lang.String beanIdentifier) {
055                    getService().setBeanIdentifier(beanIdentifier);
056            }
057    
058            public static com.liferay.portal.model.LayoutSetBranch addLayoutSetBranch(
059                    long groupId, boolean privateLayout, java.lang.String name,
060                    java.lang.String description, boolean master,
061                    long copyLayoutSetBranchId,
062                    com.liferay.portal.service.ServiceContext serviceContext)
063                    throws com.liferay.portal.kernel.exception.PortalException,
064                            com.liferay.portal.kernel.exception.SystemException {
065                    return getService()
066                                       .addLayoutSetBranch(groupId, privateLayout, name,
067                            description, master, copyLayoutSetBranchId, serviceContext);
068            }
069    
070            public static void deleteLayoutSetBranch(long layoutSetBranchId)
071                    throws com.liferay.portal.kernel.exception.PortalException,
072                            com.liferay.portal.kernel.exception.SystemException {
073                    getService().deleteLayoutSetBranch(layoutSetBranchId);
074            }
075    
076            public static java.util.List<com.liferay.portal.model.LayoutSetBranch> getLayoutSetBranches(
077                    long groupId, boolean privateLayout)
078                    throws com.liferay.portal.kernel.exception.SystemException {
079                    return getService().getLayoutSetBranches(groupId, privateLayout);
080            }
081    
082            public static com.liferay.portal.model.LayoutSetBranch mergeLayoutSetBranch(
083                    long layoutSetBranchId, long mergeLayoutSetBranchId,
084                    com.liferay.portal.service.ServiceContext serviceContext)
085                    throws com.liferay.portal.kernel.exception.PortalException,
086                            com.liferay.portal.kernel.exception.SystemException {
087                    return getService()
088                                       .mergeLayoutSetBranch(layoutSetBranchId,
089                            mergeLayoutSetBranchId, serviceContext);
090            }
091    
092            public static com.liferay.portal.model.LayoutSetBranch updateLayoutSetBranch(
093                    long groupId, long layoutSetBranchId, java.lang.String name,
094                    java.lang.String description,
095                    com.liferay.portal.service.ServiceContext serviceContext)
096                    throws com.liferay.portal.kernel.exception.PortalException,
097                            com.liferay.portal.kernel.exception.SystemException {
098                    return getService()
099                                       .updateLayoutSetBranch(groupId, layoutSetBranchId, name,
100                            description, serviceContext);
101            }
102    
103            public static LayoutSetBranchService getService() {
104                    if (_service == null) {
105                            _service = (LayoutSetBranchService)PortalBeanLocatorUtil.locate(LayoutSetBranchService.class.getName());
106    
107                            ReferenceRegistry.registerReference(LayoutSetBranchServiceUtil.class,
108                                    "_service");
109                    }
110    
111                    return _service;
112            }
113    
114            /**
115             * @deprecated
116             */
117            public void setService(LayoutSetBranchService service) {
118            }
119    
120            private static LayoutSetBranchService _service;
121    }