Liferay 6.2-ce-ga5

com.liferay.portlet.journal.service
Class JournalFolderServiceWrapper

java.lang.Object
  extended by com.liferay.portlet.journal.service.JournalFolderServiceWrapper
All Implemented Interfaces:
BaseService, ServiceWrapper<JournalFolderService>, JournalFolderService

@ProviderType
public class JournalFolderServiceWrapper
extends Object
implements JournalFolderService, ServiceWrapper<JournalFolderService>

Provides a wrapper for JournalFolderService.

See Also:
JournalFolderService

Constructor Summary
JournalFolderServiceWrapper(JournalFolderService journalFolderService)
           
 
Method Summary
 JournalFolder addFolder(long groupId, long parentFolderId, String name, String description, ServiceContext serviceContext)
           
 void deleteFolder(long folderId)
           
 void deleteFolder(long folderId, boolean includeTrashedEntries)
           
 JournalFolder fetchFolder(long folderId)
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 JournalFolder getFolder(long folderId)
           
 List<Long> getFolderIds(long groupId, long folderId)
           
 List<JournalFolder> getFolders(long groupId)
           
 List<JournalFolder> getFolders(long groupId, long parentFolderId)
           
 List<JournalFolder> getFolders(long groupId, long parentFolderId, int status)
           
 List<JournalFolder> getFolders(long groupId, long parentFolderId, int start, int end)
           
 List<JournalFolder> getFolders(long groupId, long parentFolderId, int status, int start, int end)
           
 List<Object> getFoldersAndArticles(long groupId, long folderId, int status, int start, int end, OrderByComparator obc)
           
 List<Object> getFoldersAndArticles(long groupId, long folderId, int start, int end, OrderByComparator obc)
           
 List<Object> getFoldersAndArticles(long groupId, long userId, long folderId, int status, int start, int end, OrderByComparator obc)
           
 int getFoldersAndArticlesCount(long groupId, List<Long> folderIds, int status)
           
 int getFoldersAndArticlesCount(long groupId, long folderId)
           
 int getFoldersAndArticlesCount(long groupId, long folderId, int status)
           
 int getFoldersAndArticlesCount(long groupId, long userId, long folderId, int status)
           
 int getFoldersCount(long groupId, long parentFolderId)
           
 int getFoldersCount(long groupId, long parentFolderId, int status)
           
 void getSubfolderIds(List<Long> folderIds, long groupId, long folderId)
          Deprecated. As of 7.0.0, replaced by getSubfolderIds(List, long, long, boolean)
 void getSubfolderIds(List<Long> folderIds, long groupId, long folderId, boolean recurse)
           
 List<Long> getSubfolderIds(long groupId, long folderId, boolean recurse)
           
 JournalFolderService getWrappedJournalFolderService()
          Deprecated. As of 6.1.0, replaced by getWrappedService()
 JournalFolderService getWrappedService()
           
 JournalFolder moveFolder(long folderId, long parentFolderId, ServiceContext serviceContext)
           
 JournalFolder moveFolderFromTrash(long folderId, long parentFolderId, ServiceContext serviceContext)
           
 JournalFolder moveFolderToTrash(long folderId)
           
 void restoreFolderFromTrash(long folderId)
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setWrappedJournalFolderService(JournalFolderService journalFolderService)
          Deprecated. As of 6.1.0, replaced by setWrappedService(com.liferay.portlet.journal.service.JournalFolderService)
 void setWrappedService(JournalFolderService journalFolderService)
           
 JournalFolder updateFolder(long folderId, long parentFolderId, String name, String description, boolean mergeWithParentFolder, ServiceContext serviceContext)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JournalFolderServiceWrapper

public JournalFolderServiceWrapper(JournalFolderService journalFolderService)
Method Detail

getBeanIdentifier

public String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Specified by:
getBeanIdentifier in interface JournalFolderService
Returns:
the Spring bean ID for this bean

setBeanIdentifier

public void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Specified by:
setBeanIdentifier in interface JournalFolderService
Parameters:
beanIdentifier - the Spring bean ID for this bean

addFolder

public JournalFolder addFolder(long groupId,
                               long parentFolderId,
                               String name,
                               String description,
                               ServiceContext serviceContext)
                        throws PortalException,
                               SystemException
Specified by:
addFolder in interface JournalFolderService
Throws:
PortalException
SystemException

deleteFolder

public void deleteFolder(long folderId)
                  throws PortalException,
                         SystemException
Specified by:
deleteFolder in interface JournalFolderService
Throws:
PortalException
SystemException

deleteFolder

public void deleteFolder(long folderId,
                         boolean includeTrashedEntries)
                  throws PortalException,
                         SystemException
Specified by:
deleteFolder in interface JournalFolderService
Throws:
PortalException
SystemException

fetchFolder

public JournalFolder fetchFolder(long folderId)
                          throws PortalException,
                                 SystemException
Specified by:
fetchFolder in interface JournalFolderService
Throws:
PortalException
SystemException

getFolder

public JournalFolder getFolder(long folderId)
                        throws PortalException,
                               SystemException
Specified by:
getFolder in interface JournalFolderService
Throws:
PortalException
SystemException

getFolderIds

public List<Long> getFolderIds(long groupId,
                               long folderId)
                        throws PortalException,
                               SystemException
Specified by:
getFolderIds in interface JournalFolderService
Throws:
PortalException
SystemException

getFolders

public List<JournalFolder> getFolders(long groupId)
                               throws SystemException
Specified by:
getFolders in interface JournalFolderService
Throws:
SystemException

getFolders

public List<JournalFolder> getFolders(long groupId,
                                      long parentFolderId)
                               throws SystemException
Specified by:
getFolders in interface JournalFolderService
Throws:
SystemException

getFolders

public List<JournalFolder> getFolders(long groupId,
                                      long parentFolderId,
                                      int status)
                               throws SystemException
Specified by:
getFolders in interface JournalFolderService
Throws:
SystemException

getFolders

public List<JournalFolder> getFolders(long groupId,
                                      long parentFolderId,
                                      int start,
                                      int end)
                               throws SystemException
Specified by:
getFolders in interface JournalFolderService
Throws:
SystemException

getFolders

public List<JournalFolder> getFolders(long groupId,
                                      long parentFolderId,
                                      int status,
                                      int start,
                                      int end)
                               throws SystemException
Specified by:
getFolders in interface JournalFolderService
Throws:
SystemException

getFoldersAndArticles

public List<Object> getFoldersAndArticles(long groupId,
                                          long folderId,
                                          int status,
                                          int start,
                                          int end,
                                          OrderByComparator obc)
                                   throws SystemException
Specified by:
getFoldersAndArticles in interface JournalFolderService
Throws:
SystemException

getFoldersAndArticles

public List<Object> getFoldersAndArticles(long groupId,
                                          long folderId,
                                          int start,
                                          int end,
                                          OrderByComparator obc)
                                   throws SystemException
Specified by:
getFoldersAndArticles in interface JournalFolderService
Throws:
SystemException

getFoldersAndArticles

public List<Object> getFoldersAndArticles(long groupId,
                                          long userId,
                                          long folderId,
                                          int status,
                                          int start,
                                          int end,
                                          OrderByComparator obc)
                                   throws SystemException
Specified by:
getFoldersAndArticles in interface JournalFolderService
Throws:
SystemException

getFoldersAndArticlesCount

public int getFoldersAndArticlesCount(long groupId,
                                      List<Long> folderIds,
                                      int status)
                               throws SystemException
Specified by:
getFoldersAndArticlesCount in interface JournalFolderService
Throws:
SystemException

getFoldersAndArticlesCount

public int getFoldersAndArticlesCount(long groupId,
                                      long folderId)
                               throws SystemException
Specified by:
getFoldersAndArticlesCount in interface JournalFolderService
Throws:
SystemException

getFoldersAndArticlesCount

public int getFoldersAndArticlesCount(long groupId,
                                      long folderId,
                                      int status)
                               throws SystemException
Specified by:
getFoldersAndArticlesCount in interface JournalFolderService
Throws:
SystemException

getFoldersAndArticlesCount

public int getFoldersAndArticlesCount(long groupId,
                                      long userId,
                                      long folderId,
                                      int status)
                               throws SystemException
Specified by:
getFoldersAndArticlesCount in interface JournalFolderService
Throws:
SystemException

getFoldersCount

public int getFoldersCount(long groupId,
                           long parentFolderId)
                    throws SystemException
Specified by:
getFoldersCount in interface JournalFolderService
Throws:
SystemException

getFoldersCount

public int getFoldersCount(long groupId,
                           long parentFolderId,
                           int status)
                    throws SystemException
Specified by:
getFoldersCount in interface JournalFolderService
Throws:
SystemException

getSubfolderIds

public void getSubfolderIds(List<Long> folderIds,
                            long groupId,
                            long folderId)
                     throws SystemException
Deprecated. As of 7.0.0, replaced by getSubfolderIds(List, long, long, boolean)

Specified by:
getSubfolderIds in interface JournalFolderService
Throws:
SystemException

getSubfolderIds

public void getSubfolderIds(List<Long> folderIds,
                            long groupId,
                            long folderId,
                            boolean recurse)
                     throws SystemException
Specified by:
getSubfolderIds in interface JournalFolderService
Throws:
SystemException

getSubfolderIds

public List<Long> getSubfolderIds(long groupId,
                                  long folderId,
                                  boolean recurse)
                           throws SystemException
Specified by:
getSubfolderIds in interface JournalFolderService
Throws:
SystemException

moveFolder

public JournalFolder moveFolder(long folderId,
                                long parentFolderId,
                                ServiceContext serviceContext)
                         throws PortalException,
                                SystemException
Specified by:
moveFolder in interface JournalFolderService
Throws:
PortalException
SystemException

moveFolderFromTrash

public JournalFolder moveFolderFromTrash(long folderId,
                                         long parentFolderId,
                                         ServiceContext serviceContext)
                                  throws PortalException,
                                         SystemException
Specified by:
moveFolderFromTrash in interface JournalFolderService
Throws:
PortalException
SystemException

moveFolderToTrash

public JournalFolder moveFolderToTrash(long folderId)
                                throws PortalException,
                                       SystemException
Specified by:
moveFolderToTrash in interface JournalFolderService
Throws:
PortalException
SystemException

restoreFolderFromTrash

public void restoreFolderFromTrash(long folderId)
                            throws PortalException,
                                   SystemException
Specified by:
restoreFolderFromTrash in interface JournalFolderService
Throws:
PortalException
SystemException

updateFolder

public JournalFolder updateFolder(long folderId,
                                  long parentFolderId,
                                  String name,
                                  String description,
                                  boolean mergeWithParentFolder,
                                  ServiceContext serviceContext)
                           throws PortalException,
                                  SystemException
Specified by:
updateFolder in interface JournalFolderService
Throws:
PortalException
SystemException

getWrappedJournalFolderService

public JournalFolderService getWrappedJournalFolderService()
Deprecated. As of 6.1.0, replaced by getWrappedService()


setWrappedJournalFolderService

public void setWrappedJournalFolderService(JournalFolderService journalFolderService)
Deprecated. As of 6.1.0, replaced by setWrappedService(com.liferay.portlet.journal.service.JournalFolderService)


getWrappedService

public JournalFolderService getWrappedService()
Specified by:
getWrappedService in interface ServiceWrapper<JournalFolderService>

setWrappedService

public void setWrappedService(JournalFolderService journalFolderService)
Specified by:
setWrappedService in interface ServiceWrapper<JournalFolderService>

Liferay 6.2-ce-ga5