001
014
015 package com.liferay.portal.service;
016
017
026 public class LayoutSetPrototypeServiceWrapper
027 implements LayoutSetPrototypeService {
028 public LayoutSetPrototypeServiceWrapper(
029 LayoutSetPrototypeService layoutSetPrototypeService) {
030 _layoutSetPrototypeService = layoutSetPrototypeService;
031 }
032
033 public com.liferay.portal.model.LayoutSetPrototype addLayoutSetPrototype(
034 java.util.Map<java.util.Locale, java.lang.String> nameMap,
035 java.lang.String description, boolean active,
036 boolean allowModifications, boolean allowLayoutAddition,
037 com.liferay.portal.service.ServiceContext serviceContext)
038 throws com.liferay.portal.kernel.exception.PortalException,
039 com.liferay.portal.kernel.exception.SystemException {
040 return _layoutSetPrototypeService.addLayoutSetPrototype(nameMap,
041 description, active, allowModifications, allowLayoutAddition,
042 serviceContext);
043 }
044
045 public void deleteLayoutSetPrototype(long layoutSetPrototypeId)
046 throws com.liferay.portal.kernel.exception.PortalException,
047 com.liferay.portal.kernel.exception.SystemException {
048 _layoutSetPrototypeService.deleteLayoutSetPrototype(layoutSetPrototypeId);
049 }
050
051 public com.liferay.portal.model.LayoutSetPrototype getLayoutSetPrototype(
052 long layoutSetPrototypeId)
053 throws com.liferay.portal.kernel.exception.PortalException,
054 com.liferay.portal.kernel.exception.SystemException {
055 return _layoutSetPrototypeService.getLayoutSetPrototype(layoutSetPrototypeId);
056 }
057
058 public java.util.List<com.liferay.portal.model.LayoutSetPrototype> search(
059 long companyId, java.lang.Boolean active,
060 com.liferay.portal.kernel.util.OrderByComparator obc)
061 throws com.liferay.portal.kernel.exception.PortalException,
062 com.liferay.portal.kernel.exception.SystemException {
063 return _layoutSetPrototypeService.search(companyId, active, obc);
064 }
065
066 public com.liferay.portal.model.LayoutSetPrototype updateLayoutSetPrototype(
067 long layoutSetPrototypeId,
068 java.util.Map<java.util.Locale, java.lang.String> nameMap,
069 java.lang.String description, boolean active,
070 boolean allowModifications, boolean allowLayoutAddition,
071 com.liferay.portal.service.ServiceContext serviceContext)
072 throws com.liferay.portal.kernel.exception.PortalException,
073 com.liferay.portal.kernel.exception.SystemException {
074 return _layoutSetPrototypeService.updateLayoutSetPrototype(layoutSetPrototypeId,
075 nameMap, description, active, allowModifications,
076 allowLayoutAddition, serviceContext);
077 }
078
079 public com.liferay.portal.model.LayoutSetPrototype updateLayoutSetPrototype(
080 long layoutSetPrototypeId, java.lang.String settings)
081 throws com.liferay.portal.kernel.exception.PortalException,
082 com.liferay.portal.kernel.exception.SystemException {
083 return _layoutSetPrototypeService.updateLayoutSetPrototype(layoutSetPrototypeId,
084 settings);
085 }
086
087 public LayoutSetPrototypeService getWrappedLayoutSetPrototypeService() {
088 return _layoutSetPrototypeService;
089 }
090
091 public void setWrappedLayoutSetPrototypeService(
092 LayoutSetPrototypeService layoutSetPrototypeService) {
093 _layoutSetPrototypeService = layoutSetPrototypeService;
094 }
095
096 private LayoutSetPrototypeService _layoutSetPrototypeService;
097 }