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 LayoutSetBranchServiceUtil {
038
043
044
049 public static java.lang.String getBeanIdentifier() {
050 return getService().getBeanIdentifier();
051 }
052
053
058 public static void setBeanIdentifier(java.lang.String beanIdentifier) {
059 getService().setBeanIdentifier(beanIdentifier);
060 }
061
062 public static com.liferay.portal.model.LayoutSetBranch addLayoutSetBranch(
063 long groupId, boolean privateLayout, java.lang.String name,
064 java.lang.String description, boolean master,
065 long copyLayoutSetBranchId,
066 com.liferay.portal.service.ServiceContext serviceContext)
067 throws com.liferay.portal.kernel.exception.PortalException,
068 com.liferay.portal.kernel.exception.SystemException {
069 return getService()
070 .addLayoutSetBranch(groupId, privateLayout, name,
071 description, master, copyLayoutSetBranchId, serviceContext);
072 }
073
074 public static void deleteLayoutSetBranch(long layoutSetBranchId)
075 throws com.liferay.portal.kernel.exception.PortalException,
076 com.liferay.portal.kernel.exception.SystemException {
077 getService().deleteLayoutSetBranch(layoutSetBranchId);
078 }
079
080 public static java.util.List<com.liferay.portal.model.LayoutSetBranch> getLayoutSetBranches(
081 long groupId, boolean privateLayout)
082 throws com.liferay.portal.kernel.exception.SystemException {
083 return getService().getLayoutSetBranches(groupId, privateLayout);
084 }
085
086 public static com.liferay.portal.model.LayoutSetBranch mergeLayoutSetBranch(
087 long layoutSetBranchId, long mergeLayoutSetBranchId,
088 com.liferay.portal.service.ServiceContext serviceContext)
089 throws com.liferay.portal.kernel.exception.PortalException,
090 com.liferay.portal.kernel.exception.SystemException {
091 return getService()
092 .mergeLayoutSetBranch(layoutSetBranchId,
093 mergeLayoutSetBranchId, serviceContext);
094 }
095
096 public static com.liferay.portal.model.LayoutSetBranch updateLayoutSetBranch(
097 long groupId, long layoutSetBranchId, java.lang.String name,
098 java.lang.String description,
099 com.liferay.portal.service.ServiceContext serviceContext)
100 throws com.liferay.portal.kernel.exception.PortalException,
101 com.liferay.portal.kernel.exception.SystemException {
102 return getService()
103 .updateLayoutSetBranch(groupId, layoutSetBranchId, name,
104 description, serviceContext);
105 }
106
107 public static LayoutSetBranchService getService() {
108 if (_service == null) {
109 _service = (LayoutSetBranchService)PortalBeanLocatorUtil.locate(LayoutSetBranchService.class.getName());
110
111 ReferenceRegistry.registerReference(LayoutSetBranchServiceUtil.class,
112 "_service");
113 }
114
115 return _service;
116 }
117
118
121 public void setService(LayoutSetBranchService service) {
122 }
123
124 private static LayoutSetBranchService _service;
125 }