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 public void addDLFileEntryTypeDLFolder(long fileEntryTypeId,
052 com.liferay.portlet.documentlibrary.model.DLFolder dlFolder);
053
054 public void addDLFileEntryTypeDLFolder(long fileEntryTypeId, long folderId);
055
056 public void addDLFileEntryTypeDLFolders(long fileEntryTypeId,
057 java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> DLFolders);
058
059 public void addDLFileEntryTypeDLFolders(long fileEntryTypeId,
060 long[] folderIds);
061
062
068 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.REINDEX)
069 public com.liferay.portlet.documentlibrary.model.DLFolder addDLFolder(
070 com.liferay.portlet.documentlibrary.model.DLFolder dlFolder);
071
072 public com.liferay.portlet.documentlibrary.model.DLFolder addFolder(
073 long userId, long groupId, long repositoryId, boolean mountPoint,
074 long parentFolderId, java.lang.String name,
075 java.lang.String description, boolean hidden,
076 com.liferay.portal.service.ServiceContext serviceContext)
077 throws PortalException;
078
079
084 @java.lang.Deprecated
085 public com.liferay.portlet.documentlibrary.model.DLFolder addFolder(
086 long userId, long groupId, long repositoryId, boolean mountPoint,
087 long parentFolderId, java.lang.String name,
088 java.lang.String description,
089 com.liferay.portal.service.ServiceContext serviceContext)
090 throws PortalException;
091
092 public void clearDLFileEntryTypeDLFolders(long fileEntryTypeId);
093
094
100 public com.liferay.portlet.documentlibrary.model.DLFolder createDLFolder(
101 long folderId);
102
103
106 @java.lang.Deprecated
107 public void deleteAll(long groupId) throws PortalException;
108
109 public void deleteAllByGroup(long groupId) throws PortalException;
110
111 public void deleteAllByRepository(long repositoryId)
112 throws PortalException;
113
114 public void deleteDLFileEntryTypeDLFolder(long fileEntryTypeId,
115 com.liferay.portlet.documentlibrary.model.DLFolder dlFolder);
116
117 public void deleteDLFileEntryTypeDLFolder(long fileEntryTypeId,
118 long folderId);
119
120 public void deleteDLFileEntryTypeDLFolders(long fileEntryTypeId,
121 java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> DLFolders);
122
123 public void deleteDLFileEntryTypeDLFolders(long fileEntryTypeId,
124 long[] folderIds);
125
126
132 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
133 public com.liferay.portlet.documentlibrary.model.DLFolder deleteDLFolder(
134 com.liferay.portlet.documentlibrary.model.DLFolder dlFolder);
135
136
143 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
144 public com.liferay.portlet.documentlibrary.model.DLFolder deleteDLFolder(
145 long folderId) throws PortalException;
146
147 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
148 @com.liferay.portal.kernel.systemevent.SystemEvent(action = SystemEventConstants.ACTION_SKIP, type = SystemEventConstants.TYPE_DELETE)
149 public com.liferay.portlet.documentlibrary.model.DLFolder deleteFolder(
150 com.liferay.portlet.documentlibrary.model.DLFolder dlFolder)
151 throws PortalException;
152
153 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
154 @com.liferay.portal.kernel.systemevent.SystemEvent(action = SystemEventConstants.ACTION_SKIP, type = SystemEventConstants.TYPE_DELETE)
155 public com.liferay.portlet.documentlibrary.model.DLFolder deleteFolder(
156 com.liferay.portlet.documentlibrary.model.DLFolder dlFolder,
157 boolean includeTrashedEntries) throws PortalException;
158
159 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
160 public com.liferay.portlet.documentlibrary.model.DLFolder deleteFolder(
161 long folderId) throws PortalException;
162
163 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
164 public com.liferay.portlet.documentlibrary.model.DLFolder deleteFolder(
165 long folderId, boolean includeTrashedEntries) throws PortalException;
166
167 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.DELETE)
168 public com.liferay.portlet.documentlibrary.model.DLFolder deleteFolder(
169 long userId, long folderId, boolean includeTrashedEntries)
170 throws PortalException;
171
172
175 @Override
176 public com.liferay.portal.model.PersistedModel deletePersistedModel(
177 com.liferay.portal.model.PersistedModel persistedModel)
178 throws PortalException;
179
180 public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery();
181
182
188 public <T> java.util.List<T> dynamicQuery(
189 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery);
190
191
203 public <T> java.util.List<T> dynamicQuery(
204 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
205 int end);
206
207
220 public <T> java.util.List<T> dynamicQuery(
221 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
222 int end,
223 com.liferay.portal.kernel.util.OrderByComparator<T> orderByComparator);
224
225
231 public long dynamicQueryCount(
232 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery);
233
234
241 public long dynamicQueryCount(
242 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
243 com.liferay.portal.kernel.dao.orm.Projection projection);
244
245 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
246 public com.liferay.portlet.documentlibrary.model.DLFolder fetchDLFolder(
247 long folderId);
248
249
256 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
257 public com.liferay.portlet.documentlibrary.model.DLFolder fetchDLFolderByUuidAndGroupId(
258 java.lang.String uuid, long groupId);
259
260 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
261 public com.liferay.portlet.documentlibrary.model.DLFolder fetchFolder(
262 long folderId);
263
264 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
265 public com.liferay.portlet.documentlibrary.model.DLFolder fetchFolder(
266 long groupId, long parentFolderId, java.lang.String name);
267
268 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
269 public com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery();
270
271 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
272 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getCompanyFolders(
273 long companyId, int start, int end);
274
275 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
276 public int getCompanyFoldersCount(long companyId);
277
278 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
279 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getDLFileEntryTypeDLFolders(
280 long fileEntryTypeId);
281
282 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
283 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getDLFileEntryTypeDLFolders(
284 long fileEntryTypeId, int start, int end);
285
286 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
287 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getDLFileEntryTypeDLFolders(
288 long fileEntryTypeId, int start, int end,
289 com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.documentlibrary.model.DLFolder> orderByComparator);
290
291 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
292 public int getDLFileEntryTypeDLFoldersCount(long fileEntryTypeId);
293
294
300 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
301 public long[] getDLFileEntryTypePrimaryKeys(long folderId);
302
303
310 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
311 public com.liferay.portlet.documentlibrary.model.DLFolder getDLFolder(
312 long folderId) throws PortalException;
313
314
322 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
323 public com.liferay.portlet.documentlibrary.model.DLFolder getDLFolderByUuidAndGroupId(
324 java.lang.String uuid, long groupId) throws PortalException;
325
326
337 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
338 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getDLFolders(
339 int start, int end);
340
341
348 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
349 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getDLFoldersByUuidAndCompanyId(
350 java.lang.String uuid, long companyId);
351
352
362 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
363 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getDLFoldersByUuidAndCompanyId(
364 java.lang.String uuid, long companyId, int start, int end,
365 com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.documentlibrary.model.DLFolder> orderByComparator);
366
367
372 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
373 public int getDLFoldersCount();
374
375 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
376 public com.liferay.portal.kernel.dao.orm.ExportActionableDynamicQuery getExportActionableDynamicQuery(
377 com.liferay.portlet.exportimport.lar.PortletDataContext portletDataContext);
378
379 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
380 public java.util.List<java.lang.Object> getFileEntriesAndFileShortcuts(
381 long groupId, long folderId,
382 com.liferay.portal.kernel.dao.orm.QueryDefinition<?> queryDefinition);
383
384
388 @java.lang.Deprecated
389 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
390 public java.util.List<java.lang.Object> getFileEntriesAndFileShortcuts(
391 long groupId, long folderId, int status, int start, int end);
392
393 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
394 public int getFileEntriesAndFileShortcutsCount(long groupId, long folderId,
395 com.liferay.portal.kernel.dao.orm.QueryDefinition<?> queryDefinition);
396
397
402 @java.lang.Deprecated
403 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
404 public int getFileEntriesAndFileShortcutsCount(long groupId, long folderId,
405 int status);
406
407 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
408 public com.liferay.portlet.documentlibrary.model.DLFolder getFolder(
409 long folderId) throws PortalException;
410
411 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
412 public com.liferay.portlet.documentlibrary.model.DLFolder getFolder(
413 long groupId, long parentFolderId, java.lang.String name)
414 throws PortalException;
415
416 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
417 public long getFolderId(long companyId, long folderId);
418
419
423 @java.lang.Deprecated
424 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
425 public java.util.List<java.lang.Long> getFolderIds(long groupId,
426 long parentFolderId);
427
428 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
429 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getFolders(
430 long groupId, long parentFolderId);
431
432 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
433 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getFolders(
434 long groupId, long parentFolderId, boolean includeMountfolders);
435
436 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
437 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getFolders(
438 long groupId, long parentFolderId, boolean includeMountfolders,
439 int start, int end,
440 com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.documentlibrary.model.DLFolder> obc);
441
442 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
443 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getFolders(
444 long groupId, long parentFolderId, int start, int end,
445 com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.documentlibrary.model.DLFolder> obc);
446
447 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
448 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getFolders(
449 long groupId, long parentFolderId, int status,
450 boolean includeMountfolders, int start, int end,
451 com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.documentlibrary.model.DLFolder> obc);
452
453 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
454 public java.util.List<java.lang.Object> getFoldersAndFileEntriesAndFileShortcuts(
455 long groupId, long folderId, java.lang.String[] mimeTypes,
456 boolean includeMountFolders,
457 com.liferay.portal.kernel.dao.orm.QueryDefinition<?> queryDefinition);
458
459
464 @java.lang.Deprecated
465 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
466 public java.util.List<java.lang.Object> getFoldersAndFileEntriesAndFileShortcuts(
467 long groupId, long folderId, int status, boolean includeMountFolders,
468 int start, int end,
469 com.liferay.portal.kernel.util.OrderByComparator<?> obc);
470
471
476 @java.lang.Deprecated
477 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
478 public java.util.List<java.lang.Object> getFoldersAndFileEntriesAndFileShortcuts(
479 long groupId, long folderId, int status, java.lang.String[] mimeTypes,
480 boolean includeMountFolders, int start, int end,
481 com.liferay.portal.kernel.util.OrderByComparator<?> obc);
482
483 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
484 public int getFoldersAndFileEntriesAndFileShortcutsCount(long groupId,
485 long folderId, java.lang.String[] mimeTypes,
486 boolean includeMountFolders,
487 com.liferay.portal.kernel.dao.orm.QueryDefinition<?> queryDefinition);
488
489
494 @java.lang.Deprecated
495 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
496 public int getFoldersAndFileEntriesAndFileShortcutsCount(long groupId,
497 long folderId, int status, boolean includeMountFolders);
498
499
504 @java.lang.Deprecated
505 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
506 public int getFoldersAndFileEntriesAndFileShortcutsCount(long groupId,
507 long folderId, int status, java.lang.String[] mimeTypes,
508 boolean includeMountFolders);
509
510 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
511 public int getFoldersCount(long groupId, long parentFolderId);
512
513 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
514 public int getFoldersCount(long groupId, long parentFolderId,
515 boolean includeMountfolders);
516
517 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
518 public int getFoldersCount(long groupId, long parentFolderId, int status,
519 boolean includeMountfolders);
520
521 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
522 public java.util.List<java.lang.Long> getGroupFolderIds(long groupId,
523 long parentFolderId);
524
525 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
526 public void getGroupSubfolderIds(java.util.List<java.lang.Long> folderIds,
527 long groupId, long folderId);
528
529 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
530 public com.liferay.portlet.documentlibrary.model.DLFolder getMountFolder(
531 long repositoryId) throws PortalException;
532
533 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
534 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getMountFolders(
535 long groupId, long parentFolderId, int start, int end,
536 com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portlet.documentlibrary.model.DLFolder> obc);
537
538 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
539 public int getMountFoldersCount(long groupId, long parentFolderId);
540
541 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
542 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getNoAssetFolders();
543
544
549 public java.lang.String getOSGiServiceIdentifier();
550
551 @Override
552 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
553 public com.liferay.portal.model.PersistedModel getPersistedModel(
554 java.io.Serializable primaryKeyObj) throws PortalException;
555
556 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
557 public java.util.List<java.lang.Long> getRepositoryFolderIds(
558 long repositoryId, long parentFolderId);
559
560 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
561 public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getRepositoryFolders(
562 long repositoryId, int start, int end);
563
564 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
565 public int getRepositoryFoldersCount(long repositoryId);
566
567 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
568 public void getRepositorySubfolderIds(
569 java.util.List<java.lang.Long> folderIds, long repositoryId,
570 long folderId);
571
572
576 @java.lang.Deprecated
577 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
578 public void getSubfolderIds(java.util.List<java.lang.Long> folderIds,
579 long groupId, long folderId);
580
581 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
582 public boolean hasDLFileEntryTypeDLFolder(long fileEntryTypeId,
583 long folderId);
584
585 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
586 public boolean hasDLFileEntryTypeDLFolders(long fileEntryTypeId);
587
588 @Transactional(propagation = Propagation.SUPPORTS, readOnly = true)
589 public boolean hasFolderLock(long userId, long folderId);
590
591 public com.liferay.portal.kernel.lock.Lock lockFolder(long userId,
592 long folderId) throws PortalException;
593
594 public com.liferay.portal.kernel.lock.Lock lockFolder(long userId,
595 long folderId, java.lang.String owner, boolean inheritable,
596 long expirationTime) throws PortalException;
597
598 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.REINDEX)
599 public com.liferay.portlet.documentlibrary.model.DLFolder moveFolder(
600 long userId, long folderId, long parentFolderId,
601 com.liferay.portal.service.ServiceContext serviceContext)
602 throws PortalException;
603
604 public void rebuildTree(long companyId) throws PortalException;
605
606 public void rebuildTree(long companyId, long parentFolderId,
607 java.lang.String parentTreePath, boolean reindex)
608 throws PortalException;
609
610 public void setDLFileEntryTypeDLFolders(long fileEntryTypeId,
611 long[] folderIds);
612
613 public void unlockFolder(long folderId, java.lang.String lockUuid)
614 throws PortalException;
615
616 public void unlockFolder(long groupId, long parentFolderId,
617 java.lang.String name, java.lang.String lockUuid)
618 throws PortalException;
619
620
626 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.REINDEX)
627 public com.liferay.portlet.documentlibrary.model.DLFolder updateDLFolder(
628 com.liferay.portlet.documentlibrary.model.DLFolder dlFolder);
629
630
634 @java.lang.Deprecated
635 public com.liferay.portlet.documentlibrary.model.DLFolder updateFolder(
636 long folderId, java.lang.String name, java.lang.String description,
637 long defaultFileEntryTypeId,
638 java.util.List<java.lang.Long> fileEntryTypeIds,
639 boolean overrideFileEntryTypes,
640 com.liferay.portal.service.ServiceContext serviceContext)
641 throws PortalException;
642
643 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.REINDEX)
644 public com.liferay.portlet.documentlibrary.model.DLFolder updateFolder(
645 long folderId, java.lang.String name, java.lang.String description,
646 long defaultFileEntryTypeId,
647 java.util.List<java.lang.Long> fileEntryTypeIds, int restrictionType,
648 com.liferay.portal.service.ServiceContext serviceContext)
649 throws PortalException;
650
651
655 @java.lang.Deprecated
656 public com.liferay.portlet.documentlibrary.model.DLFolder updateFolder(
657 long folderId, long parentFolderId, java.lang.String name,
658 java.lang.String description, long defaultFileEntryTypeId,
659 java.util.List<java.lang.Long> fileEntryTypeIds,
660 boolean overrideFileEntryTypes,
661 com.liferay.portal.service.ServiceContext serviceContext)
662 throws PortalException;
663
664 @com.liferay.portal.kernel.search.Indexable(type = IndexableType.REINDEX)
665 public com.liferay.portlet.documentlibrary.model.DLFolder updateFolder(
666 long folderId, long parentFolderId, java.lang.String name,
667 java.lang.String description, long defaultFileEntryTypeId,
668 java.util.List<java.lang.Long> fileEntryTypeIds, int restrictionType,
669 com.liferay.portal.service.ServiceContext serviceContext)
670 throws PortalException;
671
672
677 @java.lang.Deprecated
678 public com.liferay.portlet.documentlibrary.model.DLFolder updateFolderAndFileEntryTypes(
679 long userId, long folderId, long parentFolderId, java.lang.String name,
680 java.lang.String description, long defaultFileEntryTypeId,
681 java.util.List<java.lang.Long> fileEntryTypeIds,
682 boolean overrideFileEntryTypes,
683 com.liferay.portal.service.ServiceContext serviceContext)
684 throws PortalException;
685
686 public com.liferay.portlet.documentlibrary.model.DLFolder updateFolderAndFileEntryTypes(
687 long userId, long folderId, long parentFolderId, java.lang.String name,
688 java.lang.String description, long defaultFileEntryTypeId,
689 java.util.List<java.lang.Long> fileEntryTypeIds, int restrictionType,
690 com.liferay.portal.service.ServiceContext serviceContext)
691 throws PortalException;
692
693 @com.liferay.portal.kernel.increment.BufferedIncrement(configuration = "DLFolderEntry", incrementClass = com.liferay.portal.kernel.increment.DateOverrideIncrement.class)
694 public void updateLastPostDate(long folderId, java.util.Date lastPostDate)
695 throws PortalException;
696
697 public com.liferay.portlet.documentlibrary.model.DLFolder updateStatus(
698 long userId, long folderId, int status,
699 java.util.Map<java.lang.String, java.io.Serializable> workflowContext,
700 com.liferay.portal.service.ServiceContext serviceContext)
701 throws PortalException;
702 }