001
014
015 package com.liferay.portlet.dynamicdatalists.service;
016
017
026 public class DDLRecordSetLocalServiceWrapper implements DDLRecordSetLocalService {
027 public DDLRecordSetLocalServiceWrapper(
028 DDLRecordSetLocalService ddlRecordSetLocalService) {
029 _ddlRecordSetLocalService = ddlRecordSetLocalService;
030 }
031
032
039 public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet addDDLRecordSet(
040 com.liferay.portlet.dynamicdatalists.model.DDLRecordSet ddlRecordSet)
041 throws com.liferay.portal.kernel.exception.SystemException {
042 return _ddlRecordSetLocalService.addDDLRecordSet(ddlRecordSet);
043 }
044
045
051 public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet createDDLRecordSet(
052 long recordSetId) {
053 return _ddlRecordSetLocalService.createDDLRecordSet(recordSetId);
054 }
055
056
063 public void deleteDDLRecordSet(long recordSetId)
064 throws com.liferay.portal.kernel.exception.PortalException,
065 com.liferay.portal.kernel.exception.SystemException {
066 _ddlRecordSetLocalService.deleteDDLRecordSet(recordSetId);
067 }
068
069
075 public void deleteDDLRecordSet(
076 com.liferay.portlet.dynamicdatalists.model.DDLRecordSet ddlRecordSet)
077 throws com.liferay.portal.kernel.exception.SystemException {
078 _ddlRecordSetLocalService.deleteDDLRecordSet(ddlRecordSet);
079 }
080
081
088 @SuppressWarnings("rawtypes")
089 public java.util.List dynamicQuery(
090 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
091 throws com.liferay.portal.kernel.exception.SystemException {
092 return _ddlRecordSetLocalService.dynamicQuery(dynamicQuery);
093 }
094
095
108 @SuppressWarnings("rawtypes")
109 public java.util.List dynamicQuery(
110 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
111 int end) throws com.liferay.portal.kernel.exception.SystemException {
112 return _ddlRecordSetLocalService.dynamicQuery(dynamicQuery, start, end);
113 }
114
115
129 @SuppressWarnings("rawtypes")
130 public java.util.List dynamicQuery(
131 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
132 int end,
133 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
134 throws com.liferay.portal.kernel.exception.SystemException {
135 return _ddlRecordSetLocalService.dynamicQuery(dynamicQuery, start, end,
136 orderByComparator);
137 }
138
139
146 public long dynamicQueryCount(
147 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
148 throws com.liferay.portal.kernel.exception.SystemException {
149 return _ddlRecordSetLocalService.dynamicQueryCount(dynamicQuery);
150 }
151
152
160 public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet getDDLRecordSet(
161 long recordSetId)
162 throws com.liferay.portal.kernel.exception.PortalException,
163 com.liferay.portal.kernel.exception.SystemException {
164 return _ddlRecordSetLocalService.getDDLRecordSet(recordSetId);
165 }
166
167 public com.liferay.portal.model.PersistedModel getPersistedModel(
168 java.io.Serializable primaryKeyObj)
169 throws com.liferay.portal.kernel.exception.PortalException,
170 com.liferay.portal.kernel.exception.SystemException {
171 return _ddlRecordSetLocalService.getPersistedModel(primaryKeyObj);
172 }
173
174
183 public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet getDDLRecordSetByUuidAndGroupId(
184 java.lang.String uuid, long groupId)
185 throws com.liferay.portal.kernel.exception.PortalException,
186 com.liferay.portal.kernel.exception.SystemException {
187 return _ddlRecordSetLocalService.getDDLRecordSetByUuidAndGroupId(uuid,
188 groupId);
189 }
190
191
203 public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> getDDLRecordSets(
204 int start, int end)
205 throws com.liferay.portal.kernel.exception.SystemException {
206 return _ddlRecordSetLocalService.getDDLRecordSets(start, end);
207 }
208
209
215 public int getDDLRecordSetsCount()
216 throws com.liferay.portal.kernel.exception.SystemException {
217 return _ddlRecordSetLocalService.getDDLRecordSetsCount();
218 }
219
220
227 public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet updateDDLRecordSet(
228 com.liferay.portlet.dynamicdatalists.model.DDLRecordSet ddlRecordSet)
229 throws com.liferay.portal.kernel.exception.SystemException {
230 return _ddlRecordSetLocalService.updateDDLRecordSet(ddlRecordSet);
231 }
232
233
241 public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet updateDDLRecordSet(
242 com.liferay.portlet.dynamicdatalists.model.DDLRecordSet ddlRecordSet,
243 boolean merge)
244 throws com.liferay.portal.kernel.exception.SystemException {
245 return _ddlRecordSetLocalService.updateDDLRecordSet(ddlRecordSet, merge);
246 }
247
248
253 public java.lang.String getBeanIdentifier() {
254 return _ddlRecordSetLocalService.getBeanIdentifier();
255 }
256
257
262 public void setBeanIdentifier(java.lang.String beanIdentifier) {
263 _ddlRecordSetLocalService.setBeanIdentifier(beanIdentifier);
264 }
265
266 public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet addRecordSet(
267 long userId, long groupId, long ddmStructureId,
268 java.lang.String recordSetKey,
269 java.util.Map<java.util.Locale, java.lang.String> nameMap,
270 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
271 int minDisplayRows, int scope,
272 com.liferay.portal.service.ServiceContext serviceContext)
273 throws com.liferay.portal.kernel.exception.PortalException,
274 com.liferay.portal.kernel.exception.SystemException {
275 return _ddlRecordSetLocalService.addRecordSet(userId, groupId,
276 ddmStructureId, recordSetKey, nameMap, descriptionMap,
277 minDisplayRows, scope, serviceContext);
278 }
279
280 public void addRecordSetResources(
281 com.liferay.portlet.dynamicdatalists.model.DDLRecordSet recordSet,
282 boolean addGroupPermissions, boolean addGuestPermissions)
283 throws com.liferay.portal.kernel.exception.PortalException,
284 com.liferay.portal.kernel.exception.SystemException {
285 _ddlRecordSetLocalService.addRecordSetResources(recordSet,
286 addGroupPermissions, addGuestPermissions);
287 }
288
289 public void addRecordSetResources(
290 com.liferay.portlet.dynamicdatalists.model.DDLRecordSet recordSet,
291 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
292 throws com.liferay.portal.kernel.exception.PortalException,
293 com.liferay.portal.kernel.exception.SystemException {
294 _ddlRecordSetLocalService.addRecordSetResources(recordSet,
295 groupPermissions, guestPermissions);
296 }
297
298 public void deleteRecordSet(
299 com.liferay.portlet.dynamicdatalists.model.DDLRecordSet recordSet)
300 throws com.liferay.portal.kernel.exception.PortalException,
301 com.liferay.portal.kernel.exception.SystemException {
302 _ddlRecordSetLocalService.deleteRecordSet(recordSet);
303 }
304
305 public void deleteRecordSet(long recordSetId)
306 throws com.liferay.portal.kernel.exception.PortalException,
307 com.liferay.portal.kernel.exception.SystemException {
308 _ddlRecordSetLocalService.deleteRecordSet(recordSetId);
309 }
310
311 public void deleteRecordSet(long groupId, java.lang.String recordSetKey)
312 throws com.liferay.portal.kernel.exception.PortalException,
313 com.liferay.portal.kernel.exception.SystemException {
314 _ddlRecordSetLocalService.deleteRecordSet(groupId, recordSetKey);
315 }
316
317 public void deleteRecordSets(long groupId)
318 throws com.liferay.portal.kernel.exception.PortalException,
319 com.liferay.portal.kernel.exception.SystemException {
320 _ddlRecordSetLocalService.deleteRecordSets(groupId);
321 }
322
323 public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet fetchRecordSet(
324 long groupId, java.lang.String recordSetKey)
325 throws com.liferay.portal.kernel.exception.SystemException {
326 return _ddlRecordSetLocalService.fetchRecordSet(groupId, recordSetKey);
327 }
328
329 public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet getRecordSet(
330 long recordSetId)
331 throws com.liferay.portal.kernel.exception.PortalException,
332 com.liferay.portal.kernel.exception.SystemException {
333 return _ddlRecordSetLocalService.getRecordSet(recordSetId);
334 }
335
336 public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet getRecordSet(
337 long groupId, java.lang.String recordSetKey)
338 throws com.liferay.portal.kernel.exception.PortalException,
339 com.liferay.portal.kernel.exception.SystemException {
340 return _ddlRecordSetLocalService.getRecordSet(groupId, recordSetKey);
341 }
342
343 public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> getRecordSets(
344 long groupId)
345 throws com.liferay.portal.kernel.exception.SystemException {
346 return _ddlRecordSetLocalService.getRecordSets(groupId);
347 }
348
349 public int getRecordSetsCount(long groupId)
350 throws com.liferay.portal.kernel.exception.SystemException {
351 return _ddlRecordSetLocalService.getRecordSetsCount(groupId);
352 }
353
354 public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> search(
355 long companyId, long groupId, java.lang.String keywords, int scope,
356 int start, int end,
357 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
358 throws com.liferay.portal.kernel.exception.SystemException {
359 return _ddlRecordSetLocalService.search(companyId, groupId, keywords,
360 scope, start, end, orderByComparator);
361 }
362
363 public java.util.List<com.liferay.portlet.dynamicdatalists.model.DDLRecordSet> search(
364 long companyId, long groupId, java.lang.String name,
365 java.lang.String description, int scope, boolean andOperator,
366 int start, int end,
367 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
368 throws com.liferay.portal.kernel.exception.SystemException {
369 return _ddlRecordSetLocalService.search(companyId, groupId, name,
370 description, scope, andOperator, start, end, orderByComparator);
371 }
372
373 public int searchCount(long companyId, long groupId,
374 java.lang.String keywords, int scope)
375 throws com.liferay.portal.kernel.exception.SystemException {
376 return _ddlRecordSetLocalService.searchCount(companyId, groupId,
377 keywords, scope);
378 }
379
380 public int searchCount(long companyId, long groupId, java.lang.String name,
381 java.lang.String description, int scope, boolean andOperator)
382 throws com.liferay.portal.kernel.exception.SystemException {
383 return _ddlRecordSetLocalService.searchCount(companyId, groupId, name,
384 description, scope, andOperator);
385 }
386
387 public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet updateMinDisplayRows(
388 long recordSetId, int minDisplayRows,
389 com.liferay.portal.service.ServiceContext serviceContext)
390 throws com.liferay.portal.kernel.exception.PortalException,
391 com.liferay.portal.kernel.exception.SystemException {
392 return _ddlRecordSetLocalService.updateMinDisplayRows(recordSetId,
393 minDisplayRows, serviceContext);
394 }
395
396 public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet updateRecordSet(
397 long recordSetId, long ddmStructureId,
398 java.util.Map<java.util.Locale, java.lang.String> nameMap,
399 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
400 int minDisplayRows,
401 com.liferay.portal.service.ServiceContext serviceContext)
402 throws com.liferay.portal.kernel.exception.PortalException,
403 com.liferay.portal.kernel.exception.SystemException {
404 return _ddlRecordSetLocalService.updateRecordSet(recordSetId,
405 ddmStructureId, nameMap, descriptionMap, minDisplayRows,
406 serviceContext);
407 }
408
409 public com.liferay.portlet.dynamicdatalists.model.DDLRecordSet updateRecordSet(
410 long groupId, long ddmStructureId, java.lang.String recordSetKey,
411 java.util.Map<java.util.Locale, java.lang.String> nameMap,
412 java.util.Map<java.util.Locale, java.lang.String> descriptionMap,
413 int minDisplayRows,
414 com.liferay.portal.service.ServiceContext serviceContext)
415 throws com.liferay.portal.kernel.exception.PortalException,
416 com.liferay.portal.kernel.exception.SystemException {
417 return _ddlRecordSetLocalService.updateRecordSet(groupId,
418 ddmStructureId, recordSetKey, nameMap, descriptionMap,
419 minDisplayRows, serviceContext);
420 }
421
422 public DDLRecordSetLocalService getWrappedDDLRecordSetLocalService() {
423 return _ddlRecordSetLocalService;
424 }
425
426 public void setWrappedDDLRecordSetLocalService(
427 DDLRecordSetLocalService ddlRecordSetLocalService) {
428 _ddlRecordSetLocalService = ddlRecordSetLocalService;
429 }
430
431 private DDLRecordSetLocalService _ddlRecordSetLocalService;
432 }