1
19
20 package com.liferay.portlet.expando.service;
21
22
23
44 public class ExpandoRowLocalServiceUtil {
45 public static com.liferay.portlet.expando.model.ExpandoRow addExpandoRow(
46 com.liferay.portlet.expando.model.ExpandoRow expandoRow)
47 throws com.liferay.portal.SystemException {
48 return getService().addExpandoRow(expandoRow);
49 }
50
51 public static com.liferay.portlet.expando.model.ExpandoRow createExpandoRow(
52 long rowId) {
53 return getService().createExpandoRow(rowId);
54 }
55
56 public static void deleteExpandoRow(long rowId)
57 throws com.liferay.portal.PortalException,
58 com.liferay.portal.SystemException {
59 getService().deleteExpandoRow(rowId);
60 }
61
62 public static void deleteExpandoRow(
63 com.liferay.portlet.expando.model.ExpandoRow expandoRow)
64 throws com.liferay.portal.SystemException {
65 getService().deleteExpandoRow(expandoRow);
66 }
67
68 public static java.util.List<Object> dynamicQuery(
69 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
70 throws com.liferay.portal.SystemException {
71 return getService().dynamicQuery(dynamicQuery);
72 }
73
74 public static 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 return getService().dynamicQuery(dynamicQuery, start, end);
78 }
79
80 public static com.liferay.portlet.expando.model.ExpandoRow getExpandoRow(
81 long rowId)
82 throws com.liferay.portal.PortalException,
83 com.liferay.portal.SystemException {
84 return getService().getExpandoRow(rowId);
85 }
86
87 public static java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getExpandoRows(
88 int start, int end) throws com.liferay.portal.SystemException {
89 return getService().getExpandoRows(start, end);
90 }
91
92 public static int getExpandoRowsCount()
93 throws com.liferay.portal.SystemException {
94 return getService().getExpandoRowsCount();
95 }
96
97 public static com.liferay.portlet.expando.model.ExpandoRow updateExpandoRow(
98 com.liferay.portlet.expando.model.ExpandoRow expandoRow)
99 throws com.liferay.portal.SystemException {
100 return getService().updateExpandoRow(expandoRow);
101 }
102
103 public static com.liferay.portlet.expando.model.ExpandoRow updateExpandoRow(
104 com.liferay.portlet.expando.model.ExpandoRow expandoRow, boolean merge)
105 throws com.liferay.portal.SystemException {
106 return getService().updateExpandoRow(expandoRow, merge);
107 }
108
109 public static com.liferay.portlet.expando.model.ExpandoRow addRow(
110 long tableId, long classPK) throws com.liferay.portal.SystemException {
111 return getService().addRow(tableId, classPK);
112 }
113
114 public static void deleteRow(long rowId)
115 throws com.liferay.portal.PortalException,
116 com.liferay.portal.SystemException {
117 getService().deleteRow(rowId);
118 }
119
120 public static void deleteRow(long tableId, long classPK)
121 throws com.liferay.portal.PortalException,
122 com.liferay.portal.SystemException {
123 getService().deleteRow(tableId, classPK);
124 }
125
126 public static void deleteRow(long classNameId, java.lang.String tableName,
127 long classPK)
128 throws com.liferay.portal.PortalException,
129 com.liferay.portal.SystemException {
130 getService().deleteRow(classNameId, tableName, classPK);
131 }
132
133 public static void deleteRow(java.lang.String className,
134 java.lang.String tableName, long classPK)
135 throws com.liferay.portal.PortalException,
136 com.liferay.portal.SystemException {
137 getService().deleteRow(className, tableName, classPK);
138 }
139
140 public static java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getDefaultTableRows(
141 long classNameId, int start, int end)
142 throws com.liferay.portal.SystemException {
143 return getService().getDefaultTableRows(classNameId, start, end);
144 }
145
146 public static java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getDefaultTableRows(
147 java.lang.String className, int start, int end)
148 throws com.liferay.portal.SystemException {
149 return getService().getDefaultTableRows(className, start, end);
150 }
151
152 public static int getDefaultTableRowsCount(long classNameId)
153 throws com.liferay.portal.SystemException {
154 return getService().getDefaultTableRowsCount(classNameId);
155 }
156
157 public static int getDefaultTableRowsCount(java.lang.String className)
158 throws com.liferay.portal.SystemException {
159 return getService().getDefaultTableRowsCount(className);
160 }
161
162 public static com.liferay.portlet.expando.model.ExpandoRow getRow(
163 long rowId)
164 throws com.liferay.portal.PortalException,
165 com.liferay.portal.SystemException {
166 return getService().getRow(rowId);
167 }
168
169 public static com.liferay.portlet.expando.model.ExpandoRow getRow(
170 long tableId, long classPK)
171 throws com.liferay.portal.PortalException,
172 com.liferay.portal.SystemException {
173 return getService().getRow(tableId, classPK);
174 }
175
176 public static com.liferay.portlet.expando.model.ExpandoRow getRow(
177 long classNameId, java.lang.String tableName, long classPK)
178 throws com.liferay.portal.SystemException {
179 return getService().getRow(classNameId, tableName, classPK);
180 }
181
182 public static com.liferay.portlet.expando.model.ExpandoRow getRow(
183 java.lang.String className, java.lang.String tableName, long classPK)
184 throws com.liferay.portal.SystemException {
185 return getService().getRow(className, tableName, classPK);
186 }
187
188 public static java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getRows(
189 long tableId, int start, int end)
190 throws com.liferay.portal.SystemException {
191 return getService().getRows(tableId, start, end);
192 }
193
194 public static java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getRows(
195 long classNameId, java.lang.String tableName, int start, int end)
196 throws com.liferay.portal.SystemException {
197 return getService().getRows(classNameId, tableName, start, end);
198 }
199
200 public static java.util.List<com.liferay.portlet.expando.model.ExpandoRow> getRows(
201 java.lang.String className, java.lang.String tableName, int start,
202 int end) throws com.liferay.portal.SystemException {
203 return getService().getRows(className, tableName, start, end);
204 }
205
206 public static int getRowsCount(long tableId)
207 throws com.liferay.portal.SystemException {
208 return getService().getRowsCount(tableId);
209 }
210
211 public static int getRowsCount(long classNameId, java.lang.String tableName)
212 throws com.liferay.portal.SystemException {
213 return getService().getRowsCount(classNameId, tableName);
214 }
215
216 public static int getRowsCount(java.lang.String className,
217 java.lang.String tableName) throws com.liferay.portal.SystemException {
218 return getService().getRowsCount(className, tableName);
219 }
220
221 public static ExpandoRowLocalService getService() {
222 if (_service == null) {
223 throw new RuntimeException("ExpandoRowLocalService is not set");
224 }
225
226 return _service;
227 }
228
229 public void setService(ExpandoRowLocalService service) {
230 _service = service;
231 }
232
233 private static ExpandoRowLocalService _service;
234 }