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 getBeanIdentifier() {
064 return getService().getBeanIdentifier();
065 }
066
067
072 public static void setBeanIdentifier(java.lang.String beanIdentifier) {
073 getService().setBeanIdentifier(beanIdentifier);
074 }
075
076 public static com.liferay.portal.model.LayoutBranch updateLayoutBranch(
077 long layoutBranchId, java.lang.String name,
078 java.lang.String description,
079 com.liferay.portal.service.ServiceContext serviceContext)
080 throws com.liferay.portal.kernel.exception.PortalException {
081 return getService()
082 .updateLayoutBranch(layoutBranchId, name, description,
083 serviceContext);
084 }
085
086 public static LayoutBranchService getService() {
087 if (_service == null) {
088 _service = (LayoutBranchService)PortalBeanLocatorUtil.locate(LayoutBranchService.class.getName());
089
090 ReferenceRegistry.registerReference(LayoutBranchServiceUtil.class,
091 "_service");
092 }
093
094 return _service;
095 }
096
097
100 @Deprecated
101 public void setService(LayoutBranchService service) {
102 }
103
104 private static LayoutBranchService _service;
105 }