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.bookmarks.service;
016    
017    import com.liferay.portal.service.ServiceWrapper;
018    
019    /**
020     * <p>
021     * This class is a wrapper for {@link BookmarksFolderService}.
022     * </p>
023     *
024     * @author    Brian Wing Shun Chan
025     * @see       BookmarksFolderService
026     * @generated
027     */
028    public class BookmarksFolderServiceWrapper implements BookmarksFolderService,
029            ServiceWrapper<BookmarksFolderService> {
030            public BookmarksFolderServiceWrapper(
031                    BookmarksFolderService bookmarksFolderService) {
032                    _bookmarksFolderService = bookmarksFolderService;
033            }
034    
035            /**
036            * Returns the Spring bean ID for this bean.
037            *
038            * @return the Spring bean ID for this bean
039            */
040            public java.lang.String getBeanIdentifier() {
041                    return _bookmarksFolderService.getBeanIdentifier();
042            }
043    
044            /**
045            * Sets the Spring bean ID for this bean.
046            *
047            * @param beanIdentifier the Spring bean ID for this bean
048            */
049            public void setBeanIdentifier(java.lang.String beanIdentifier) {
050                    _bookmarksFolderService.setBeanIdentifier(beanIdentifier);
051            }
052    
053            public com.liferay.portlet.bookmarks.model.BookmarksFolder addFolder(
054                    long parentFolderId, java.lang.String name,
055                    java.lang.String description,
056                    com.liferay.portal.service.ServiceContext serviceContext)
057                    throws com.liferay.portal.kernel.exception.PortalException,
058                            com.liferay.portal.kernel.exception.SystemException {
059                    return _bookmarksFolderService.addFolder(parentFolderId, name,
060                            description, serviceContext);
061            }
062    
063            public void deleteFolder(long folderId)
064                    throws com.liferay.portal.kernel.exception.PortalException,
065                            com.liferay.portal.kernel.exception.SystemException {
066                    _bookmarksFolderService.deleteFolder(folderId);
067            }
068    
069            public void deleteFolder(long folderId, boolean includeTrashedEntries)
070                    throws com.liferay.portal.kernel.exception.PortalException,
071                            com.liferay.portal.kernel.exception.SystemException {
072                    _bookmarksFolderService.deleteFolder(folderId, includeTrashedEntries);
073            }
074    
075            public com.liferay.portlet.bookmarks.model.BookmarksFolder getFolder(
076                    long folderId)
077                    throws com.liferay.portal.kernel.exception.PortalException,
078                            com.liferay.portal.kernel.exception.SystemException {
079                    return _bookmarksFolderService.getFolder(folderId);
080            }
081    
082            public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> getFolders(
083                    long groupId)
084                    throws com.liferay.portal.kernel.exception.SystemException {
085                    return _bookmarksFolderService.getFolders(groupId);
086            }
087    
088            public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> getFolders(
089                    long groupId, long parentFolderId)
090                    throws com.liferay.portal.kernel.exception.SystemException {
091                    return _bookmarksFolderService.getFolders(groupId, parentFolderId);
092            }
093    
094            public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> getFolders(
095                    long groupId, long parentFolderId, int start, int end)
096                    throws com.liferay.portal.kernel.exception.SystemException {
097                    return _bookmarksFolderService.getFolders(groupId, parentFolderId,
098                            start, end);
099            }
100    
101            public java.util.List<com.liferay.portlet.bookmarks.model.BookmarksFolder> getFolders(
102                    long groupId, long parentFolderId, int status, int start, int end)
103                    throws com.liferay.portal.kernel.exception.SystemException {
104                    return _bookmarksFolderService.getFolders(groupId, parentFolderId,
105                            status, start, end);
106            }
107    
108            public java.util.List<java.lang.Object> getFoldersAndEntries(long groupId,
109                    long folderId)
110                    throws com.liferay.portal.kernel.exception.SystemException {
111                    return _bookmarksFolderService.getFoldersAndEntries(groupId, folderId);
112            }
113    
114            public java.util.List<java.lang.Object> getFoldersAndEntries(long groupId,
115                    long folderId, int status)
116                    throws com.liferay.portal.kernel.exception.SystemException {
117                    return _bookmarksFolderService.getFoldersAndEntries(groupId, folderId,
118                            status);
119            }
120    
121            public java.util.List<java.lang.Object> getFoldersAndEntries(long groupId,
122                    long folderId, int status, int start, int end)
123                    throws com.liferay.portal.kernel.exception.SystemException {
124                    return _bookmarksFolderService.getFoldersAndEntries(groupId, folderId,
125                            status, start, end);
126            }
127    
128            public int getFoldersAndEntriesCount(long groupId, long folderId)
129                    throws com.liferay.portal.kernel.exception.SystemException {
130                    return _bookmarksFolderService.getFoldersAndEntriesCount(groupId,
131                            folderId);
132            }
133    
134            public int getFoldersAndEntriesCount(long groupId, long folderId, int status)
135                    throws com.liferay.portal.kernel.exception.SystemException {
136                    return _bookmarksFolderService.getFoldersAndEntriesCount(groupId,
137                            folderId, status);
138            }
139    
140            public int getFoldersCount(long groupId, long parentFolderId)
141                    throws com.liferay.portal.kernel.exception.SystemException {
142                    return _bookmarksFolderService.getFoldersCount(groupId, parentFolderId);
143            }
144    
145            public int getFoldersCount(long groupId, long parentFolderId, int status)
146                    throws com.liferay.portal.kernel.exception.SystemException {
147                    return _bookmarksFolderService.getFoldersCount(groupId, parentFolderId,
148                            status);
149            }
150    
151            public void getSubfolderIds(java.util.List<java.lang.Long> folderIds,
152                    long groupId, long folderId)
153                    throws com.liferay.portal.kernel.exception.SystemException {
154                    _bookmarksFolderService.getSubfolderIds(folderIds, groupId, folderId);
155            }
156    
157            public com.liferay.portlet.bookmarks.model.BookmarksFolder moveFolder(
158                    long folderId, long parentFolderId)
159                    throws com.liferay.portal.kernel.exception.PortalException,
160                            com.liferay.portal.kernel.exception.SystemException {
161                    return _bookmarksFolderService.moveFolder(folderId, parentFolderId);
162            }
163    
164            public com.liferay.portlet.bookmarks.model.BookmarksFolder moveFolderFromTrash(
165                    long folderId, long parentFolderId)
166                    throws com.liferay.portal.kernel.exception.PortalException,
167                            com.liferay.portal.kernel.exception.SystemException {
168                    return _bookmarksFolderService.moveFolderFromTrash(folderId,
169                            parentFolderId);
170            }
171    
172            public void moveFolderToTrash(long folderId)
173                    throws com.liferay.portal.kernel.exception.PortalException,
174                            com.liferay.portal.kernel.exception.SystemException {
175                    _bookmarksFolderService.moveFolderToTrash(folderId);
176            }
177    
178            public void restoreFolderFromTrash(long folderId)
179                    throws com.liferay.portal.kernel.exception.PortalException,
180                            com.liferay.portal.kernel.exception.SystemException {
181                    _bookmarksFolderService.restoreFolderFromTrash(folderId);
182            }
183    
184            public void subscribeFolder(long groupId, long folderId)
185                    throws com.liferay.portal.kernel.exception.PortalException,
186                            com.liferay.portal.kernel.exception.SystemException {
187                    _bookmarksFolderService.subscribeFolder(groupId, folderId);
188            }
189    
190            public void unsubscribeFolder(long groupId, long folderId)
191                    throws com.liferay.portal.kernel.exception.PortalException,
192                            com.liferay.portal.kernel.exception.SystemException {
193                    _bookmarksFolderService.unsubscribeFolder(groupId, folderId);
194            }
195    
196            public com.liferay.portlet.bookmarks.model.BookmarksFolder updateFolder(
197                    long folderId, long parentFolderId, java.lang.String name,
198                    java.lang.String description, boolean mergeWithParentFolder,
199                    com.liferay.portal.service.ServiceContext serviceContext)
200                    throws com.liferay.portal.kernel.exception.PortalException,
201                            com.liferay.portal.kernel.exception.SystemException {
202                    return _bookmarksFolderService.updateFolder(folderId, parentFolderId,
203                            name, description, mergeWithParentFolder, serviceContext);
204            }
205    
206            /**
207             * @deprecated Renamed to {@link #getWrappedService}
208             */
209            public BookmarksFolderService getWrappedBookmarksFolderService() {
210                    return _bookmarksFolderService;
211            }
212    
213            /**
214             * @deprecated Renamed to {@link #setWrappedService}
215             */
216            public void setWrappedBookmarksFolderService(
217                    BookmarksFolderService bookmarksFolderService) {
218                    _bookmarksFolderService = bookmarksFolderService;
219            }
220    
221            public BookmarksFolderService getWrappedService() {
222                    return _bookmarksFolderService;
223            }
224    
225            public void setWrappedService(BookmarksFolderService bookmarksFolderService) {
226                    _bookmarksFolderService = bookmarksFolderService;
227            }
228    
229            private BookmarksFolderService _bookmarksFolderService;
230    }