001
014
015 package com.liferay.portlet.journal.service;
016
017 import com.liferay.portal.service.ServiceWrapper;
018
019
028 public class JournalFolderLocalServiceWrapper
029 implements JournalFolderLocalService,
030 ServiceWrapper<JournalFolderLocalService> {
031 public JournalFolderLocalServiceWrapper(
032 JournalFolderLocalService journalFolderLocalService) {
033 _journalFolderLocalService = journalFolderLocalService;
034 }
035
036
043 public com.liferay.portlet.journal.model.JournalFolder addJournalFolder(
044 com.liferay.portlet.journal.model.JournalFolder journalFolder)
045 throws com.liferay.portal.kernel.exception.SystemException {
046 return _journalFolderLocalService.addJournalFolder(journalFolder);
047 }
048
049
055 public com.liferay.portlet.journal.model.JournalFolder createJournalFolder(
056 long folderId) {
057 return _journalFolderLocalService.createJournalFolder(folderId);
058 }
059
060
068 public com.liferay.portlet.journal.model.JournalFolder deleteJournalFolder(
069 long folderId)
070 throws com.liferay.portal.kernel.exception.PortalException,
071 com.liferay.portal.kernel.exception.SystemException {
072 return _journalFolderLocalService.deleteJournalFolder(folderId);
073 }
074
075
082 public com.liferay.portlet.journal.model.JournalFolder deleteJournalFolder(
083 com.liferay.portlet.journal.model.JournalFolder journalFolder)
084 throws com.liferay.portal.kernel.exception.SystemException {
085 return _journalFolderLocalService.deleteJournalFolder(journalFolder);
086 }
087
088 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
089 return _journalFolderLocalService.dynamicQuery();
090 }
091
092
099 @SuppressWarnings("rawtypes")
100 public java.util.List dynamicQuery(
101 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
102 throws com.liferay.portal.kernel.exception.SystemException {
103 return _journalFolderLocalService.dynamicQuery(dynamicQuery);
104 }
105
106
119 @SuppressWarnings("rawtypes")
120 public java.util.List dynamicQuery(
121 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
122 int end) throws com.liferay.portal.kernel.exception.SystemException {
123 return _journalFolderLocalService.dynamicQuery(dynamicQuery, start, end);
124 }
125
126
140 @SuppressWarnings("rawtypes")
141 public java.util.List dynamicQuery(
142 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
143 int end,
144 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
145 throws com.liferay.portal.kernel.exception.SystemException {
146 return _journalFolderLocalService.dynamicQuery(dynamicQuery, start,
147 end, orderByComparator);
148 }
149
150
157 public long dynamicQueryCount(
158 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
159 throws com.liferay.portal.kernel.exception.SystemException {
160 return _journalFolderLocalService.dynamicQueryCount(dynamicQuery);
161 }
162
163 public com.liferay.portlet.journal.model.JournalFolder fetchJournalFolder(
164 long folderId)
165 throws com.liferay.portal.kernel.exception.SystemException {
166 return _journalFolderLocalService.fetchJournalFolder(folderId);
167 }
168
169
177 public com.liferay.portlet.journal.model.JournalFolder getJournalFolder(
178 long folderId)
179 throws com.liferay.portal.kernel.exception.PortalException,
180 com.liferay.portal.kernel.exception.SystemException {
181 return _journalFolderLocalService.getJournalFolder(folderId);
182 }
183
184 public com.liferay.portal.model.PersistedModel getPersistedModel(
185 java.io.Serializable primaryKeyObj)
186 throws com.liferay.portal.kernel.exception.PortalException,
187 com.liferay.portal.kernel.exception.SystemException {
188 return _journalFolderLocalService.getPersistedModel(primaryKeyObj);
189 }
190
191
200 public com.liferay.portlet.journal.model.JournalFolder getJournalFolderByUuidAndGroupId(
201 java.lang.String uuid, long groupId)
202 throws com.liferay.portal.kernel.exception.PortalException,
203 com.liferay.portal.kernel.exception.SystemException {
204 return _journalFolderLocalService.getJournalFolderByUuidAndGroupId(uuid,
205 groupId);
206 }
207
208
220 public java.util.List<com.liferay.portlet.journal.model.JournalFolder> getJournalFolders(
221 int start, int end)
222 throws com.liferay.portal.kernel.exception.SystemException {
223 return _journalFolderLocalService.getJournalFolders(start, end);
224 }
225
226
232 public int getJournalFoldersCount()
233 throws com.liferay.portal.kernel.exception.SystemException {
234 return _journalFolderLocalService.getJournalFoldersCount();
235 }
236
237
244 public com.liferay.portlet.journal.model.JournalFolder updateJournalFolder(
245 com.liferay.portlet.journal.model.JournalFolder journalFolder)
246 throws com.liferay.portal.kernel.exception.SystemException {
247 return _journalFolderLocalService.updateJournalFolder(journalFolder);
248 }
249
250
255 public java.lang.String getBeanIdentifier() {
256 return _journalFolderLocalService.getBeanIdentifier();
257 }
258
259
264 public void setBeanIdentifier(java.lang.String beanIdentifier) {
265 _journalFolderLocalService.setBeanIdentifier(beanIdentifier);
266 }
267
268 public com.liferay.portlet.journal.model.JournalFolder addFolder(
269 long userId, long groupId, long parentFolderId, java.lang.String name,
270 java.lang.String description,
271 com.liferay.portal.service.ServiceContext serviceContext)
272 throws com.liferay.portal.kernel.exception.PortalException,
273 com.liferay.portal.kernel.exception.SystemException {
274 return _journalFolderLocalService.addFolder(userId, groupId,
275 parentFolderId, name, description, serviceContext);
276 }
277
278 public com.liferay.portlet.journal.model.JournalFolder deleteFolder(
279 com.liferay.portlet.journal.model.JournalFolder folder)
280 throws com.liferay.portal.kernel.exception.PortalException,
281 com.liferay.portal.kernel.exception.SystemException {
282 return _journalFolderLocalService.deleteFolder(folder);
283 }
284
285 public com.liferay.portlet.journal.model.JournalFolder deleteFolder(
286 long folderId)
287 throws com.liferay.portal.kernel.exception.PortalException,
288 com.liferay.portal.kernel.exception.SystemException {
289 return _journalFolderLocalService.deleteFolder(folderId);
290 }
291
292 public void deleteFolders(long groupId)
293 throws com.liferay.portal.kernel.exception.PortalException,
294 com.liferay.portal.kernel.exception.SystemException {
295 _journalFolderLocalService.deleteFolders(groupId);
296 }
297
298 public com.liferay.portlet.journal.model.JournalFolder fetchFolder(
299 long groupId, java.lang.String name)
300 throws com.liferay.portal.kernel.exception.SystemException {
301 return _journalFolderLocalService.fetchFolder(groupId, name);
302 }
303
304 public java.util.List<com.liferay.portlet.journal.model.JournalFolder> getCompanyFolders(
305 long companyId, int start, int end)
306 throws com.liferay.portal.kernel.exception.SystemException {
307 return _journalFolderLocalService.getCompanyFolders(companyId, start,
308 end);
309 }
310
311 public int getCompanyFoldersCount(long companyId)
312 throws com.liferay.portal.kernel.exception.SystemException {
313 return _journalFolderLocalService.getCompanyFoldersCount(companyId);
314 }
315
316 public com.liferay.portlet.journal.model.JournalFolder getFolder(
317 long folderId)
318 throws com.liferay.portal.kernel.exception.PortalException,
319 com.liferay.portal.kernel.exception.SystemException {
320 return _journalFolderLocalService.getFolder(folderId);
321 }
322
323 public java.util.List<com.liferay.portlet.journal.model.JournalFolder> getFolders(
324 long groupId)
325 throws com.liferay.portal.kernel.exception.SystemException {
326 return _journalFolderLocalService.getFolders(groupId);
327 }
328
329 public java.util.List<com.liferay.portlet.journal.model.JournalFolder> getFolders(
330 long groupId, long parentFolderId)
331 throws com.liferay.portal.kernel.exception.SystemException {
332 return _journalFolderLocalService.getFolders(groupId, parentFolderId);
333 }
334
335 public java.util.List<com.liferay.portlet.journal.model.JournalFolder> getFolders(
336 long groupId, long parentFolderId, int start, int end)
337 throws com.liferay.portal.kernel.exception.SystemException {
338 return _journalFolderLocalService.getFolders(groupId, parentFolderId,
339 start, end);
340 }
341
342 public java.util.List<java.lang.Object> getFoldersAndArticles(
343 long groupId, long folderId, int start, int end,
344 com.liferay.portal.kernel.util.OrderByComparator obc)
345 throws com.liferay.portal.kernel.exception.SystemException {
346 return _journalFolderLocalService.getFoldersAndArticles(groupId,
347 folderId, start, end, obc);
348 }
349
350 public int getFoldersAndArticlesCount(long groupId,
351 java.util.List<java.lang.Long> folderIds, int status)
352 throws com.liferay.portal.kernel.exception.SystemException {
353 return _journalFolderLocalService.getFoldersAndArticlesCount(groupId,
354 folderIds, status);
355 }
356
357 public int getFoldersAndArticlesCount(long groupId, long folderId)
358 throws com.liferay.portal.kernel.exception.SystemException {
359 return _journalFolderLocalService.getFoldersAndArticlesCount(groupId,
360 folderId);
361 }
362
363 public int getFoldersCount(long groupId, long parentFolderId)
364 throws com.liferay.portal.kernel.exception.SystemException {
365 return _journalFolderLocalService.getFoldersCount(groupId,
366 parentFolderId);
367 }
368
369 public java.util.List<com.liferay.portlet.journal.model.JournalFolder> getNoAssetFolders()
370 throws com.liferay.portal.kernel.exception.SystemException {
371 return _journalFolderLocalService.getNoAssetFolders();
372 }
373
374 public void getSubfolderIds(java.util.List<java.lang.Long> folderIds,
375 long groupId, long folderId)
376 throws com.liferay.portal.kernel.exception.SystemException {
377 _journalFolderLocalService.getSubfolderIds(folderIds, groupId, folderId);
378 }
379
380 public com.liferay.portlet.journal.model.JournalFolder moveFolder(
381 long folderId, long parentFolderId,
382 com.liferay.portal.service.ServiceContext serviceContext)
383 throws com.liferay.portal.kernel.exception.PortalException,
384 com.liferay.portal.kernel.exception.SystemException {
385 return _journalFolderLocalService.moveFolder(folderId, parentFolderId,
386 serviceContext);
387 }
388
389 public void updateAsset(long userId,
390 com.liferay.portlet.journal.model.JournalFolder folder,
391 long[] assetCategoryIds, java.lang.String[] assetTagNames,
392 long[] assetLinkEntryIds)
393 throws com.liferay.portal.kernel.exception.PortalException,
394 com.liferay.portal.kernel.exception.SystemException {
395 _journalFolderLocalService.updateAsset(userId, folder,
396 assetCategoryIds, assetTagNames, assetLinkEntryIds);
397 }
398
399 public com.liferay.portlet.journal.model.JournalFolder updateFolder(
400 long userId, long folderId, long parentFolderId, java.lang.String name,
401 java.lang.String description, boolean mergeWithParentFolder,
402 com.liferay.portal.service.ServiceContext serviceContext)
403 throws com.liferay.portal.kernel.exception.PortalException,
404 com.liferay.portal.kernel.exception.SystemException {
405 return _journalFolderLocalService.updateFolder(userId, folderId,
406 parentFolderId, name, description, mergeWithParentFolder,
407 serviceContext);
408 }
409
410
413 public JournalFolderLocalService getWrappedJournalFolderLocalService() {
414 return _journalFolderLocalService;
415 }
416
417
420 public void setWrappedJournalFolderLocalService(
421 JournalFolderLocalService journalFolderLocalService) {
422 _journalFolderLocalService = journalFolderLocalService;
423 }
424
425 public JournalFolderLocalService getWrappedService() {
426 return _journalFolderLocalService;
427 }
428
429 public void setWrappedService(
430 JournalFolderLocalService journalFolderLocalService) {
431 _journalFolderLocalService = journalFolderLocalService;
432 }
433
434 private JournalFolderLocalService _journalFolderLocalService;
435 }