001
014
015 package com.liferay.portlet.documentlibrary.service;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.kernel.exception.PortalException;
020 import com.liferay.portal.kernel.exception.SystemException;
021 import com.liferay.portal.kernel.search.IndexableType;
022 import com.liferay.portal.kernel.transaction.Isolation;
023 import com.liferay.portal.kernel.transaction.Propagation;
024 import com.liferay.portal.kernel.transaction.Transactional;
025 import com.liferay.portal.model.SystemEventConstants;
026 import com.liferay.portal.service.BaseLocalService;
027 import com.liferay.portal.service.PersistedModelLocalService;
028
029
041 @ProviderType
042 @Transactional(isolation = Isolation.PORTAL, rollbackFor = {
043 PortalException.class, SystemException.class})
044 public interface DLFolderLocalService extends BaseLocalService,
045 PersistedModelLocalService {
046
051
052
059 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.REINDEX)
060 public com.liferay.portlet.documentlibrary.model.DLFolder addDLFolder(
061 com.liferay.portlet.documentlibrary.model.DLFolder dlFolder)
062 throws com.liferay.portal.kernel.exception.SystemException;
063
064
070 public com.liferay.portlet.documentlibrary.model.DLFolder createDLFolder(
071 long folderId);
072
073
081 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
082 public com.liferay.portlet.documentlibrary.model.DLFolder deleteDLFolder(
083 long folderId)
084 throws com.liferay.portal.kernel.exception.PortalException,
085 com.liferay.portal.kernel.exception.SystemException;
086
087
094 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
095 public com.liferay.portlet.documentlibrary.model.DLFolder deleteDLFolder(
096 com.liferay.portlet.documentlibrary.model.DLFolder dlFolder)
097 throws com.liferay.portal.kernel.exception.SystemException;
098
099 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery();
100
101
108 @SuppressWarnings("rawtypes")
109 public java.util.List dynamicQuery(
110 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
111 throws com.liferay.portal.kernel.exception.SystemException;
112
113
126 @SuppressWarnings("rawtypes")
127 public java.util.List dynamicQuery(
128 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
129 int end) throws com.liferay.portal.kernel.exception.SystemException;
130
131
145 @SuppressWarnings("rawtypes")
146 public java.util.List dynamicQuery(
147 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
148 int end,
149 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
150 throws com.liferay.portal.kernel.exception.SystemException;
151
152
159 public long dynamicQueryCount(
160 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
161 throws com.liferay.portal.kernel.exception.SystemException;
162
163
171 public long dynamicQueryCount(
172 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
173 com.liferay.portal.kernel.dao.orm.Projection projection)
174 throws com.liferay.portal.kernel.exception.SystemException;
175
176 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
177 public com.liferay.portlet.documentlibrary.model.DLFolder fetchDLFolder(
178 long folderId)
179 throws com.liferay.portal.kernel.exception.SystemException;
180
181
189 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
190 public com.liferay.portlet.documentlibrary.model.DLFolder fetchDLFolderByUuidAndCompanyId(
191 java.lang.String uuid, long companyId)
192 throws com.liferay.portal.kernel.exception.SystemException;
193
194
202 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
203 public com.liferay.portlet.documentlibrary.model.DLFolder fetchDLFolderByUuidAndGroupId(
204 java.lang.String uuid, long groupId)
205 throws com.liferay.portal.kernel.exception.SystemException;
206
207
215 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
216 public com.liferay.portlet.documentlibrary.model.DLFolder getDLFolder(
217 long folderId)
218 throws com.liferay.portal.kernel.exception.PortalException,
219 com.liferay.portal.kernel.exception.SystemException;
220
221 @Override
222 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
223 public com.liferay.portal.model.PersistedModel getPersistedModel(
224 java.io.Serializable primaryKeyObj)
225 throws com.liferay.portal.kernel.exception.PortalException,
226 com.liferay.portal.kernel.exception.SystemException;
227
228
237 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
238 public com.liferay.portlet.documentlibrary.model.DLFolder getDLFolderByUuidAndCompanyId(
239 java.lang.String uuid, long companyId)
240 throws com.liferay.portal.kernel.exception.PortalException,
241 com.liferay.portal.kernel.exception.SystemException;
242
243
252 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
253 public com.liferay.portlet.documentlibrary.model.DLFolder getDLFolderByUuidAndGroupId(
254 java.lang.String uuid, long groupId)
255 throws com.liferay.portal.kernel.exception.PortalException,
256 com.liferay.portal.kernel.exception.SystemException;
257
258
270 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
271 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getDLFolders(
272 int start, int end)
273 throws com.liferay.portal.kernel.exception.SystemException;
274
275
281 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
282 public int getDLFoldersCount()
283 throws com.liferay.portal.kernel.exception.SystemException;
284
285
292 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.REINDEX)
293 public com.liferay.portlet.documentlibrary.model.DLFolder updateDLFolder(
294 com.liferay.portlet.documentlibrary.model.DLFolder dlFolder)
295 throws com.liferay.portal.kernel.exception.SystemException;
296
297
300 public void addDLFileEntryTypeDLFolder(long fileEntryTypeId, long folderId)
301 throws com.liferay.portal.kernel.exception.SystemException;
302
303
306 public void addDLFileEntryTypeDLFolder(long fileEntryTypeId,
307 com.liferay.portlet.documentlibrary.model.DLFolder dlFolder)
308 throws com.liferay.portal.kernel.exception.SystemException;
309
310
313 public void addDLFileEntryTypeDLFolders(long fileEntryTypeId,
314 long[] folderIds)
315 throws com.liferay.portal.kernel.exception.SystemException;
316
317
320 public void addDLFileEntryTypeDLFolders(long fileEntryTypeId,
321 java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> DLFolders)
322 throws com.liferay.portal.kernel.exception.SystemException;
323
324
327 public void clearDLFileEntryTypeDLFolders(long fileEntryTypeId)
328 throws com.liferay.portal.kernel.exception.SystemException;
329
330
333 public void deleteDLFileEntryTypeDLFolder(long fileEntryTypeId,
334 long folderId)
335 throws com.liferay.portal.kernel.exception.SystemException;
336
337
340 public void deleteDLFileEntryTypeDLFolder(long fileEntryTypeId,
341 com.liferay.portlet.documentlibrary.model.DLFolder dlFolder)
342 throws com.liferay.portal.kernel.exception.SystemException;
343
344
347 public void deleteDLFileEntryTypeDLFolders(long fileEntryTypeId,
348 long[] folderIds)
349 throws com.liferay.portal.kernel.exception.SystemException;
350
351
354 public void deleteDLFileEntryTypeDLFolders(long fileEntryTypeId,
355 java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> DLFolders)
356 throws com.liferay.portal.kernel.exception.SystemException;
357
358
361 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
362 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getDLFileEntryTypeDLFolders(
363 long fileEntryTypeId)
364 throws com.liferay.portal.kernel.exception.SystemException;
365
366
369 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
370 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getDLFileEntryTypeDLFolders(
371 long fileEntryTypeId, int start, int end)
372 throws com.liferay.portal.kernel.exception.SystemException;
373
374
377 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
378 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getDLFileEntryTypeDLFolders(
379 long fileEntryTypeId, int start, int end,
380 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
381 throws com.liferay.portal.kernel.exception.SystemException;
382
383
386 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
387 public int getDLFileEntryTypeDLFoldersCount(long fileEntryTypeId)
388 throws com.liferay.portal.kernel.exception.SystemException;
389
390
393 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
394 public boolean hasDLFileEntryTypeDLFolder(long fileEntryTypeId,
395 long folderId)
396 throws com.liferay.portal.kernel.exception.SystemException;
397
398
401 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
402 public boolean hasDLFileEntryTypeDLFolders(long fileEntryTypeId)
403 throws com.liferay.portal.kernel.exception.SystemException;
404
405
408 public void setDLFileEntryTypeDLFolders(long fileEntryTypeId,
409 long[] folderIds)
410 throws com.liferay.portal.kernel.exception.SystemException;
411
412
417 public java.lang.String getBeanIdentifier();
418
419
424 public void setBeanIdentifier(java.lang.String beanIdentifier);
425
426 public com.liferay.portlet.documentlibrary.model.DLFolder addFolder(
427 long userId, long groupId, long repositoryId, boolean mountPoint,
428 long parentFolderId, java.lang.String name,
429 java.lang.String description, boolean hidden,
430 com.liferay.portal.service.ServiceContext serviceContext)
431 throws com.liferay.portal.kernel.exception.PortalException,
432 com.liferay.portal.kernel.exception.SystemException;
433
434
439 public com.liferay.portlet.documentlibrary.model.DLFolder addFolder(
440 long userId, long groupId, long repositoryId, boolean mountPoint,
441 long parentFolderId, java.lang.String name,
442 java.lang.String description,
443 com.liferay.portal.service.ServiceContext serviceContext)
444 throws com.liferay.portal.kernel.exception.PortalException,
445 com.liferay.portal.kernel.exception.SystemException;
446
447 public void deleteAll(long groupId)
448 throws com.liferay.portal.kernel.exception.PortalException,
449 com.liferay.portal.kernel.exception.SystemException;
450
451 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
452 @com.liferay.portal.kernel.systemevent.SystemEvent(action = SystemEventConstants.ACTION_SKIP, send = false, type = SystemEventConstants.TYPE_DELETE)
453 public com.liferay.portlet.documentlibrary.model.DLFolder deleteFolder(
454 com.liferay.portlet.documentlibrary.model.DLFolder dlFolder)
455 throws com.liferay.portal.kernel.exception.PortalException,
456 com.liferay.portal.kernel.exception.SystemException;
457
458 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
459 @com.liferay.portal.kernel.systemevent.SystemEvent(action = SystemEventConstants.ACTION_SKIP, send = false, type = SystemEventConstants.TYPE_DELETE)
460 public com.liferay.portlet.documentlibrary.model.DLFolder deleteFolder(
461 com.liferay.portlet.documentlibrary.model.DLFolder dlFolder,
462 boolean includeTrashedEntries)
463 throws com.liferay.portal.kernel.exception.PortalException,
464 com.liferay.portal.kernel.exception.SystemException;
465
466 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
467 public com.liferay.portlet.documentlibrary.model.DLFolder deleteFolder(
468 long folderId)
469 throws com.liferay.portal.kernel.exception.PortalException,
470 com.liferay.portal.kernel.exception.SystemException;
471
472 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
473 public com.liferay.portlet.documentlibrary.model.DLFolder deleteFolder(
474 long folderId, boolean includeTrashedEntries)
475 throws com.liferay.portal.kernel.exception.PortalException,
476 com.liferay.portal.kernel.exception.SystemException;
477
478 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
479 public com.liferay.portlet.documentlibrary.model.DLFolder deleteFolder(
480 long userId, long folderId, boolean includeTrashedEntries)
481 throws com.liferay.portal.kernel.exception.PortalException,
482 com.liferay.portal.kernel.exception.SystemException;
483
484 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
485 public com.liferay.portlet.documentlibrary.model.DLFolder fetchFolder(
486 long folderId)
487 throws com.liferay.portal.kernel.exception.SystemException;
488
489 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
490 public com.liferay.portlet.documentlibrary.model.DLFolder fetchFolder(
491 long groupId, long parentFolderId, java.lang.String name)
492 throws com.liferay.portal.kernel.exception.SystemException;
493
494 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
495 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getCompanyFolders(
496 long companyId, int start, int end)
497 throws com.liferay.portal.kernel.exception.SystemException;
498
499 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
500 public int getCompanyFoldersCount(long companyId)
501 throws com.liferay.portal.kernel.exception.SystemException;
502
503
507 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
508 public java.util.List<java.lang.Object> getFileEntriesAndFileShortcuts(
509 long groupId, long folderId, int status, int start, int end)
510 throws com.liferay.portal.kernel.exception.SystemException;
511
512 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
513 public java.util.List<java.lang.Object> getFileEntriesAndFileShortcuts(
514 long groupId, long folderId,
515 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
516 throws com.liferay.portal.kernel.exception.SystemException;
517
518
523 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
524 public int getFileEntriesAndFileShortcutsCount(long groupId, long folderId,
525 int status) throws com.liferay.portal.kernel.exception.SystemException;
526
527 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
528 public int getFileEntriesAndFileShortcutsCount(long groupId, long folderId,
529 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
530 throws com.liferay.portal.kernel.exception.SystemException;
531
532 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
533 public com.liferay.portlet.documentlibrary.model.DLFolder getFolder(
534 long folderId)
535 throws com.liferay.portal.kernel.exception.PortalException,
536 com.liferay.portal.kernel.exception.SystemException;
537
538 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
539 public com.liferay.portlet.documentlibrary.model.DLFolder getFolder(
540 long groupId, long parentFolderId, java.lang.String name)
541 throws com.liferay.portal.kernel.exception.PortalException,
542 com.liferay.portal.kernel.exception.SystemException;
543
544 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
545 public long getFolderId(long companyId, long folderId)
546 throws com.liferay.portal.kernel.exception.SystemException;
547
548 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
549 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getFolders(
550 long groupId, long parentFolderId)
551 throws com.liferay.portal.kernel.exception.SystemException;
552
553 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
554 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getFolders(
555 long groupId, long parentFolderId, boolean includeMountfolders)
556 throws com.liferay.portal.kernel.exception.SystemException;
557
558 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
559 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getFolders(
560 long groupId, long parentFolderId, boolean includeMountfolders,
561 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
562 throws com.liferay.portal.kernel.exception.SystemException;
563
564 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
565 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getFolders(
566 long groupId, long parentFolderId, int start, int end,
567 com.liferay.portal.kernel.util.OrderByComparator obc)
568 throws com.liferay.portal.kernel.exception.SystemException;
569
570
575 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
576 public java.util.List<java.lang.Object> getFoldersAndFileEntriesAndFileShortcuts(
577 long groupId, long folderId, int status, boolean includeMountFolders,
578 int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
579 throws com.liferay.portal.kernel.exception.SystemException;
580
581
586 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
587 public java.util.List<java.lang.Object> getFoldersAndFileEntriesAndFileShortcuts(
588 long groupId, long folderId, int status, java.lang.String[] mimeTypes,
589 boolean includeMountFolders, int start, int end,
590 com.liferay.portal.kernel.util.OrderByComparator obc)
591 throws com.liferay.portal.kernel.exception.SystemException;
592
593 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
594 public java.util.List<java.lang.Object> getFoldersAndFileEntriesAndFileShortcuts(
595 long groupId, long folderId, java.lang.String[] mimeTypes,
596 boolean includeMountFolders,
597 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
598 throws com.liferay.portal.kernel.exception.SystemException;
599
600
605 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
606 public int getFoldersAndFileEntriesAndFileShortcutsCount(long groupId,
607 long folderId, int status, boolean includeMountFolders)
608 throws com.liferay.portal.kernel.exception.SystemException;
609
610
615 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
616 public int getFoldersAndFileEntriesAndFileShortcutsCount(long groupId,
617 long folderId, int status, java.lang.String[] mimeTypes,
618 boolean includeMountFolders)
619 throws com.liferay.portal.kernel.exception.SystemException;
620
621 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
622 public int getFoldersAndFileEntriesAndFileShortcutsCount(long groupId,
623 long folderId, java.lang.String[] mimeTypes,
624 boolean includeMountFolders,
625 com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
626 throws com.liferay.portal.kernel.exception.SystemException;
627
628 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
629 public int getFoldersCount(long groupId, long parentFolderId)
630 throws com.liferay.portal.kernel.exception.SystemException;
631
632 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
633 public int getFoldersCount(long groupId, long parentFolderId,
634 boolean includeMountfolders)
635 throws com.liferay.portal.kernel.exception.SystemException;
636
637 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
638 public int getFoldersCount(long groupId, long parentFolderId, int status,
639 boolean includeMountfolders)
640 throws com.liferay.portal.kernel.exception.SystemException;
641
642 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
643 public com.liferay.portlet.documentlibrary.model.DLFolder getMountFolder(
644 long repositoryId)
645 throws com.liferay.portal.kernel.exception.PortalException,
646 com.liferay.portal.kernel.exception.SystemException;
647
648 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
649 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getMountFolders(
650 long groupId, long parentFolderId, int start, int end,
651 com.liferay.portal.kernel.util.OrderByComparator obc)
652 throws com.liferay.portal.kernel.exception.SystemException;
653
654 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
655 public int getMountFoldersCount(long groupId, long parentFolderId)
656 throws com.liferay.portal.kernel.exception.SystemException;
657
658 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
659 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getNoAssetFolders()
660 throws com.liferay.portal.kernel.exception.SystemException;
661
662 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
663 public void getSubfolderIds(java.util.List<java.lang.Long> folderIds,
664 long groupId, long folderId)
665 throws com.liferay.portal.kernel.exception.SystemException;
666
667 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
668 public boolean hasFolderLock(long userId, long folderId)
669 throws com.liferay.portal.kernel.exception.SystemException;
670
671 public com.liferay.portal.model.Lock lockFolder(long userId, long folderId)
672 throws com.liferay.portal.kernel.exception.PortalException,
673 com.liferay.portal.kernel.exception.SystemException;
674
675 public com.liferay.portal.model.Lock lockFolder(long userId, long folderId,
676 java.lang.String owner, boolean inheritable, long expirationTime)
677 throws com.liferay.portal.kernel.exception.PortalException,
678 com.liferay.portal.kernel.exception.SystemException;
679
680 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.REINDEX)
681 public com.liferay.portlet.documentlibrary.model.DLFolder moveFolder(
682 long userId, long folderId, long parentFolderId,
683 com.liferay.portal.service.ServiceContext serviceContext)
684 throws com.liferay.portal.kernel.exception.PortalException,
685 com.liferay.portal.kernel.exception.SystemException;
686
687 public void rebuildTree(long companyId)
688 throws com.liferay.portal.kernel.exception.SystemException;
689
690 public void unlockFolder(long groupId, long parentFolderId,
691 java.lang.String name, java.lang.String lockUuid)
692 throws com.liferay.portal.kernel.exception.PortalException,
693 com.liferay.portal.kernel.exception.SystemException;
694
695 public void unlockFolder(long folderId, java.lang.String lockUuid)
696 throws com.liferay.portal.kernel.exception.PortalException,
697 com.liferay.portal.kernel.exception.SystemException;
698
699 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.REINDEX)
700 public com.liferay.portlet.documentlibrary.model.DLFolder updateFolder(
701 long folderId, long parentFolderId, java.lang.String name,
702 java.lang.String description, long defaultFileEntryTypeId,
703 java.util.List<java.lang.Long> fileEntryTypeIds,
704 boolean overrideFileEntryTypes,
705 com.liferay.portal.service.ServiceContext serviceContext)
706 throws com.liferay.portal.kernel.exception.PortalException,
707 com.liferay.portal.kernel.exception.SystemException;
708
709 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.REINDEX)
710 public com.liferay.portlet.documentlibrary.model.DLFolder updateFolder(
711 long folderId, java.lang.String name, java.lang.String description,
712 long defaultFileEntryTypeId,
713 java.util.List<java.lang.Long> fileEntryTypeIds,
714 boolean overrideFileEntryTypes,
715 com.liferay.portal.service.ServiceContext serviceContext)
716 throws com.liferay.portal.kernel.exception.PortalException,
717 com.liferay.portal.kernel.exception.SystemException;
718
719 public com.liferay.portlet.documentlibrary.model.DLFolder updateFolderAndFileEntryTypes(
720 long userId, long folderId, long parentFolderId, java.lang.String name,
721 java.lang.String description, long defaultFileEntryTypeId,
722 java.util.List<java.lang.Long> fileEntryTypeIds,
723 boolean overrideFileEntryTypes,
724 com.liferay.portal.service.ServiceContext serviceContext)
725 throws com.liferay.portal.kernel.exception.PortalException,
726 com.liferay.portal.kernel.exception.SystemException;
727
728
731 public void updateLastPostDate(long folderId, java.util.Date lastPostDate)
732 throws com.liferay.portal.kernel.exception.PortalException,
733 com.liferay.portal.kernel.exception.SystemException;
734
735 public com.liferay.portlet.documentlibrary.model.DLFolder updateStatus(
736 long userId, long folderId, int status,
737 java.util.Map<java.lang.String, java.io.Serializable> workflowContext,
738 com.liferay.portal.service.ServiceContext serviceContext)
739 throws com.liferay.portal.kernel.exception.PortalException,
740 com.liferay.portal.kernel.exception.SystemException;
741 }