1
14
15 package com.liferay.portlet.expando.service;
16
17 import com.liferay.portal.PortalException;
18 import com.liferay.portal.SystemException;
19 import com.liferay.portal.kernel.annotation.Isolation;
20 import com.liferay.portal.kernel.annotation.Propagation;
21 import com.liferay.portal.kernel.annotation.Transactional;
22
23
47 @Transactional(isolation = Isolation.PORTAL, rollbackFor = {
48 PortalException.class, SystemException.class})
49 public interface ExpandoTableLocalService {
50 public com.liferay.portlet.expando.model.ExpandoTable addExpandoTable(
51 com.liferay.portlet.expando.model.ExpandoTable expandoTable)
52 throws com.liferay.portal.SystemException;
53
54 public com.liferay.portlet.expando.model.ExpandoTable createExpandoTable(
55 long tableId);
56
57 public void deleteExpandoTable(long tableId)
58 throws com.liferay.portal.PortalException,
59 com.liferay.portal.SystemException;
60
61 public void deleteExpandoTable(
62 com.liferay.portlet.expando.model.ExpandoTable expandoTable)
63 throws com.liferay.portal.SystemException;
64
65 public java.util.List<Object> dynamicQuery(
66 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
67 throws com.liferay.portal.SystemException;
68
69 public java.util.List<Object> dynamicQuery(
70 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
71 int end) throws com.liferay.portal.SystemException;
72
73 public java.util.List<Object> dynamicQuery(
74 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
75 int end,
76 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
77 throws com.liferay.portal.SystemException;
78
79 public int dynamicQueryCount(
80 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
81 throws com.liferay.portal.SystemException;
82
83 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
84 public com.liferay.portlet.expando.model.ExpandoTable getExpandoTable(
85 long tableId)
86 throws com.liferay.portal.PortalException,
87 com.liferay.portal.SystemException;
88
89 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
90 public java.util.List<com.liferay.portlet.expando.model.ExpandoTable> getExpandoTables(
91 int start, int end) throws com.liferay.portal.SystemException;
92
93 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
94 public int getExpandoTablesCount()
95 throws com.liferay.portal.SystemException;
96
97 public com.liferay.portlet.expando.model.ExpandoTable updateExpandoTable(
98 com.liferay.portlet.expando.model.ExpandoTable expandoTable)
99 throws com.liferay.portal.SystemException;
100
101 public com.liferay.portlet.expando.model.ExpandoTable updateExpandoTable(
102 com.liferay.portlet.expando.model.ExpandoTable expandoTable,
103 boolean merge) throws com.liferay.portal.SystemException;
104
105 public com.liferay.portlet.expando.model.ExpandoTable addDefaultTable(
106 long classNameId)
107 throws com.liferay.portal.PortalException,
108 com.liferay.portal.SystemException;
109
110 public com.liferay.portlet.expando.model.ExpandoTable addDefaultTable(
111 java.lang.String className)
112 throws com.liferay.portal.PortalException,
113 com.liferay.portal.SystemException;
114
115 public com.liferay.portlet.expando.model.ExpandoTable addTable(
116 long classNameId, java.lang.String name)
117 throws com.liferay.portal.PortalException,
118 com.liferay.portal.SystemException;
119
120 public com.liferay.portlet.expando.model.ExpandoTable addTable(
121 java.lang.String className, java.lang.String name)
122 throws com.liferay.portal.PortalException,
123 com.liferay.portal.SystemException;
124
125 public void deleteTable(
126 com.liferay.portlet.expando.model.ExpandoTable table)
127 throws com.liferay.portal.SystemException;
128
129 public void deleteTable(long tableId)
130 throws com.liferay.portal.PortalException,
131 com.liferay.portal.SystemException;
132
133 public void deleteTable(long classNameId, java.lang.String name)
134 throws com.liferay.portal.PortalException,
135 com.liferay.portal.SystemException;
136
137 public void deleteTable(java.lang.String className, java.lang.String name)
138 throws com.liferay.portal.PortalException,
139 com.liferay.portal.SystemException;
140
141 public void deleteTables(long classNameId)
142 throws com.liferay.portal.SystemException;
143
144 public void deleteTables(java.lang.String className)
145 throws com.liferay.portal.SystemException;
146
147 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
148 public com.liferay.portlet.expando.model.ExpandoTable getDefaultTable(
149 long classNameId)
150 throws com.liferay.portal.PortalException,
151 com.liferay.portal.SystemException;
152
153 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
154 public com.liferay.portlet.expando.model.ExpandoTable getDefaultTable(
155 java.lang.String className)
156 throws com.liferay.portal.PortalException,
157 com.liferay.portal.SystemException;
158
159 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
160 public com.liferay.portlet.expando.model.ExpandoTable getTable(long tableId)
161 throws com.liferay.portal.PortalException,
162 com.liferay.portal.SystemException;
163
164 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
165 public com.liferay.portlet.expando.model.ExpandoTable getTable(
166 long classNameId, java.lang.String name)
167 throws com.liferay.portal.PortalException,
168 com.liferay.portal.SystemException;
169
170 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
171 public com.liferay.portlet.expando.model.ExpandoTable getTable(
172 java.lang.String className, java.lang.String name)
173 throws com.liferay.portal.PortalException,
174 com.liferay.portal.SystemException;
175
176 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
177 public java.util.List<com.liferay.portlet.expando.model.ExpandoTable> getTables(
178 long classNameId) throws com.liferay.portal.SystemException;
179
180 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
181 public java.util.List<com.liferay.portlet.expando.model.ExpandoTable> getTables(
182 java.lang.String className) throws com.liferay.portal.SystemException;
183
184 public com.liferay.portlet.expando.model.ExpandoTable updateTable(
185 long tableId, java.lang.String name)
186 throws com.liferay.portal.PortalException,
187 com.liferay.portal.SystemException;
188 }