001
014
015 package com.liferay.portlet.journal.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class JournalFeedLocalServiceWrapper implements JournalFeedLocalService,
029 ServiceWrapper<JournalFeedLocalService> {
030 public JournalFeedLocalServiceWrapper(
031 JournalFeedLocalService journalFeedLocalService) {
032 _journalFeedLocalService = journalFeedLocalService;
033 }
034
035
042 public com.liferay.portlet.journal.model.JournalFeed addJournalFeed(
043 com.liferay.portlet.journal.model.JournalFeed journalFeed)
044 throws com.liferay.portal.kernel.exception.SystemException {
045 return _journalFeedLocalService.addJournalFeed(journalFeed);
046 }
047
048
054 public com.liferay.portlet.journal.model.JournalFeed createJournalFeed(
055 long id) {
056 return _journalFeedLocalService.createJournalFeed(id);
057 }
058
059
067 public com.liferay.portlet.journal.model.JournalFeed deleteJournalFeed(
068 long id)
069 throws com.liferay.portal.kernel.exception.PortalException,
070 com.liferay.portal.kernel.exception.SystemException {
071 return _journalFeedLocalService.deleteJournalFeed(id);
072 }
073
074
081 public com.liferay.portlet.journal.model.JournalFeed deleteJournalFeed(
082 com.liferay.portlet.journal.model.JournalFeed journalFeed)
083 throws com.liferay.portal.kernel.exception.SystemException {
084 return _journalFeedLocalService.deleteJournalFeed(journalFeed);
085 }
086
087 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
088 return _journalFeedLocalService.dynamicQuery();
089 }
090
091
098 @SuppressWarnings("rawtypes")
099 public java.util.List dynamicQuery(
100 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
101 throws com.liferay.portal.kernel.exception.SystemException {
102 return _journalFeedLocalService.dynamicQuery(dynamicQuery);
103 }
104
105
118 @SuppressWarnings("rawtypes")
119 public java.util.List dynamicQuery(
120 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
121 int end) throws com.liferay.portal.kernel.exception.SystemException {
122 return _journalFeedLocalService.dynamicQuery(dynamicQuery, start, end);
123 }
124
125
139 @SuppressWarnings("rawtypes")
140 public java.util.List dynamicQuery(
141 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
142 int end,
143 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
144 throws com.liferay.portal.kernel.exception.SystemException {
145 return _journalFeedLocalService.dynamicQuery(dynamicQuery, start, end,
146 orderByComparator);
147 }
148
149
156 public long dynamicQueryCount(
157 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
158 throws com.liferay.portal.kernel.exception.SystemException {
159 return _journalFeedLocalService.dynamicQueryCount(dynamicQuery);
160 }
161
162 public com.liferay.portlet.journal.model.JournalFeed fetchJournalFeed(
163 long id) throws com.liferay.portal.kernel.exception.SystemException {
164 return _journalFeedLocalService.fetchJournalFeed(id);
165 }
166
167
175 public com.liferay.portlet.journal.model.JournalFeed getJournalFeed(long id)
176 throws com.liferay.portal.kernel.exception.PortalException,
177 com.liferay.portal.kernel.exception.SystemException {
178 return _journalFeedLocalService.getJournalFeed(id);
179 }
180
181 public com.liferay.portal.model.PersistedModel getPersistedModel(
182 java.io.Serializable primaryKeyObj)
183 throws com.liferay.portal.kernel.exception.PortalException,
184 com.liferay.portal.kernel.exception.SystemException {
185 return _journalFeedLocalService.getPersistedModel(primaryKeyObj);
186 }
187
188
197 public com.liferay.portlet.journal.model.JournalFeed getJournalFeedByUuidAndGroupId(
198 java.lang.String uuid, long groupId)
199 throws com.liferay.portal.kernel.exception.PortalException,
200 com.liferay.portal.kernel.exception.SystemException {
201 return _journalFeedLocalService.getJournalFeedByUuidAndGroupId(uuid,
202 groupId);
203 }
204
205
217 public java.util.List<com.liferay.portlet.journal.model.JournalFeed> getJournalFeeds(
218 int start, int end)
219 throws com.liferay.portal.kernel.exception.SystemException {
220 return _journalFeedLocalService.getJournalFeeds(start, end);
221 }
222
223
229 public int getJournalFeedsCount()
230 throws com.liferay.portal.kernel.exception.SystemException {
231 return _journalFeedLocalService.getJournalFeedsCount();
232 }
233
234
241 public com.liferay.portlet.journal.model.JournalFeed updateJournalFeed(
242 com.liferay.portlet.journal.model.JournalFeed journalFeed)
243 throws com.liferay.portal.kernel.exception.SystemException {
244 return _journalFeedLocalService.updateJournalFeed(journalFeed);
245 }
246
247
255 public com.liferay.portlet.journal.model.JournalFeed updateJournalFeed(
256 com.liferay.portlet.journal.model.JournalFeed journalFeed, boolean merge)
257 throws com.liferay.portal.kernel.exception.SystemException {
258 return _journalFeedLocalService.updateJournalFeed(journalFeed, merge);
259 }
260
261
266 public java.lang.String getBeanIdentifier() {
267 return _journalFeedLocalService.getBeanIdentifier();
268 }
269
270
275 public void setBeanIdentifier(java.lang.String beanIdentifier) {
276 _journalFeedLocalService.setBeanIdentifier(beanIdentifier);
277 }
278
279 public com.liferay.portlet.journal.model.JournalFeed addFeed(long userId,
280 long groupId, java.lang.String feedId, boolean autoFeedId,
281 java.lang.String name, java.lang.String description,
282 java.lang.String type, java.lang.String structureId,
283 java.lang.String templateId, java.lang.String rendererTemplateId,
284 int delta, java.lang.String orderByCol, java.lang.String orderByType,
285 java.lang.String targetLayoutFriendlyUrl,
286 java.lang.String targetPortletId, java.lang.String contentField,
287 java.lang.String feedType, double feedVersion,
288 com.liferay.portal.service.ServiceContext serviceContext)
289 throws com.liferay.portal.kernel.exception.PortalException,
290 com.liferay.portal.kernel.exception.SystemException {
291 return _journalFeedLocalService.addFeed(userId, groupId, feedId,
292 autoFeedId, name, description, type, structureId, templateId,
293 rendererTemplateId, delta, orderByCol, orderByType,
294 targetLayoutFriendlyUrl, targetPortletId, contentField, feedType,
295 feedVersion, serviceContext);
296 }
297
298 public void addFeedResources(
299 com.liferay.portlet.journal.model.JournalFeed feed,
300 boolean addGroupPermissions, boolean addGuestPermissions)
301 throws com.liferay.portal.kernel.exception.PortalException,
302 com.liferay.portal.kernel.exception.SystemException {
303 _journalFeedLocalService.addFeedResources(feed, addGroupPermissions,
304 addGuestPermissions);
305 }
306
307 public void addFeedResources(
308 com.liferay.portlet.journal.model.JournalFeed feed,
309 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
310 throws com.liferay.portal.kernel.exception.PortalException,
311 com.liferay.portal.kernel.exception.SystemException {
312 _journalFeedLocalService.addFeedResources(feed, groupPermissions,
313 guestPermissions);
314 }
315
316 public void addFeedResources(long feedId, boolean addGroupPermissions,
317 boolean addGuestPermissions)
318 throws com.liferay.portal.kernel.exception.PortalException,
319 com.liferay.portal.kernel.exception.SystemException {
320 _journalFeedLocalService.addFeedResources(feedId, addGroupPermissions,
321 addGuestPermissions);
322 }
323
324 public void addFeedResources(long feedId,
325 java.lang.String[] groupPermissions, java.lang.String[] guestPermissions)
326 throws com.liferay.portal.kernel.exception.PortalException,
327 com.liferay.portal.kernel.exception.SystemException {
328 _journalFeedLocalService.addFeedResources(feedId, groupPermissions,
329 guestPermissions);
330 }
331
332 public void deleteFeed(com.liferay.portlet.journal.model.JournalFeed feed)
333 throws com.liferay.portal.kernel.exception.PortalException,
334 com.liferay.portal.kernel.exception.SystemException {
335 _journalFeedLocalService.deleteFeed(feed);
336 }
337
338 public void deleteFeed(long feedId)
339 throws com.liferay.portal.kernel.exception.PortalException,
340 com.liferay.portal.kernel.exception.SystemException {
341 _journalFeedLocalService.deleteFeed(feedId);
342 }
343
344 public void deleteFeed(long groupId, java.lang.String feedId)
345 throws com.liferay.portal.kernel.exception.PortalException,
346 com.liferay.portal.kernel.exception.SystemException {
347 _journalFeedLocalService.deleteFeed(groupId, feedId);
348 }
349
350 public com.liferay.portlet.journal.model.JournalFeed getFeed(long feedId)
351 throws com.liferay.portal.kernel.exception.PortalException,
352 com.liferay.portal.kernel.exception.SystemException {
353 return _journalFeedLocalService.getFeed(feedId);
354 }
355
356 public com.liferay.portlet.journal.model.JournalFeed getFeed(long groupId,
357 java.lang.String feedId)
358 throws com.liferay.portal.kernel.exception.PortalException,
359 com.liferay.portal.kernel.exception.SystemException {
360 return _journalFeedLocalService.getFeed(groupId, feedId);
361 }
362
363 public java.util.List<com.liferay.portlet.journal.model.JournalFeed> getFeeds()
364 throws com.liferay.portal.kernel.exception.SystemException {
365 return _journalFeedLocalService.getFeeds();
366 }
367
368 public java.util.List<com.liferay.portlet.journal.model.JournalFeed> getFeeds(
369 long groupId)
370 throws com.liferay.portal.kernel.exception.SystemException {
371 return _journalFeedLocalService.getFeeds(groupId);
372 }
373
374 public java.util.List<com.liferay.portlet.journal.model.JournalFeed> getFeeds(
375 long groupId, int start, int end)
376 throws com.liferay.portal.kernel.exception.SystemException {
377 return _journalFeedLocalService.getFeeds(groupId, start, end);
378 }
379
380 public int getFeedsCount(long groupId)
381 throws com.liferay.portal.kernel.exception.SystemException {
382 return _journalFeedLocalService.getFeedsCount(groupId);
383 }
384
385 public java.util.List<com.liferay.portlet.journal.model.JournalFeed> search(
386 long companyId, long groupId, java.lang.String keywords, int start,
387 int end, com.liferay.portal.kernel.util.OrderByComparator obc)
388 throws com.liferay.portal.kernel.exception.SystemException {
389 return _journalFeedLocalService.search(companyId, groupId, keywords,
390 start, end, obc);
391 }
392
393 public java.util.List<com.liferay.portlet.journal.model.JournalFeed> search(
394 long companyId, long groupId, java.lang.String feedId,
395 java.lang.String name, java.lang.String description,
396 boolean andOperator, int start, int end,
397 com.liferay.portal.kernel.util.OrderByComparator obc)
398 throws com.liferay.portal.kernel.exception.SystemException {
399 return _journalFeedLocalService.search(companyId, groupId, feedId,
400 name, description, andOperator, start, end, obc);
401 }
402
403 public int searchCount(long companyId, long groupId,
404 java.lang.String keywords)
405 throws com.liferay.portal.kernel.exception.SystemException {
406 return _journalFeedLocalService.searchCount(companyId, groupId, keywords);
407 }
408
409 public int searchCount(long companyId, long groupId,
410 java.lang.String feedId, java.lang.String name,
411 java.lang.String description, boolean andOperator)
412 throws com.liferay.portal.kernel.exception.SystemException {
413 return _journalFeedLocalService.searchCount(companyId, groupId, feedId,
414 name, description, andOperator);
415 }
416
417 public com.liferay.portlet.journal.model.JournalFeed updateFeed(
418 long groupId, java.lang.String feedId, java.lang.String name,
419 java.lang.String description, java.lang.String type,
420 java.lang.String structureId, java.lang.String templateId,
421 java.lang.String rendererTemplateId, int delta,
422 java.lang.String orderByCol, java.lang.String orderByType,
423 java.lang.String targetLayoutFriendlyUrl,
424 java.lang.String targetPortletId, java.lang.String contentField,
425 java.lang.String feedType, double feedVersion,
426 com.liferay.portal.service.ServiceContext serviceContext)
427 throws com.liferay.portal.kernel.exception.PortalException,
428 com.liferay.portal.kernel.exception.SystemException {
429 return _journalFeedLocalService.updateFeed(groupId, feedId, name,
430 description, type, structureId, templateId, rendererTemplateId,
431 delta, orderByCol, orderByType, targetLayoutFriendlyUrl,
432 targetPortletId, contentField, feedType, feedVersion, serviceContext);
433 }
434
435
438 public JournalFeedLocalService getWrappedJournalFeedLocalService() {
439 return _journalFeedLocalService;
440 }
441
442
445 public void setWrappedJournalFeedLocalService(
446 JournalFeedLocalService journalFeedLocalService) {
447 _journalFeedLocalService = journalFeedLocalService;
448 }
449
450 public JournalFeedLocalService getWrappedService() {
451 return _journalFeedLocalService;
452 }
453
454 public void setWrappedService(
455 JournalFeedLocalService journalFeedLocalService) {
456 _journalFeedLocalService = journalFeedLocalService;
457 }
458
459 private JournalFeedLocalService _journalFeedLocalService;
460 }