001
014
015 package com.liferay.expando.kernel.service;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
020 import com.liferay.portal.kernel.util.ReferenceRegistry;
021
022
036 @ProviderType
037 public class ExpandoColumnServiceUtil {
038
043 public static com.liferay.expando.kernel.model.ExpandoColumn addColumn(
044 long tableId, java.lang.String name, int type)
045 throws com.liferay.portal.kernel.exception.PortalException {
046 return getService().addColumn(tableId, name, type);
047 }
048
049 public static com.liferay.expando.kernel.model.ExpandoColumn addColumn(
050 long tableId, java.lang.String name, int type,
051 java.lang.Object defaultData)
052 throws com.liferay.portal.kernel.exception.PortalException {
053 return getService().addColumn(tableId, name, type, defaultData);
054 }
055
056 public static com.liferay.expando.kernel.model.ExpandoColumn fetchExpandoColumn(
057 long columnId)
058 throws com.liferay.portal.kernel.exception.PortalException {
059 return getService().fetchExpandoColumn(columnId);
060 }
061
062 public static com.liferay.expando.kernel.model.ExpandoColumn updateColumn(
063 long columnId, java.lang.String name, int type)
064 throws com.liferay.portal.kernel.exception.PortalException {
065 return getService().updateColumn(columnId, name, type);
066 }
067
068 public static com.liferay.expando.kernel.model.ExpandoColumn updateColumn(
069 long columnId, java.lang.String name, int type,
070 java.lang.Object defaultData)
071 throws com.liferay.portal.kernel.exception.PortalException {
072 return getService().updateColumn(columnId, name, type, defaultData);
073 }
074
075 public static com.liferay.expando.kernel.model.ExpandoColumn updateTypeSettings(
076 long columnId, java.lang.String typeSettings)
077 throws com.liferay.portal.kernel.exception.PortalException {
078 return getService().updateTypeSettings(columnId, typeSettings);
079 }
080
081
086 public static java.lang.String getOSGiServiceIdentifier() {
087 return getService().getOSGiServiceIdentifier();
088 }
089
090 public static void deleteColumn(long columnId)
091 throws com.liferay.portal.kernel.exception.PortalException {
092 getService().deleteColumn(columnId);
093 }
094
095 public static ExpandoColumnService getService() {
096 if (_service == null) {
097 _service = (ExpandoColumnService)PortalBeanLocatorUtil.locate(ExpandoColumnService.class.getName());
098
099 ReferenceRegistry.registerReference(ExpandoColumnServiceUtil.class,
100 "_service");
101 }
102
103 return _service;
104 }
105
106 private static ExpandoColumnService _service;
107 }