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