001
014
015 package com.liferay.portal.service;
016
017
026 public class LayoutRevisionServiceWrapper implements LayoutRevisionService,
027 ServiceWrapper<LayoutRevisionService> {
028 public LayoutRevisionServiceWrapper(
029 LayoutRevisionService layoutRevisionService) {
030 _layoutRevisionService = layoutRevisionService;
031 }
032
033 public com.liferay.portal.model.LayoutRevision addLayoutRevision(
034 long userId, long layoutSetBranchId, long layoutBranchId,
035 long parentLayoutRevisionId, boolean head, long plid,
036 long portletPreferencesPlid, boolean privateLayout,
037 java.lang.String name, java.lang.String title,
038 java.lang.String description, java.lang.String keywords,
039 java.lang.String robots, java.lang.String typeSettings,
040 boolean iconImage, long iconImageId, java.lang.String themeId,
041 java.lang.String colorSchemeId, java.lang.String wapThemeId,
042 java.lang.String wapColorSchemeId, java.lang.String css,
043 com.liferay.portal.service.ServiceContext serviceContext)
044 throws com.liferay.portal.kernel.exception.PortalException,
045 com.liferay.portal.kernel.exception.SystemException {
046 return _layoutRevisionService.addLayoutRevision(userId,
047 layoutSetBranchId, layoutBranchId, parentLayoutRevisionId, head,
048 plid, portletPreferencesPlid, privateLayout, name, title,
049 description, keywords, robots, typeSettings, iconImage,
050 iconImageId, themeId, colorSchemeId, wapThemeId, wapColorSchemeId,
051 css, serviceContext);
052 }
053
054
057 public LayoutRevisionService getWrappedLayoutRevisionService() {
058 return _layoutRevisionService;
059 }
060
061
064 public void setWrappedLayoutRevisionService(
065 LayoutRevisionService layoutRevisionService) {
066 _layoutRevisionService = layoutRevisionService;
067 }
068
069 public LayoutRevisionService getWrappedService() {
070 return _layoutRevisionService;
071 }
072
073 public void setWrappedService(LayoutRevisionService layoutRevisionService) {
074 _layoutRevisionService = layoutRevisionService;
075 }
076
077 private LayoutRevisionService _layoutRevisionService;
078 }