001
014
015 package com.liferay.portlet.expando.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.portlet.expando.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.portlet.expando.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 void deleteColumn(long columnId)
057 throws com.liferay.portal.kernel.exception.PortalException {
058 getService().deleteColumn(columnId);
059 }
060
061
066 public static java.lang.String getBeanIdentifier() {
067 return getService().getBeanIdentifier();
068 }
069
070
075 public static void setBeanIdentifier(java.lang.String beanIdentifier) {
076 getService().setBeanIdentifier(beanIdentifier);
077 }
078
079 public static com.liferay.portlet.expando.model.ExpandoColumn updateColumn(
080 long columnId, java.lang.String name, int type)
081 throws com.liferay.portal.kernel.exception.PortalException {
082 return getService().updateColumn(columnId, name, type);
083 }
084
085 public static com.liferay.portlet.expando.model.ExpandoColumn updateColumn(
086 long columnId, java.lang.String name, int type,
087 java.lang.Object defaultData)
088 throws com.liferay.portal.kernel.exception.PortalException {
089 return getService().updateColumn(columnId, name, type, defaultData);
090 }
091
092 public static com.liferay.portlet.expando.model.ExpandoColumn updateTypeSettings(
093 long columnId, java.lang.String typeSettings)
094 throws com.liferay.portal.kernel.exception.PortalException {
095 return getService().updateTypeSettings(columnId, typeSettings);
096 }
097
098 public static ExpandoColumnService getService() {
099 if (_service == null) {
100 _service = (ExpandoColumnService)PortalBeanLocatorUtil.locate(ExpandoColumnService.class.getName());
101
102 ReferenceRegistry.registerReference(ExpandoColumnServiceUtil.class,
103 "_service");
104 }
105
106 return _service;
107 }
108
109
112 @Deprecated
113 public void setService(ExpandoColumnService service) {
114 }
115
116 private static ExpandoColumnService _service;
117 }