001
014
015 package com.liferay.portal.service;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
020 import com.liferay.portal.kernel.util.ReferenceRegistry;
021
022
036 @ProviderType
037 public class LayoutBranchServiceUtil {
038
043 public static com.liferay.portal.model.LayoutBranch addLayoutBranch(
044 long layoutRevisionId, java.lang.String name,
045 java.lang.String description, boolean master,
046 com.liferay.portal.service.ServiceContext serviceContext)
047 throws com.liferay.portal.kernel.exception.PortalException {
048 return getService()
049 .addLayoutBranch(layoutRevisionId, name, description,
050 master, serviceContext);
051 }
052
053 public static void deleteLayoutBranch(long layoutBranchId)
054 throws com.liferay.portal.kernel.exception.PortalException {
055 getService().deleteLayoutBranch(layoutBranchId);
056 }
057
058
063 public static java.lang.String getOSGiServiceIdentifier() {
064 return getService().getOSGiServiceIdentifier();
065 }
066
067 public static com.liferay.portal.model.LayoutBranch updateLayoutBranch(
068 long layoutBranchId, java.lang.String name,
069 java.lang.String description,
070 com.liferay.portal.service.ServiceContext serviceContext)
071 throws com.liferay.portal.kernel.exception.PortalException {
072 return getService()
073 .updateLayoutBranch(layoutBranchId, name, description,
074 serviceContext);
075 }
076
077 public static LayoutBranchService getService() {
078 if (_service == null) {
079 _service = (LayoutBranchService)PortalBeanLocatorUtil.locate(LayoutBranchService.class.getName());
080
081 ReferenceRegistry.registerReference(LayoutBranchServiceUtil.class,
082 "_service");
083 }
084
085 return _service;
086 }
087
088 private static LayoutBranchService _service;
089 }