001
014
015 package com.liferay.portal.service;
016
017
026 public class LayoutBranchServiceWrapper implements LayoutBranchService,
027 ServiceWrapper<LayoutBranchService> {
028 public LayoutBranchServiceWrapper(LayoutBranchService layoutBranchService) {
029 _layoutBranchService = layoutBranchService;
030 }
031
032 public com.liferay.portal.model.LayoutBranch addLayoutBranch(
033 long layoutRevisionId, java.lang.String name,
034 java.lang.String description, boolean master,
035 com.liferay.portal.service.ServiceContext serviceContext)
036 throws com.liferay.portal.kernel.exception.PortalException,
037 com.liferay.portal.kernel.exception.SystemException {
038 return _layoutBranchService.addLayoutBranch(layoutRevisionId, name,
039 description, master, serviceContext);
040 }
041
042 public void deleteLayoutBranch(long layoutBranchId)
043 throws com.liferay.portal.kernel.exception.PortalException,
044 com.liferay.portal.kernel.exception.SystemException {
045 _layoutBranchService.deleteLayoutBranch(layoutBranchId);
046 }
047
048 public com.liferay.portal.model.LayoutBranch updateLayoutBranch(
049 long layoutBranchId, java.lang.String name,
050 java.lang.String description,
051 com.liferay.portal.service.ServiceContext serviceContext)
052 throws com.liferay.portal.kernel.exception.PortalException,
053 com.liferay.portal.kernel.exception.SystemException {
054 return _layoutBranchService.updateLayoutBranch(layoutBranchId, name,
055 description, serviceContext);
056 }
057
058
061 public LayoutBranchService getWrappedLayoutBranchService() {
062 return _layoutBranchService;
063 }
064
065
068 public void setWrappedLayoutBranchService(
069 LayoutBranchService layoutBranchService) {
070 _layoutBranchService = layoutBranchService;
071 }
072
073 public LayoutBranchService getWrappedService() {
074 return _layoutBranchService;
075 }
076
077 public void setWrappedService(LayoutBranchService layoutBranchService) {
078 _layoutBranchService = layoutBranchService;
079 }
080
081 private LayoutBranchService _layoutBranchService;
082 }