001
014
015 package com.liferay.portlet.expando.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class ExpandoColumnServiceWrapper implements ExpandoColumnService,
029 ServiceWrapper<ExpandoColumnService> {
030 public ExpandoColumnServiceWrapper(
031 ExpandoColumnService expandoColumnService) {
032 _expandoColumnService = expandoColumnService;
033 }
034
035 public com.liferay.portlet.expando.model.ExpandoColumn addColumn(
036 long tableId, java.lang.String name, int type)
037 throws com.liferay.portal.kernel.exception.PortalException,
038 com.liferay.portal.kernel.exception.SystemException {
039 return _expandoColumnService.addColumn(tableId, name, type);
040 }
041
042 public com.liferay.portlet.expando.model.ExpandoColumn addColumn(
043 long tableId, java.lang.String name, int type,
044 java.lang.Object defaultData)
045 throws com.liferay.portal.kernel.exception.PortalException,
046 com.liferay.portal.kernel.exception.SystemException {
047 return _expandoColumnService.addColumn(tableId, name, type, defaultData);
048 }
049
050 public void deleteColumn(long columnId)
051 throws com.liferay.portal.kernel.exception.PortalException,
052 com.liferay.portal.kernel.exception.SystemException {
053 _expandoColumnService.deleteColumn(columnId);
054 }
055
056 public com.liferay.portlet.expando.model.ExpandoColumn updateColumn(
057 long columnId, java.lang.String name, int type)
058 throws com.liferay.portal.kernel.exception.PortalException,
059 com.liferay.portal.kernel.exception.SystemException {
060 return _expandoColumnService.updateColumn(columnId, name, type);
061 }
062
063 public com.liferay.portlet.expando.model.ExpandoColumn updateColumn(
064 long columnId, java.lang.String name, int type,
065 java.lang.Object defaultData)
066 throws com.liferay.portal.kernel.exception.PortalException,
067 com.liferay.portal.kernel.exception.SystemException {
068 return _expandoColumnService.updateColumn(columnId, name, type,
069 defaultData);
070 }
071
072 public com.liferay.portlet.expando.model.ExpandoColumn updateTypeSettings(
073 long columnId, java.lang.String typeSettings)
074 throws com.liferay.portal.kernel.exception.PortalException,
075 com.liferay.portal.kernel.exception.SystemException {
076 return _expandoColumnService.updateTypeSettings(columnId, typeSettings);
077 }
078
079
082 public ExpandoColumnService getWrappedExpandoColumnService() {
083 return _expandoColumnService;
084 }
085
086
089 public void setWrappedExpandoColumnService(
090 ExpandoColumnService expandoColumnService) {
091 _expandoColumnService = expandoColumnService;
092 }
093
094 public ExpandoColumnService getWrappedService() {
095 return _expandoColumnService;
096 }
097
098 public void setWrappedService(ExpandoColumnService expandoColumnService) {
099 _expandoColumnService = expandoColumnService;
100 }
101
102 private ExpandoColumnService _expandoColumnService;
103 }