1
22
23 package com.liferay.portlet.expando.service;
24
25
26
50 public interface ExpandoColumnLocalService {
51 public com.liferay.portlet.expando.model.ExpandoColumn addExpandoColumn(
52 com.liferay.portlet.expando.model.ExpandoColumn expandoColumn)
53 throws com.liferay.portal.SystemException;
54
55 public void deleteExpandoColumn(long columnId)
56 throws com.liferay.portal.SystemException,
57 com.liferay.portal.PortalException;
58
59 public void deleteExpandoColumn(
60 com.liferay.portlet.expando.model.ExpandoColumn expandoColumn)
61 throws com.liferay.portal.SystemException;
62
63 public java.util.List<Object> dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.SystemException;
66
67 public java.util.List<Object> dynamicQuery(
68 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
69 int end) throws com.liferay.portal.SystemException;
70
71 public com.liferay.portlet.expando.model.ExpandoColumn getExpandoColumn(
72 long columnId)
73 throws com.liferay.portal.SystemException,
74 com.liferay.portal.PortalException;
75
76 public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getExpandoColumns(
77 int start, int end) throws com.liferay.portal.SystemException;
78
79 public int getExpandoColumnsCount()
80 throws com.liferay.portal.SystemException;
81
82 public com.liferay.portlet.expando.model.ExpandoColumn updateExpandoColumn(
83 com.liferay.portlet.expando.model.ExpandoColumn expandoColumn)
84 throws com.liferay.portal.SystemException;
85
86 public com.liferay.portlet.expando.model.ExpandoColumn addColumn(
87 long tableId, java.lang.String name, int type)
88 throws com.liferay.portal.PortalException,
89 com.liferay.portal.SystemException;
90
91 public void deleteColumn(long columnId)
92 throws com.liferay.portal.PortalException,
93 com.liferay.portal.SystemException;
94
95 public void deleteColumn(long tableId, java.lang.String name)
96 throws com.liferay.portal.PortalException,
97 com.liferay.portal.SystemException;
98
99 public void deleteColumn(java.lang.String className,
100 java.lang.String tableName, java.lang.String name)
101 throws com.liferay.portal.PortalException,
102 com.liferay.portal.SystemException;
103
104 public void deleteColumn(long classNameId, java.lang.String tableName,
105 java.lang.String name)
106 throws com.liferay.portal.PortalException,
107 com.liferay.portal.SystemException;
108
109 public void deleteColumns(long tableId)
110 throws com.liferay.portal.PortalException,
111 com.liferay.portal.SystemException;
112
113 public void deleteColumns(java.lang.String className,
114 java.lang.String tableName)
115 throws com.liferay.portal.PortalException,
116 com.liferay.portal.SystemException;
117
118 public void deleteColumns(long classNameId, java.lang.String tableName)
119 throws com.liferay.portal.PortalException,
120 com.liferay.portal.SystemException;
121
122 public com.liferay.portlet.expando.model.ExpandoColumn getColumn(
123 long columnId)
124 throws com.liferay.portal.PortalException,
125 com.liferay.portal.SystemException;
126
127 public com.liferay.portlet.expando.model.ExpandoColumn getColumn(
128 long tableId, java.lang.String name)
129 throws com.liferay.portal.PortalException,
130 com.liferay.portal.SystemException;
131
132 public com.liferay.portlet.expando.model.ExpandoColumn getColumn(
133 java.lang.String className, java.lang.String tableName,
134 java.lang.String name) throws com.liferay.portal.SystemException;
135
136 public com.liferay.portlet.expando.model.ExpandoColumn getColumn(
137 long classNameId, java.lang.String tableName, java.lang.String name)
138 throws com.liferay.portal.SystemException;
139
140 public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getColumns(
141 long tableId) throws com.liferay.portal.SystemException;
142
143 public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getColumns(
144 java.lang.String className, java.lang.String tableName)
145 throws com.liferay.portal.SystemException;
146
147 public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getColumns(
148 long classNameId, java.lang.String tableName)
149 throws com.liferay.portal.SystemException;
150
151 public int getColumnsCount(long tableId)
152 throws com.liferay.portal.SystemException;
153
154 public int getColumnsCount(java.lang.String className,
155 java.lang.String tableName) throws com.liferay.portal.SystemException;
156
157 public int getColumnsCount(long classNameId, java.lang.String tableName)
158 throws com.liferay.portal.SystemException;
159
160 public com.liferay.portlet.expando.model.ExpandoColumn getDefaultTableColumn(
161 java.lang.String className, java.lang.String name)
162 throws com.liferay.portal.SystemException;
163
164 public com.liferay.portlet.expando.model.ExpandoColumn getDefaultTableColumn(
165 long classNameId, java.lang.String name)
166 throws com.liferay.portal.SystemException;
167
168 public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getDefaultTableColumns(
169 java.lang.String className) throws com.liferay.portal.SystemException;
170
171 public java.util.List<com.liferay.portlet.expando.model.ExpandoColumn> getDefaultTableColumns(
172 long classNameId) throws com.liferay.portal.SystemException;
173
174 public int getDefaultTableColumnsCount(java.lang.String className)
175 throws com.liferay.portal.SystemException;
176
177 public int getDefaultTableColumnsCount(long classNameId)
178 throws com.liferay.portal.SystemException;
179
180 public com.liferay.portlet.expando.model.ExpandoColumn updateColumn(
181 long columnId, java.lang.String name, int type)
182 throws com.liferay.portal.PortalException,
183 com.liferay.portal.SystemException;
184 }