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 public static com.liferay.portlet.expando.model.ExpandoColumn fetchExpandoColumn(
062 long columnId)
063 throws com.liferay.portal.kernel.exception.PortalException {
064 return getService().fetchExpandoColumn(columnId);
065 }
066
067
072 public static java.lang.String getBeanIdentifier() {
073 return getService().getBeanIdentifier();
074 }
075
076
081 public static void setBeanIdentifier(java.lang.String beanIdentifier) {
082 getService().setBeanIdentifier(beanIdentifier);
083 }
084
085 public static com.liferay.portlet.expando.model.ExpandoColumn updateColumn(
086 long columnId, java.lang.String name, int type)
087 throws com.liferay.portal.kernel.exception.PortalException {
088 return getService().updateColumn(columnId, name, type);
089 }
090
091 public static com.liferay.portlet.expando.model.ExpandoColumn updateColumn(
092 long columnId, java.lang.String name, int type,
093 java.lang.Object defaultData)
094 throws com.liferay.portal.kernel.exception.PortalException {
095 return getService().updateColumn(columnId, name, type, defaultData);
096 }
097
098 public static com.liferay.portlet.expando.model.ExpandoColumn updateTypeSettings(
099 long columnId, java.lang.String typeSettings)
100 throws com.liferay.portal.kernel.exception.PortalException {
101 return getService().updateTypeSettings(columnId, typeSettings);
102 }
103
104 public static ExpandoColumnService getService() {
105 if (_service == null) {
106 _service = (ExpandoColumnService)PortalBeanLocatorUtil.locate(ExpandoColumnService.class.getName());
107
108 ReferenceRegistry.registerReference(ExpandoColumnServiceUtil.class,
109 "_service");
110 }
111
112 return _service;
113 }
114
115
118 @Deprecated
119 public void setService(ExpandoColumnService service) {
120 }
121
122 private static ExpandoColumnService _service;
123 }