1
19
20 package com.liferay.portlet.expando.service;
21
22 import com.liferay.portal.PortalException;
23 import com.liferay.portal.SystemException;
24 import com.liferay.portal.kernel.annotation.Isolation;
25 import com.liferay.portal.kernel.annotation.Propagation;
26 import com.liferay.portal.kernel.annotation.Transactional;
27
28
52 @Transactional(isolation = Isolation.PORTAL, rollbackFor = {
53 PortalException.class, SystemException.class})
54 public interface ExpandoColumnLocalService {
55 public com.liferay.portlet.expando.model.ExpandoColumn addExpandoColumn(
56 com.liferay.portlet.expando.model.ExpandoColumn expandoColumn)
57 throws com.liferay.portal.SystemException;
58
59 public com.liferay.portlet.expando.model.ExpandoColumn createExpandoColumn(
60 long columnId);
61
62 public void deleteExpandoColumn(long columnId)
63 throws com.liferay.portal.SystemException,
64 com.liferay.portal.PortalException;
65
66 public void deleteExpandoColumn(
67 com.liferay.portlet.expando.model.ExpandoColumn expandoColumn)
68 throws com.liferay.portal.SystemException;
69
70 public java.util.List<Object> dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
72 throws com.liferay.portal.SystemException;
73
74 public java.util.List<Object> dynamicQuery(
75 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
76 int end) throws com.liferay.portal.SystemException;
77
78 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
79 public com.liferay.portlet.expando.model.ExpandoColumn getExpandoColumn(
80 long columnId)
81 throws com.liferay.portal.SystemException,
82 com.liferay.portal.PortalException;
83
84 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
85 public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getExpandoColumns(
86 int start, int end) throws com.liferay.portal.SystemException;
87
88 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
89 public int getExpandoColumnsCount()
90 throws com.liferay.portal.SystemException;
91
92 public com.liferay.portlet.expando.model.ExpandoColumn updateExpandoColumn(
93 com.liferay.portlet.expando.model.ExpandoColumn expandoColumn)
94 throws com.liferay.portal.SystemException;
95
96 public com.liferay.portlet.expando.model.ExpandoColumn updateExpandoColumn(
97 com.liferay.portlet.expando.model.ExpandoColumn expandoColumn,
98 boolean merge) throws com.liferay.portal.SystemException;
99
100 public com.liferay.portlet.expando.model.ExpandoColumn addColumn(
101 long tableId, java.lang.String name, int type)
102 throws com.liferay.portal.PortalException,
103 com.liferay.portal.SystemException;
104
105 public com.liferay.portlet.expando.model.ExpandoColumn addColumn(
106 long tableId, java.lang.String name, int type,
107 java.lang.Object defaultData)
108 throws com.liferay.portal.PortalException,
109 com.liferay.portal.SystemException;
110
111 public void deleteColumn(long columnId)
112 throws com.liferay.portal.PortalException,
113 com.liferay.portal.SystemException;
114
115 public void deleteColumn(long tableId, java.lang.String name)
116 throws com.liferay.portal.PortalException,
117 com.liferay.portal.SystemException;
118
119 public void deleteColumn(long classNameId, java.lang.String tableName,
120 java.lang.String name)
121 throws com.liferay.portal.PortalException,
122 com.liferay.portal.SystemException;
123
124 public void deleteColumn(java.lang.String className,
125 java.lang.String tableName, java.lang.String name)
126 throws com.liferay.portal.PortalException,
127 com.liferay.portal.SystemException;
128
129 public void deleteColumns(long tableId)
130 throws com.liferay.portal.PortalException,
131 com.liferay.portal.SystemException;
132
133 public void deleteColumns(long classNameId, java.lang.String tableName)
134 throws com.liferay.portal.PortalException,
135 com.liferay.portal.SystemException;
136
137 public void deleteColumns(java.lang.String className,
138 java.lang.String tableName)
139 throws com.liferay.portal.PortalException,
140 com.liferay.portal.SystemException;
141
142 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
143 public com.liferay.portlet.expando.model.ExpandoColumn getColumn(
144 long columnId)
145 throws com.liferay.portal.PortalException,
146 com.liferay.portal.SystemException;
147
148 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
149 public com.liferay.portlet.expando.model.ExpandoColumn getColumn(
150 long tableId, java.lang.String name)
151 throws com.liferay.portal.PortalException,
152 com.liferay.portal.SystemException;
153
154 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
155 public com.liferay.portlet.expando.model.ExpandoColumn getColumn(
156 long classNameId, java.lang.String tableName, java.lang.String name)
157 throws com.liferay.portal.SystemException;
158
159 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
160 public com.liferay.portlet.expando.model.ExpandoColumn getColumn(
161 java.lang.String className, java.lang.String tableName,
162 java.lang.String name) throws com.liferay.portal.SystemException;
163
164 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
165 public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getColumns(
166 long tableId) throws com.liferay.portal.SystemException;
167
168 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
169 public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getColumns(
170 long classNameId, java.lang.String tableName)
171 throws com.liferay.portal.SystemException;
172
173 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
174 public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getColumns(
175 java.lang.String className, java.lang.String tableName)
176 throws com.liferay.portal.SystemException;
177
178 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
179 public int getColumnsCount(long tableId)
180 throws com.liferay.portal.SystemException;
181
182 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
183 public int getColumnsCount(long classNameId, java.lang.String tableName)
184 throws com.liferay.portal.SystemException;
185
186 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
187 public int getColumnsCount(java.lang.String className,
188 java.lang.String tableName) throws com.liferay.portal.SystemException;
189
190 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
191 public com.liferay.portlet.expando.model.ExpandoColumn getDefaultTableColumn(
192 long classNameId, java.lang.String name)
193 throws com.liferay.portal.SystemException;
194
195 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
196 public com.liferay.portlet.expando.model.ExpandoColumn getDefaultTableColumn(
197 java.lang.String className, java.lang.String name)
198 throws com.liferay.portal.SystemException;
199
200 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
201 public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getDefaultTableColumns(
202 long classNameId) throws com.liferay.portal.SystemException;
203
204 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
205 public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getDefaultTableColumns(
206 java.lang.String className) throws com.liferay.portal.SystemException;
207
208 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
209 public int getDefaultTableColumnsCount(long classNameId)
210 throws com.liferay.portal.SystemException;
211
212 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
213 public int getDefaultTableColumnsCount(java.lang.String className)
214 throws com.liferay.portal.SystemException;
215
216 public com.liferay.portlet.expando.model.ExpandoColumn updateColumn(
217 long columnId, java.lang.String name, int type)
218 throws com.liferay.portal.PortalException,
219 com.liferay.portal.SystemException;
220
221 public com.liferay.portlet.expando.model.ExpandoColumn updateColumn(
222 long columnId, java.lang.String name, int type,
223 java.lang.Object defaultData)
224 throws com.liferay.portal.PortalException,
225 com.liferay.portal.SystemException;
226
227 public com.liferay.portlet.expando.model.ExpandoColumn updateTypeSettings(
228 long columnId, java.lang.String typeSettings)
229 throws com.liferay.portal.PortalException,
230 com.liferay.portal.SystemException;
231 }