001
014
015 package com.liferay.portlet.expando.service;
016
017
018
027 public class ExpandoColumnServiceWrapper implements ExpandoColumnService {
028 public ExpandoColumnServiceWrapper(
029 ExpandoColumnService expandoColumnService) {
030 _expandoColumnService = expandoColumnService;
031 }
032
033 public com.liferay.portlet.expando.model.ExpandoColumn addColumn(
034 long tableId, java.lang.String name, int type)
035 throws com.liferay.portal.kernel.exception.PortalException,
036 com.liferay.portal.kernel.exception.SystemException {
037 return _expandoColumnService.addColumn(tableId, name, type);
038 }
039
040 public com.liferay.portlet.expando.model.ExpandoColumn addColumn(
041 long tableId, java.lang.String name, int type,
042 java.lang.Object defaultData)
043 throws com.liferay.portal.kernel.exception.PortalException,
044 com.liferay.portal.kernel.exception.SystemException {
045 return _expandoColumnService.addColumn(tableId, name, type, defaultData);
046 }
047
048 public void deleteColumn(long columnId)
049 throws com.liferay.portal.kernel.exception.PortalException,
050 com.liferay.portal.kernel.exception.SystemException {
051 _expandoColumnService.deleteColumn(columnId);
052 }
053
054 public com.liferay.portlet.expando.model.ExpandoColumn updateColumn(
055 long columnId, java.lang.String name, int type)
056 throws com.liferay.portal.kernel.exception.PortalException,
057 com.liferay.portal.kernel.exception.SystemException {
058 return _expandoColumnService.updateColumn(columnId, name, type);
059 }
060
061 public com.liferay.portlet.expando.model.ExpandoColumn updateColumn(
062 long columnId, java.lang.String name, int type,
063 java.lang.Object defaultData)
064 throws com.liferay.portal.kernel.exception.PortalException,
065 com.liferay.portal.kernel.exception.SystemException {
066 return _expandoColumnService.updateColumn(columnId, name, type,
067 defaultData);
068 }
069
070 public com.liferay.portlet.expando.model.ExpandoColumn updateTypeSettings(
071 long columnId, java.lang.String typeSettings)
072 throws com.liferay.portal.kernel.exception.PortalException,
073 com.liferay.portal.kernel.exception.SystemException {
074 return _expandoColumnService.updateTypeSettings(columnId, typeSettings);
075 }
076
077 public ExpandoColumnService getWrappedExpandoColumnService() {
078 return _expandoColumnService;
079 }
080
081 private ExpandoColumnService _expandoColumnService;
082 }