001    /**
002     * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.documentlibrary.service;
016    
017    import com.liferay.portal.service.ServiceWrapper;
018    
019    /**
020     * <p>
021     * This class is a wrapper for {@link DLFolderLocalService}.
022     * </p>
023     *
024     * @author    Brian Wing Shun Chan
025     * @see       DLFolderLocalService
026     * @generated
027     */
028    public class DLFolderLocalServiceWrapper implements DLFolderLocalService,
029            ServiceWrapper<DLFolderLocalService> {
030            public DLFolderLocalServiceWrapper(
031                    DLFolderLocalService dlFolderLocalService) {
032                    _dlFolderLocalService = dlFolderLocalService;
033            }
034    
035            /**
036            * Adds the document library folder to the database. Also notifies the appropriate model listeners.
037            *
038            * @param dlFolder the document library folder
039            * @return the document library folder that was added
040            * @throws SystemException if a system exception occurred
041            */
042            public com.liferay.portlet.documentlibrary.model.DLFolder addDLFolder(
043                    com.liferay.portlet.documentlibrary.model.DLFolder dlFolder)
044                    throws com.liferay.portal.kernel.exception.SystemException {
045                    return _dlFolderLocalService.addDLFolder(dlFolder);
046            }
047    
048            /**
049            * Creates a new document library folder with the primary key. Does not add the document library folder to the database.
050            *
051            * @param folderId the primary key for the new document library folder
052            * @return the new document library folder
053            */
054            public com.liferay.portlet.documentlibrary.model.DLFolder createDLFolder(
055                    long folderId) {
056                    return _dlFolderLocalService.createDLFolder(folderId);
057            }
058    
059            /**
060            * Deletes the document library folder with the primary key from the database. Also notifies the appropriate model listeners.
061            *
062            * @param folderId the primary key of the document library folder
063            * @return the document library folder that was removed
064            * @throws PortalException if a document library folder with the primary key could not be found
065            * @throws SystemException if a system exception occurred
066            */
067            public com.liferay.portlet.documentlibrary.model.DLFolder deleteDLFolder(
068                    long folderId)
069                    throws com.liferay.portal.kernel.exception.PortalException,
070                            com.liferay.portal.kernel.exception.SystemException {
071                    return _dlFolderLocalService.deleteDLFolder(folderId);
072            }
073    
074            /**
075            * Deletes the document library folder from the database. Also notifies the appropriate model listeners.
076            *
077            * @param dlFolder the document library folder
078            * @return the document library folder that was removed
079            * @throws SystemException if a system exception occurred
080            */
081            public com.liferay.portlet.documentlibrary.model.DLFolder deleteDLFolder(
082                    com.liferay.portlet.documentlibrary.model.DLFolder dlFolder)
083                    throws com.liferay.portal.kernel.exception.SystemException {
084                    return _dlFolderLocalService.deleteDLFolder(dlFolder);
085            }
086    
087            public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery() {
088                    return _dlFolderLocalService.dynamicQuery();
089            }
090    
091            /**
092            * Performs a dynamic query on the database and returns the matching rows.
093            *
094            * @param dynamicQuery the dynamic query
095            * @return the matching rows
096            * @throws SystemException if a system exception occurred
097            */
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 _dlFolderLocalService.dynamicQuery(dynamicQuery);
103            }
104    
105            /**
106            * Performs a dynamic query on the database and returns a range of the matching rows.
107            *
108            * <p>
109            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
110            * </p>
111            *
112            * @param dynamicQuery the dynamic query
113            * @param start the lower bound of the range of model instances
114            * @param end the upper bound of the range of model instances (not inclusive)
115            * @return the range of matching rows
116            * @throws SystemException if a system exception occurred
117            */
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 _dlFolderLocalService.dynamicQuery(dynamicQuery, start, end);
123            }
124    
125            /**
126            * Performs a dynamic query on the database and returns an ordered range of the matching rows.
127            *
128            * <p>
129            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
130            * </p>
131            *
132            * @param dynamicQuery the dynamic query
133            * @param start the lower bound of the range of model instances
134            * @param end the upper bound of the range of model instances (not inclusive)
135            * @param orderByComparator the comparator to order the results by (optionally <code>null</code>)
136            * @return the ordered range of matching rows
137            * @throws SystemException if a system exception occurred
138            */
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 _dlFolderLocalService.dynamicQuery(dynamicQuery, start, end,
146                            orderByComparator);
147            }
148    
149            /**
150            * Returns the number of rows that match the dynamic query.
151            *
152            * @param dynamicQuery the dynamic query
153            * @return the number of rows that match the dynamic query
154            * @throws SystemException if a system exception occurred
155            */
156            public long dynamicQueryCount(
157                    com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
158                    throws com.liferay.portal.kernel.exception.SystemException {
159                    return _dlFolderLocalService.dynamicQueryCount(dynamicQuery);
160            }
161    
162            public com.liferay.portlet.documentlibrary.model.DLFolder fetchDLFolder(
163                    long folderId)
164                    throws com.liferay.portal.kernel.exception.SystemException {
165                    return _dlFolderLocalService.fetchDLFolder(folderId);
166            }
167    
168            /**
169            * Returns the document library folder with the primary key.
170            *
171            * @param folderId the primary key of the document library folder
172            * @return the document library folder
173            * @throws PortalException if a document library folder with the primary key could not be found
174            * @throws SystemException if a system exception occurred
175            */
176            public com.liferay.portlet.documentlibrary.model.DLFolder getDLFolder(
177                    long folderId)
178                    throws com.liferay.portal.kernel.exception.PortalException,
179                            com.liferay.portal.kernel.exception.SystemException {
180                    return _dlFolderLocalService.getDLFolder(folderId);
181            }
182    
183            public com.liferay.portal.model.PersistedModel getPersistedModel(
184                    java.io.Serializable primaryKeyObj)
185                    throws com.liferay.portal.kernel.exception.PortalException,
186                            com.liferay.portal.kernel.exception.SystemException {
187                    return _dlFolderLocalService.getPersistedModel(primaryKeyObj);
188            }
189    
190            /**
191            * Returns the document library folder with the UUID in the group.
192            *
193            * @param uuid the UUID of document library folder
194            * @param groupId the group id of the document library folder
195            * @return the document library folder
196            * @throws PortalException if a document library folder with the UUID in the group could not be found
197            * @throws SystemException if a system exception occurred
198            */
199            public com.liferay.portlet.documentlibrary.model.DLFolder getDLFolderByUuidAndGroupId(
200                    java.lang.String uuid, long groupId)
201                    throws com.liferay.portal.kernel.exception.PortalException,
202                            com.liferay.portal.kernel.exception.SystemException {
203                    return _dlFolderLocalService.getDLFolderByUuidAndGroupId(uuid, groupId);
204            }
205    
206            /**
207            * Returns a range of all the document library folders.
208            *
209            * <p>
210            * Useful when paginating results. Returns a maximum of <code>end - start</code> instances. <code>start</code> and <code>end</code> are not primary keys, they are indexes in the result set. Thus, <code>0</code> refers to the first result in the set. Setting both <code>start</code> and <code>end</code> to {@link com.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POS} will return the full result set.
211            * </p>
212            *
213            * @param start the lower bound of the range of document library folders
214            * @param end the upper bound of the range of document library folders (not inclusive)
215            * @return the range of document library folders
216            * @throws SystemException if a system exception occurred
217            */
218            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getDLFolders(
219                    int start, int end)
220                    throws com.liferay.portal.kernel.exception.SystemException {
221                    return _dlFolderLocalService.getDLFolders(start, end);
222            }
223    
224            /**
225            * Returns the number of document library folders.
226            *
227            * @return the number of document library folders
228            * @throws SystemException if a system exception occurred
229            */
230            public int getDLFoldersCount()
231                    throws com.liferay.portal.kernel.exception.SystemException {
232                    return _dlFolderLocalService.getDLFoldersCount();
233            }
234    
235            /**
236            * Updates the document library folder in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.
237            *
238            * @param dlFolder the document library folder
239            * @return the document library folder that was updated
240            * @throws SystemException if a system exception occurred
241            */
242            public com.liferay.portlet.documentlibrary.model.DLFolder updateDLFolder(
243                    com.liferay.portlet.documentlibrary.model.DLFolder dlFolder)
244                    throws com.liferay.portal.kernel.exception.SystemException {
245                    return _dlFolderLocalService.updateDLFolder(dlFolder);
246            }
247    
248            /**
249            * Returns the Spring bean ID for this bean.
250            *
251            * @return the Spring bean ID for this bean
252            */
253            public java.lang.String getBeanIdentifier() {
254                    return _dlFolderLocalService.getBeanIdentifier();
255            }
256    
257            /**
258            * Sets the Spring bean ID for this bean.
259            *
260            * @param beanIdentifier the Spring bean ID for this bean
261            */
262            public void setBeanIdentifier(java.lang.String beanIdentifier) {
263                    _dlFolderLocalService.setBeanIdentifier(beanIdentifier);
264            }
265    
266            public com.liferay.portlet.documentlibrary.model.DLFolder addFolder(
267                    long userId, long groupId, long repositoryId, boolean mountPoint,
268                    long parentFolderId, java.lang.String name,
269                    java.lang.String description, boolean hidden,
270                    com.liferay.portal.service.ServiceContext serviceContext)
271                    throws com.liferay.portal.kernel.exception.PortalException,
272                            com.liferay.portal.kernel.exception.SystemException {
273                    return _dlFolderLocalService.addFolder(userId, groupId, repositoryId,
274                            mountPoint, parentFolderId, name, description, hidden,
275                            serviceContext);
276            }
277    
278            /**
279            * @deprecated As of 6.2, replaced by more general {@link #addFolder(long,
280            long, long, boolean, long, String, String, boolean,
281            ServiceContext)}
282            */
283            public com.liferay.portlet.documentlibrary.model.DLFolder addFolder(
284                    long userId, long groupId, long repositoryId, boolean mountPoint,
285                    long parentFolderId, java.lang.String name,
286                    java.lang.String description,
287                    com.liferay.portal.service.ServiceContext serviceContext)
288                    throws com.liferay.portal.kernel.exception.PortalException,
289                            com.liferay.portal.kernel.exception.SystemException {
290                    return _dlFolderLocalService.addFolder(userId, groupId, repositoryId,
291                            mountPoint, parentFolderId, name, description, serviceContext);
292            }
293    
294            public void deleteAll(long groupId)
295                    throws com.liferay.portal.kernel.exception.PortalException,
296                            com.liferay.portal.kernel.exception.SystemException {
297                    _dlFolderLocalService.deleteAll(groupId);
298            }
299    
300            public void deleteFolder(long folderId)
301                    throws com.liferay.portal.kernel.exception.PortalException,
302                            com.liferay.portal.kernel.exception.SystemException {
303                    _dlFolderLocalService.deleteFolder(folderId);
304            }
305    
306            public void deleteFolder(long folderId, boolean includeTrashedEntries)
307                    throws com.liferay.portal.kernel.exception.PortalException,
308                            com.liferay.portal.kernel.exception.SystemException {
309                    _dlFolderLocalService.deleteFolder(folderId, includeTrashedEntries);
310            }
311    
312            public com.liferay.portlet.documentlibrary.model.DLFolder fetchFolder(
313                    long groupId, long parentFolderId, java.lang.String name)
314                    throws com.liferay.portal.kernel.exception.SystemException {
315                    return _dlFolderLocalService.fetchFolder(groupId, parentFolderId, name);
316            }
317    
318            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getCompanyFolders(
319                    long companyId, int start, int end)
320                    throws com.liferay.portal.kernel.exception.SystemException {
321                    return _dlFolderLocalService.getCompanyFolders(companyId, start, end);
322            }
323    
324            public int getCompanyFoldersCount(long companyId)
325                    throws com.liferay.portal.kernel.exception.SystemException {
326                    return _dlFolderLocalService.getCompanyFoldersCount(companyId);
327            }
328    
329            /**
330            * @deprecated Replaced by {@link #getFileEntriesAndFileShortcuts(long,
331            long, QueryDefinition)}
332            */
333            public java.util.List<java.lang.Object> getFileEntriesAndFileShortcuts(
334                    long groupId, long folderId, int status, int start, int end)
335                    throws com.liferay.portal.kernel.exception.SystemException {
336                    return _dlFolderLocalService.getFileEntriesAndFileShortcuts(groupId,
337                            folderId, status, start, end);
338            }
339    
340            public java.util.List<java.lang.Object> getFileEntriesAndFileShortcuts(
341                    long groupId, long folderId,
342                    com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
343                    throws com.liferay.portal.kernel.exception.SystemException {
344                    return _dlFolderLocalService.getFileEntriesAndFileShortcuts(groupId,
345                            folderId, queryDefinition);
346            }
347    
348            /**
349            * @deprecated Replaced by {@link #getFileEntriesAndFileShortcutsCount(long,
350            long, QueryDefinition)}
351            */
352            public int getFileEntriesAndFileShortcutsCount(long groupId, long folderId,
353                    int status) throws com.liferay.portal.kernel.exception.SystemException {
354                    return _dlFolderLocalService.getFileEntriesAndFileShortcutsCount(groupId,
355                            folderId, status);
356            }
357    
358            public int getFileEntriesAndFileShortcutsCount(long groupId, long folderId,
359                    com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
360                    throws com.liferay.portal.kernel.exception.SystemException {
361                    return _dlFolderLocalService.getFileEntriesAndFileShortcutsCount(groupId,
362                            folderId, queryDefinition);
363            }
364    
365            public com.liferay.portlet.documentlibrary.model.DLFolder getFolder(
366                    long folderId)
367                    throws com.liferay.portal.kernel.exception.PortalException,
368                            com.liferay.portal.kernel.exception.SystemException {
369                    return _dlFolderLocalService.getFolder(folderId);
370            }
371    
372            public com.liferay.portlet.documentlibrary.model.DLFolder getFolder(
373                    long groupId, long parentFolderId, java.lang.String name)
374                    throws com.liferay.portal.kernel.exception.PortalException,
375                            com.liferay.portal.kernel.exception.SystemException {
376                    return _dlFolderLocalService.getFolder(groupId, parentFolderId, name);
377            }
378    
379            public long getFolderId(long companyId, long folderId)
380                    throws com.liferay.portal.kernel.exception.SystemException {
381                    return _dlFolderLocalService.getFolderId(companyId, folderId);
382            }
383    
384            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getFolders(
385                    long groupId, long parentFolderId)
386                    throws com.liferay.portal.kernel.exception.SystemException {
387                    return _dlFolderLocalService.getFolders(groupId, parentFolderId);
388            }
389    
390            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getFolders(
391                    long groupId, long parentFolderId, boolean includeMountfolders)
392                    throws com.liferay.portal.kernel.exception.SystemException {
393                    return _dlFolderLocalService.getFolders(groupId, parentFolderId,
394                            includeMountfolders);
395            }
396    
397            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getFolders(
398                    long groupId, long parentFolderId, boolean includeMountfolders,
399                    int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
400                    throws com.liferay.portal.kernel.exception.SystemException {
401                    return _dlFolderLocalService.getFolders(groupId, parentFolderId,
402                            includeMountfolders, start, end, obc);
403            }
404    
405            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getFolders(
406                    long groupId, long parentFolderId, int start, int end,
407                    com.liferay.portal.kernel.util.OrderByComparator obc)
408                    throws com.liferay.portal.kernel.exception.SystemException {
409                    return _dlFolderLocalService.getFolders(groupId, parentFolderId, start,
410                            end, obc);
411            }
412    
413            /**
414            * @deprecated Replaced by {@link
415            #getFoldersAndFileEntriesAndFileShortcuts(long, long,
416            String[], boolean, QueryDefinition)}
417            */
418            public java.util.List<java.lang.Object> getFoldersAndFileEntriesAndFileShortcuts(
419                    long groupId, long folderId, int status, boolean includeMountFolders,
420                    int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
421                    throws com.liferay.portal.kernel.exception.SystemException {
422                    return _dlFolderLocalService.getFoldersAndFileEntriesAndFileShortcuts(groupId,
423                            folderId, status, includeMountFolders, start, end, obc);
424            }
425    
426            /**
427            * @deprecated Replaced by {@link
428            #getFoldersAndFileEntriesAndFileShortcutsCount(long, long,
429            String[], boolean, QueryDefinition)}
430            */
431            public java.util.List<java.lang.Object> getFoldersAndFileEntriesAndFileShortcuts(
432                    long groupId, long folderId, int status, java.lang.String[] mimeTypes,
433                    boolean includeMountFolders, int start, int end,
434                    com.liferay.portal.kernel.util.OrderByComparator obc)
435                    throws com.liferay.portal.kernel.exception.SystemException {
436                    return _dlFolderLocalService.getFoldersAndFileEntriesAndFileShortcuts(groupId,
437                            folderId, status, mimeTypes, includeMountFolders, start, end, obc);
438            }
439    
440            public java.util.List<java.lang.Object> getFoldersAndFileEntriesAndFileShortcuts(
441                    long groupId, long folderId, java.lang.String[] mimeTypes,
442                    boolean includeMountFolders,
443                    com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
444                    throws com.liferay.portal.kernel.exception.SystemException {
445                    return _dlFolderLocalService.getFoldersAndFileEntriesAndFileShortcuts(groupId,
446                            folderId, mimeTypes, includeMountFolders, queryDefinition);
447            }
448    
449            /**
450            * @deprecated Replaced by {@link
451            #getFoldersAndFileEntriesAndFileShortcutsCount(long, long,
452            String[], boolean, QueryDefinition)}
453            */
454            public int getFoldersAndFileEntriesAndFileShortcutsCount(long groupId,
455                    long folderId, int status, boolean includeMountFolders)
456                    throws com.liferay.portal.kernel.exception.SystemException {
457                    return _dlFolderLocalService.getFoldersAndFileEntriesAndFileShortcutsCount(groupId,
458                            folderId, status, includeMountFolders);
459            }
460    
461            /**
462            * @deprecated Replaced by {@link
463            #getFoldersAndFileEntriesAndFileShortcutsCount(long, long,
464            String[], boolean, QueryDefinition)}
465            */
466            public int getFoldersAndFileEntriesAndFileShortcutsCount(long groupId,
467                    long folderId, int status, java.lang.String[] mimeTypes,
468                    boolean includeMountFolders)
469                    throws com.liferay.portal.kernel.exception.SystemException {
470                    return _dlFolderLocalService.getFoldersAndFileEntriesAndFileShortcutsCount(groupId,
471                            folderId, status, mimeTypes, includeMountFolders);
472            }
473    
474            public int getFoldersAndFileEntriesAndFileShortcutsCount(long groupId,
475                    long folderId, java.lang.String[] mimeTypes,
476                    boolean includeMountFolders,
477                    com.liferay.portal.kernel.dao.orm.QueryDefinition queryDefinition)
478                    throws com.liferay.portal.kernel.exception.SystemException {
479                    return _dlFolderLocalService.getFoldersAndFileEntriesAndFileShortcutsCount(groupId,
480                            folderId, mimeTypes, includeMountFolders, queryDefinition);
481            }
482    
483            public int getFoldersCount(long groupId, long parentFolderId)
484                    throws com.liferay.portal.kernel.exception.SystemException {
485                    return _dlFolderLocalService.getFoldersCount(groupId, parentFolderId);
486            }
487    
488            public int getFoldersCount(long groupId, long parentFolderId,
489                    boolean includeMountfolders)
490                    throws com.liferay.portal.kernel.exception.SystemException {
491                    return _dlFolderLocalService.getFoldersCount(groupId, parentFolderId,
492                            includeMountfolders);
493            }
494    
495            public com.liferay.portlet.documentlibrary.model.DLFolder getMountFolder(
496                    long repositoryId)
497                    throws com.liferay.portal.kernel.exception.PortalException,
498                            com.liferay.portal.kernel.exception.SystemException {
499                    return _dlFolderLocalService.getMountFolder(repositoryId);
500            }
501    
502            public java.util.List<com.liferay.portlet.documentlibrary.model.DLFolder> getMountFolders(
503                    long groupId, long parentFolderId, int start, int end,
504                    com.liferay.portal.kernel.util.OrderByComparator obc)
505                    throws com.liferay.portal.kernel.exception.SystemException {
506                    return _dlFolderLocalService.getMountFolders(groupId, parentFolderId,
507                            start, end, obc);
508            }
509    
510            public int getMountFoldersCount(long groupId, long parentFolderId)
511                    throws com.liferay.portal.kernel.exception.SystemException {
512                    return _dlFolderLocalService.getMountFoldersCount(groupId,
513                            parentFolderId);
514            }
515    
516            public void getSubfolderIds(java.util.List<java.lang.Long> folderIds,
517                    long groupId, long folderId)
518                    throws com.liferay.portal.kernel.exception.SystemException {
519                    _dlFolderLocalService.getSubfolderIds(folderIds, groupId, folderId);
520            }
521    
522            public com.liferay.portlet.documentlibrary.model.DLFolder moveFolder(
523                    long folderId, long parentFolderId,
524                    com.liferay.portal.service.ServiceContext serviceContext)
525                    throws com.liferay.portal.kernel.exception.PortalException,
526                            com.liferay.portal.kernel.exception.SystemException {
527                    return _dlFolderLocalService.moveFolder(folderId, parentFolderId,
528                            serviceContext);
529            }
530    
531            public com.liferay.portlet.documentlibrary.model.DLFolder updateFolder(
532                    long folderId, long parentFolderId, java.lang.String name,
533                    java.lang.String description, long defaultFileEntryTypeId,
534                    java.util.List<java.lang.Long> fileEntryTypeIds,
535                    boolean overrideFileEntryTypes,
536                    com.liferay.portal.service.ServiceContext serviceContext)
537                    throws com.liferay.portal.kernel.exception.PortalException,
538                            com.liferay.portal.kernel.exception.SystemException {
539                    return _dlFolderLocalService.updateFolder(folderId, parentFolderId,
540                            name, description, defaultFileEntryTypeId, fileEntryTypeIds,
541                            overrideFileEntryTypes, serviceContext);
542            }
543    
544            public com.liferay.portlet.documentlibrary.model.DLFolder updateFolder(
545                    long folderId, java.lang.String name, java.lang.String description,
546                    long defaultFileEntryTypeId,
547                    java.util.List<java.lang.Long> fileEntryTypeIds,
548                    boolean overrideFileEntryTypes,
549                    com.liferay.portal.service.ServiceContext serviceContext)
550                    throws com.liferay.portal.kernel.exception.PortalException,
551                            com.liferay.portal.kernel.exception.SystemException {
552                    return _dlFolderLocalService.updateFolder(folderId, name, description,
553                            defaultFileEntryTypeId, fileEntryTypeIds, overrideFileEntryTypes,
554                            serviceContext);
555            }
556    
557            public com.liferay.portlet.documentlibrary.model.DLFolder updateFolderAndFileEntryTypes(
558                    long folderId, long parentFolderId, java.lang.String name,
559                    java.lang.String description, long defaultFileEntryTypeId,
560                    java.util.List<java.lang.Long> fileEntryTypeIds,
561                    boolean overrideFileEntryTypes,
562                    com.liferay.portal.service.ServiceContext serviceContext)
563                    throws com.liferay.portal.kernel.exception.PortalException,
564                            com.liferay.portal.kernel.exception.SystemException {
565                    return _dlFolderLocalService.updateFolderAndFileEntryTypes(folderId,
566                            parentFolderId, name, description, defaultFileEntryTypeId,
567                            fileEntryTypeIds, overrideFileEntryTypes, serviceContext);
568            }
569    
570            public void updateLastPostDate(long folderId, java.util.Date lastPostDate)
571                    throws com.liferay.portal.kernel.exception.PortalException,
572                            com.liferay.portal.kernel.exception.SystemException {
573                    _dlFolderLocalService.updateLastPostDate(folderId, lastPostDate);
574            }
575    
576            public com.liferay.portlet.documentlibrary.model.DLFolder updateStatus(
577                    long userId, long folderId, int status,
578                    java.util.Map<java.lang.String, java.io.Serializable> workflowContext,
579                    com.liferay.portal.service.ServiceContext serviceContext)
580                    throws com.liferay.portal.kernel.exception.PortalException,
581                            com.liferay.portal.kernel.exception.SystemException {
582                    return _dlFolderLocalService.updateStatus(userId, folderId, status,
583                            workflowContext, serviceContext);
584            }
585    
586            /**
587             * @deprecated Renamed to {@link #getWrappedService}
588             */
589            public DLFolderLocalService getWrappedDLFolderLocalService() {
590                    return _dlFolderLocalService;
591            }
592    
593            /**
594             * @deprecated Renamed to {@link #setWrappedService}
595             */
596            public void setWrappedDLFolderLocalService(
597                    DLFolderLocalService dlFolderLocalService) {
598                    _dlFolderLocalService = dlFolderLocalService;
599            }
600    
601            public DLFolderLocalService getWrappedService() {
602                    return _dlFolderLocalService;
603            }
604    
605            public void setWrappedService(DLFolderLocalService dlFolderLocalService) {
606                    _dlFolderLocalService = dlFolderLocalService;
607            }
608    
609            private DLFolderLocalService _dlFolderLocalService;
610    }