001
014
015 package com.liferay.portal.service;
016
017
024 public class LayoutRevisionServiceWrapper implements LayoutRevisionService,
025 ServiceWrapper<LayoutRevisionService> {
026 public LayoutRevisionServiceWrapper(
027 LayoutRevisionService layoutRevisionService) {
028 _layoutRevisionService = layoutRevisionService;
029 }
030
031
036 @Override
037 public java.lang.String getBeanIdentifier() {
038 return _layoutRevisionService.getBeanIdentifier();
039 }
040
041
046 @Override
047 public void setBeanIdentifier(java.lang.String beanIdentifier) {
048 _layoutRevisionService.setBeanIdentifier(beanIdentifier);
049 }
050
051 @Override
052 public com.liferay.portal.model.LayoutRevision addLayoutRevision(
053 long userId, long layoutSetBranchId, long layoutBranchId,
054 long parentLayoutRevisionId, boolean head, long plid,
055 long portletPreferencesPlid, boolean privateLayout,
056 java.lang.String name, java.lang.String title,
057 java.lang.String description, java.lang.String keywords,
058 java.lang.String robots, java.lang.String typeSettings,
059 boolean iconImage, long iconImageId, java.lang.String themeId,
060 java.lang.String colorSchemeId, java.lang.String wapThemeId,
061 java.lang.String wapColorSchemeId, java.lang.String css,
062 com.liferay.portal.service.ServiceContext serviceContext)
063 throws com.liferay.portal.kernel.exception.PortalException,
064 com.liferay.portal.kernel.exception.SystemException {
065 return _layoutRevisionService.addLayoutRevision(userId,
066 layoutSetBranchId, layoutBranchId, parentLayoutRevisionId, head,
067 plid, portletPreferencesPlid, privateLayout, name, title,
068 description, keywords, robots, typeSettings, iconImage,
069 iconImageId, themeId, colorSchemeId, wapThemeId, wapColorSchemeId,
070 css, serviceContext);
071 }
072
073
076 public LayoutRevisionService getWrappedLayoutRevisionService() {
077 return _layoutRevisionService;
078 }
079
080
083 public void setWrappedLayoutRevisionService(
084 LayoutRevisionService layoutRevisionService) {
085 _layoutRevisionService = layoutRevisionService;
086 }
087
088 @Override
089 public LayoutRevisionService getWrappedService() {
090 return _layoutRevisionService;
091 }
092
093 @Override
094 public void setWrappedService(LayoutRevisionService layoutRevisionService) {
095 _layoutRevisionService = layoutRevisionService;
096 }
097
098 private LayoutRevisionService _layoutRevisionService;
099 }