Class DLAppServiceImpl

Object
com.liferay.portal.kernel.service.BaseServiceImpl
com.liferay.portlet.documentlibrary.service.base.DLAppServiceBaseImpl
com.liferay.portlet.documentlibrary.service.impl.DLAppServiceImpl
All Implemented Interfaces:
com.liferay.document.library.kernel.service.DLAppService, com.liferay.portal.kernel.module.framework.service.IdentifiableOSGiService, com.liferay.portal.kernel.service.BaseService

public class DLAppServiceImpl extends DLAppServiceBaseImpl
Provides the remote service for accessing, adding, checking in/out, deleting, locking/unlocking, moving, subscription handling of, trash handling of, updating, and verifying document library file entries and folders. Its methods include permission checks. All portlets should interact with the document library through this class or through DLAppLocalService, rather than through the individual document library service classes.

This class provides a unified interface to all Liferay and third party repositories. While the method signatures are universal for all repositories. Additional implementation-specific parameters may be specified in the serviceContext.

The repositoryId parameter used by most of the methods is the primary key of the specific repository. If the repository is a default Liferay repository, the repositoryId is the groupId or scopeGroupId. Otherwise, the repositoryId will correspond to values obtained from RepositoryServiceUtil.

Author:
Alexander Chow, Mika Koivisto, Shuyang Zhou
See Also:
  • Field Summary

    Fields inherited from class com.liferay.portlet.documentlibrary.service.base.DLAppServiceBaseImpl

    counterLocalService, dlAppLocalService, dlAppService

    Fields inherited from class com.liferay.portal.kernel.service.BaseServiceImpl

    ANONYMOUS_NAMES, JRUN_ANONYMOUS, ORACLE_ANONYMOUS, SUN_ANONYMOUS, WEBLOGIC_ANONYMOUS
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    com.liferay.portal.kernel.repository.model.FileEntry
    addFileEntry(long repositoryId, long folderId, String sourceFileName, String mimeType, String title, String description, String changeLog, File file, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    com.liferay.portal.kernel.repository.model.FileEntry
    addFileEntry(String externalReferenceCode, long repositoryId, long folderId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, byte[] bytes, Date displayDate, Date expirationDate, Date reviewDate, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Adds a file entry and associated metadata.
    com.liferay.portal.kernel.repository.model.FileEntry
    addFileEntry(String externalReferenceCode, long repositoryId, long folderId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, File file, Date displayDate, Date expirationDate, Date reviewDate, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Adds a file entry and associated metadata.
    com.liferay.portal.kernel.repository.model.FileEntry
    addFileEntry(String externalReferenceCode, long repositoryId, long folderId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, InputStream inputStream, long size, Date displayDate, Date expirationDate, Date reviewDate, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Adds a file entry and associated metadata.
    com.liferay.portal.kernel.repository.model.FileShortcut
    addFileShortcut(String externalReferenceCode, long repositoryId, long folderId, long toFileEntryId, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Adds a file shortcut to the existing file entry.
    com.liferay.portal.kernel.repository.model.Folder
    addFolder(String externalReferenceCode, long repositoryId, long parentFolderId, String name, String description, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Adds a folder.
    com.liferay.portal.kernel.repository.model.FileEntry
    addTempFileEntry(long groupId, long folderId, String folderName, String fileName, File file, String mimeType)
    Adds a temporary file entry.
    com.liferay.portal.kernel.repository.model.FileEntry
    addTempFileEntry(long groupId, long folderId, String folderName, String fileName, InputStream inputStream, String mimeType)
    Adds a temporary file entry.
    void
    cancelCheckOut(long fileEntryId)
    Cancels the check out of the file entry.
    void
    checkInFileEntry(long fileEntryId, com.liferay.document.library.kernel.model.DLVersionNumberIncrease dlVersionNumberIncrease, String changeLog, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Checks in the file entry.
    void
    checkInFileEntry(long fileEntryId, String lockUuid, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Checks in the file entry using the lock's UUID.
    void
    checkOutFileEntry(long fileEntryId, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Check out a file entry.
    com.liferay.portal.kernel.repository.model.FileEntry
    checkOutFileEntry(long fileEntryId, String owner, long expirationTime, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Checks out the file entry.
    com.liferay.portal.kernel.repository.model.FileEntry
    copyFileEntry(long fileEntryId, long destinationFolderId, long destinationRepositoryId, long fileEntryTypeId, long[] groupIds, com.liferay.portal.kernel.service.ServiceContext serviceContext)
     
    protected com.liferay.portal.kernel.repository.model.FileEntry
    copyFileEntry(com.liferay.portal.kernel.repository.Repository toRepository, com.liferay.portal.kernel.repository.model.FileEntry fileEntry, long targetFolderId, long fileEntryTypeId, long[] groupIds, com.liferay.portal.kernel.service.ServiceContext serviceContext)
     
    protected com.liferay.portal.kernel.repository.model.FileEntry
    copyFileEntry(com.liferay.portal.kernel.repository.Repository toRepository, com.liferay.portal.kernel.repository.model.FileEntry fileEntry, long targetFolderId, com.liferay.portal.kernel.service.ServiceContext serviceContext)
     
    com.liferay.portal.kernel.repository.model.FileShortcut
    copyFileShortcut(long fileShortcutId, long destinationFolderId, long destinationRepositoryId, com.liferay.portal.kernel.service.ServiceContext serviceContext)
     
    com.liferay.portal.kernel.repository.model.Folder
    copyFolder(long sourceRepositoryId, long sourceFolderId, long destinationRepositoryId, long destinationParentFolderId, Map<Long,Long> fileEntryTypeIds, long[] groupIds, com.liferay.portal.kernel.service.ServiceContext serviceContext)
     
    com.liferay.portal.kernel.repository.model.Folder
    copyFolder(long repositoryId, long sourceFolderId, long parentFolderId, String name, String description, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Performs a deep copy of the folder.
    protected com.liferay.portal.kernel.repository.model.Folder
    copyFolder(long sourceFolderId, long parentFolderId, com.liferay.portal.kernel.repository.Repository fromRepository, com.liferay.portal.kernel.repository.Repository toRepository, Map<Long,Long> fileEntryTypeIds, long[] groupIds, com.liferay.portal.kernel.service.ServiceContext serviceContext)
     
    protected void
    copyFolder(com.liferay.portal.kernel.repository.Repository repository, com.liferay.portal.kernel.repository.model.Folder sourceFolder, com.liferay.portal.kernel.repository.model.Folder targetFolder, com.liferay.portal.kernel.service.ServiceContext serviceContext)
     
    protected void
    copyFolderDependencies(com.liferay.portal.kernel.repository.model.Folder sourceFolder, com.liferay.portal.kernel.repository.model.Folder targetFolder, com.liferay.portal.kernel.repository.Repository fromRepository, com.liferay.portal.kernel.repository.Repository toRepository, Map<Long,Long> fileEntryTypeIds, long[] groupIds, com.liferay.portal.kernel.service.ServiceContext serviceContext)
     
    void
    deleteFileEntry(long fileEntryId)
    Deletes the file entry with the primary key.
    protected void
    deleteFileEntry(long oldFileEntryId, long newFileEntryId, com.liferay.portal.kernel.repository.Repository fromRepository, com.liferay.portal.kernel.repository.Repository toRepository)
     
    void
    deleteFileEntryByExternalReferenceCode(String externalReferenceCode, long groupId)
     
    void
    deleteFileEntryByTitle(long repositoryId, long folderId, String title)
    Deletes the file entry with the title in the folder.
    void
    deleteFileShortcut(long fileShortcutId)
    Deletes the file shortcut with the primary key.
    void
    deleteFileShortcutByExternalReferenceCode(String externalReferenceCode, long groupId)
     
    void
    deleteFileVersion(long fileVersionId)
    Deletes the file version.
    void
    deleteFileVersion(long fileEntryId, String version)
    Deletes the file version.
    void
    deleteFolder(long folderId)
    Deletes the folder with the primary key and all of its subfolders and file entries.
    void
    deleteFolder(long repositoryId, long parentFolderId, String name)
    Deletes the folder with the name in the parent folder and all of its subfolders and file entries.
    void
    deleteTempFileEntry(long groupId, long folderId, String folderName, String fileName)
    Deletes the temporary file entry.
    protected com.liferay.portal.kernel.repository.model.FileEntry
    fetchFileEntryByUuidAndRepositoryId(String uuid, long repositoryId)
     
    List<com.liferay.portal.kernel.repository.model.FileEntry>
    getFileEntries(long repositoryId, long folderId)
    Returns all the file entries in the folder.
    List<com.liferay.portal.kernel.repository.model.FileEntry>
    getFileEntries(long repositoryId, long folderId, int start, int end)
    Returns a name-ordered range of all the file entries in the folder.
    List<com.liferay.portal.kernel.repository.model.FileEntry>
    getFileEntries(long repositoryId, long folderId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.FileEntry> orderByComparator)
    Returns an ordered range of all the file entries in the folder.
    List<com.liferay.portal.kernel.repository.model.FileEntry>
    getFileEntries(long repositoryId, long folderId, long fileEntryTypeId)
    Returns the file entries with the file entry type in the folder.
    List<com.liferay.portal.kernel.repository.model.FileEntry>
    getFileEntries(long repositoryId, long folderId, long fileEntryTypeId, int start, int end)
    Returns a name-ordered range of all the file entries with the file entry type in the folder.
    List<com.liferay.portal.kernel.repository.model.FileEntry>
    getFileEntries(long repositoryId, long folderId, long fileEntryTypeId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.FileEntry> orderByComparator)
    Returns an ordered range of all the file entries with the file entry type in the folder.
    List<com.liferay.portal.kernel.repository.model.FileEntry>
    getFileEntries(long repositoryId, long folderId, String[] mimeTypes)
     
    List<com.liferay.portal.kernel.repository.model.FileEntry>
    getFileEntries(long repositoryId, long folderId, String[] mimeTypes, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.FileEntry> orderByComparator)
     
    getFileEntriesAndFileShortcuts(long repositoryId, long folderId, int status, int start, int end)
    Returns a range of all the file entries and shortcuts in the folder.
    int
    getFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status)
    Returns the number of file entries and shortcuts in the folder.
    int
    getFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status, String[] mimeTypes)
    Returns the number of file entries and shortcuts in the folder.
    int
    getFileEntriesCount(long repositoryId, long folderId)
    Returns the number of file entries in the folder.
    int
    getFileEntriesCount(long repositoryId, long folderId, long fileEntryTypeId)
    Returns the number of file entries with the file entry type in the folder.
    int
    getFileEntriesCount(long repositoryId, long folderId, String[] mimeTypes)
     
    com.liferay.portal.kernel.repository.model.FileEntry
    getFileEntry(long fileEntryId)
    Returns the file entry with the primary key.
    com.liferay.portal.kernel.repository.model.FileEntry
    getFileEntry(long groupId, long folderId, String title)
    Returns the file entry with the title in the folder.
    com.liferay.portal.kernel.repository.model.FileEntry
    getFileEntryByExternalReferenceCode(String externalReferenceCode, long groupId)
    Returns the file entry with the external reference code.
    com.liferay.portal.kernel.repository.model.FileEntry
    getFileEntryByFileName(long groupId, long folderId, String fileName)
    Returns the file entry with the file name in the folder.
    com.liferay.portal.kernel.repository.model.FileEntry
    getFileEntryByUuidAndGroupId(String uuid, long groupId)
    Returns the file entry with the UUID and group.
    com.liferay.portal.kernel.repository.model.FileShortcut
    getFileShortcut(long fileShortcutId)
    Returns the file shortcut with the primary key.
    com.liferay.portal.kernel.repository.model.FileShortcut
    getFileShortcutByExternalReferenceCode(String externalReferenceCode, long groupId)
     
    com.liferay.portal.kernel.repository.model.FileVersion
    getFileVersion(long fileVersionId)
    Returns the file version with the primary key.
    com.liferay.portal.kernel.repository.model.Folder
    getFolder(long folderId)
    Returns the folder with the primary key.
    com.liferay.portal.kernel.repository.model.Folder
    getFolder(long repositoryId, long parentFolderId, String name)
    Returns the folder with the name in the parent folder.
    com.liferay.portal.kernel.repository.model.Folder
    getFolderByExternalReferenceCode(String externalReferenceCode, long groupId)
     
    protected com.liferay.portal.kernel.repository.Repository
    getFolderRepository(long folderId, long groupId)
     
    List<com.liferay.portal.kernel.repository.model.Folder>
    getFolders(long repositoryId, long parentFolderId)
    Returns all immediate subfolders of the parent folder.
    List<com.liferay.portal.kernel.repository.model.Folder>
    getFolders(long repositoryId, long parentFolderId, boolean includeMountFolders)
    Returns all immediate subfolders of the parent folder, optionally including mount folders for third-party repositories.
    List<com.liferay.portal.kernel.repository.model.Folder>
    getFolders(long repositoryId, long parentFolderId, boolean includeMountFolders, int start, int end)
    Returns a name-ordered range of all the immediate subfolders of the parent folder, optionally including mount folders for third-party repositories.
    List<com.liferay.portal.kernel.repository.model.Folder>
    getFolders(long repositoryId, long parentFolderId, boolean includeMountFolders, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.Folder> orderByComparator)
    Returns an ordered range of all the immediate subfolders of the parent folder.
    List<com.liferay.portal.kernel.repository.model.Folder>
    getFolders(long repositoryId, long parentFolderId, int status, boolean includeMountFolders, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.Folder> orderByComparator)
    Returns an ordered range of all the immediate subfolders of the parent folder.
    List<com.liferay.portal.kernel.repository.model.Folder>
    getFolders(long repositoryId, long parentFolderId, int start, int end)
    Returns a name-ordered range of all the immediate subfolders of the parent folder.
    List<com.liferay.portal.kernel.repository.model.Folder>
    getFolders(long repositoryId, long parentFolderId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.Folder> orderByComparator)
    Returns an ordered range of all the immediate subfolders of the parent folder.
    getFoldersAndFileEntriesAndFileShortcuts(long repositoryId, long folderId, int status, boolean includeMountFolders, int start, int end)
    Returns a name-ordered range of all the immediate subfolders, file entries, and file shortcuts in the parent folder.
    getFoldersAndFileEntriesAndFileShortcuts(long repositoryId, long folderId, int status, boolean includeMountFolders, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<?> orderByComparator)
    Returns an ordered range of all the immediate subfolders, file entries, and file shortcuts in the parent folder.
    getFoldersAndFileEntriesAndFileShortcuts(long repositoryId, long folderId, int status, String[] mimeTypes, boolean includeMountFolders, boolean includeOwner, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<?> orderByComparator)
     
    getFoldersAndFileEntriesAndFileShortcuts(long repositoryId, long folderId, int status, String[] mimeTypes, boolean includeMountFolders, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<?> orderByComparator)
     
    int
    getFoldersAndFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status, boolean includeMountFolders)
    Returns the number of immediate subfolders, file entries, and file shortcuts in the parent folder.
    int
    getFoldersAndFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status, String[] mimeTypes, boolean includeMountFolders)
     
    int
    getFoldersAndFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status, String[] mimeTypes, boolean includeMountFolders, boolean includeOwner)
     
    int
    getFoldersCount(long repositoryId, long parentFolderId)
    Returns the number of immediate subfolders of the parent folder.
    int
    getFoldersCount(long repositoryId, long parentFolderId, boolean includeMountFolders)
    Returns the number of immediate subfolders of the parent folder, optionally including mount folders for third-party repositories.
    int
    getFoldersCount(long repositoryId, long parentFolderId, int status, boolean includeMountFolders)
    Returns the number of immediate subfolders of the parent folder, optionally including mount folders for third-party repositories.
    int
    getFoldersFileEntriesCount(long repositoryId, List<Long> folderIds, int status)
    Returns the number of immediate subfolders and file entries across the folders.
    List<com.liferay.portal.kernel.repository.model.FileEntry>
    getGroupFileEntries(long groupId, long userId, int start, int end)
    Returns an ordered range of all the file entries in the group starting at the repository default parent folder that are stored within the Liferay repository.
    List<com.liferay.portal.kernel.repository.model.FileEntry>
    getGroupFileEntries(long groupId, long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.FileEntry> orderByComparator)
    Returns an ordered range of all the file entries in the group that are stored within the Liferay repository.
    List<com.liferay.portal.kernel.repository.model.FileEntry>
    getGroupFileEntries(long groupId, long userId, long rootFolderId, int start, int end)
    Returns an ordered range of all the file entries in the group starting at the root folder that are stored within the Liferay repository.
    List<com.liferay.portal.kernel.repository.model.FileEntry>
    getGroupFileEntries(long groupId, long userId, long rootFolderId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.FileEntry> orderByComparator)
    Returns an ordered range of all the file entries in the group starting at the root folder that are stored within the Liferay repository.
    List<com.liferay.portal.kernel.repository.model.FileEntry>
    getGroupFileEntries(long groupId, long userId, long rootFolderId, String[] mimeTypes, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.FileEntry> orderByComparator)
     
    int
    getGroupFileEntriesCount(long groupId, long userId)
    Returns the number of file entries in a group starting at the repository default parent folder that are stored within the Liferay repository.
    int
    getGroupFileEntriesCount(long groupId, long userId, long rootFolderId)
    Returns the number of file entries in a group starting at the root folder that are stored within the Liferay repository.
    int
    getGroupFileEntriesCount(long groupId, long userId, long rootFolderId, String[] mimeTypes, int status)
     
    List<com.liferay.portal.kernel.repository.model.FileShortcut>
    getGroupFileShortcuts(long groupId)
     
    List<com.liferay.portal.kernel.repository.model.Folder>
    getMountFolders(long repositoryId, long parentFolderId)
    Returns all immediate subfolders of the parent folder that are used for mounting third-party repositories.
    List<com.liferay.portal.kernel.repository.model.Folder>
    getMountFolders(long repositoryId, long parentFolderId, int start, int end)
    Returns a name-ordered range of all the immediate subfolders of the parent folder that are used for mounting third-party repositories.
    List<com.liferay.portal.kernel.repository.model.Folder>
    getMountFolders(long repositoryId, long parentFolderId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.Folder> orderByComparator)
    Returns an ordered range of all the immediate subfolders of the parent folder that are used for mounting third-party repositories.
    int
    getMountFoldersCount(long repositoryId, long parentFolderId)
    Returns the number of immediate subfolders of the parent folder that are used for mounting third-party repositories.
    protected com.liferay.portal.kernel.repository.Repository
    getRepository(long repositoryId)
     
    getSubfolderIds(long repositoryId, long folderId)
    Returns all the descendant folders of the folder with the primary key.
    getSubfolderIds(long repositoryId, long folderId, boolean recurse)
    Returns descendant folders of the folder with the primary key, optionally limiting to one level deep.
    void
    getSubfolderIds(long repositoryId, List<Long> folderIds, long folderId)
     
    getTempFileNames(long groupId, long folderId, String folderName)
    Returns all the temporary file entry names.
    com.liferay.portal.kernel.lock.Lock
    lockFolder(long repositoryId, long folderId)
    Locks the folder.
    com.liferay.portal.kernel.lock.Lock
    lockFolder(long repositoryId, long folderId, String owner, boolean inheritable, long expirationTime)
    Locks the folder.
    protected com.liferay.portal.kernel.repository.model.FileEntry
    moveFileEntry(long fileEntryId, long newFolderId, com.liferay.portal.kernel.repository.Repository fromRepository, com.liferay.portal.kernel.repository.Repository toRepository, com.liferay.portal.kernel.service.ServiceContext serviceContext)
     
    com.liferay.portal.kernel.repository.model.FileEntry
    moveFileEntry(long fileEntryId, long newFolderId, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Moves the file entry to the new folder.
    protected com.liferay.portal.kernel.repository.model.Folder
    moveFolder(long folderId, long parentFolderId, com.liferay.portal.kernel.repository.Repository fromRepository, com.liferay.portal.kernel.repository.Repository toRepository, com.liferay.portal.kernel.service.ServiceContext serviceContext)
     
    com.liferay.portal.kernel.repository.model.Folder
    moveFolder(long folderId, long parentFolderId, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Moves the folder to the new parent folder with the primary key.
    com.liferay.portal.kernel.lock.Lock
    refreshFileEntryLock(String lockUuid, long companyId, long expirationTime)
    Refreshes the lock for the file entry.
    com.liferay.portal.kernel.lock.Lock
    refreshFolderLock(String lockUuid, long companyId, long expirationTime)
    Refreshes the lock for the folder.
    void
    revertFileEntry(long fileEntryId, String version, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Reverts the file entry to a previous version.
    com.liferay.portal.kernel.search.Hits
    search(long repositoryId, long creatorUserId, int status, int start, int end)
     
    com.liferay.portal.kernel.search.Hits
    search(long repositoryId, long creatorUserId, long folderId, String[] mimeTypes, int status, int start, int end)
     
    com.liferay.portal.kernel.search.Hits
    search(long repositoryId, com.liferay.portal.kernel.search.SearchContext searchContext)
     
    com.liferay.portal.kernel.search.Hits
    search(long repositoryId, com.liferay.portal.kernel.search.SearchContext searchContext, com.liferay.portal.kernel.search.Query query)
     
    void
    subscribeFileEntry(long groupId, long fileEntryId)
     
    void
    subscribeFileEntryType(long groupId, long fileEntryTypeId)
    Subscribe the user to changes in documents of the file entry type.
    void
    subscribeFolder(long groupId, long folderId)
    Subscribe the user to document changes in the folder.
    void
    unlockFolder(long repositoryId, long folderId, String lockUuid)
    Unlocks the folder.
    void
    unlockFolder(long repositoryId, long parentFolderId, String name, String lockUuid)
    Unlocks the folder.
    void
    unsubscribeFileEntry(long groupId, long fileEntryId)
     
    void
    unsubscribeFileEntryType(long groupId, long fileEntryTypeId)
    Unsubscribe the user from changes in documents of the file entry type.
    void
    unsubscribeFolder(long groupId, long folderId)
    Unsubscribe the user from document changes in the folder.
    com.liferay.portal.kernel.repository.model.FileEntry
    updateFileEntry(long fileEntryId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, com.liferay.document.library.kernel.model.DLVersionNumberIncrease dlVersionNumberIncrease, byte[] bytes, Date displayDate, Date expirationDate, Date reviewDate, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Updates a file entry and associated metadata based on a byte array object.
    com.liferay.portal.kernel.repository.model.FileEntry
    updateFileEntry(long fileEntryId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, com.liferay.document.library.kernel.model.DLVersionNumberIncrease dlVersionNumberIncrease, File file, Date displayDate, Date expirationDate, Date reviewDate, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Updates a file entry and associated metadata based on a File object.
    com.liferay.portal.kernel.repository.model.FileEntry
    updateFileEntry(long fileEntryId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, com.liferay.document.library.kernel.model.DLVersionNumberIncrease dlVersionNumberIncrease, InputStream inputStream, long size, Date displayDate, Date expirationDate, Date reviewDate, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Updates a file entry and associated metadata based on an InputStream object.
    com.liferay.portal.kernel.repository.model.FileEntry
    updateFileEntryAndCheckIn(long fileEntryId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, com.liferay.document.library.kernel.model.DLVersionNumberIncrease dlVersionNumberIncrease, File file, Date displayDate, Date expirationDate, Date reviewDate, com.liferay.portal.kernel.service.ServiceContext serviceContext)
     
    com.liferay.portal.kernel.repository.model.FileEntry
    updateFileEntryAndCheckIn(long fileEntryId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, com.liferay.document.library.kernel.model.DLVersionNumberIncrease dlVersionNumberIncrease, InputStream inputStream, long size, Date displayDate, Date expirationDate, Date reviewDate, com.liferay.portal.kernel.service.ServiceContext serviceContext)
     
    com.liferay.portal.kernel.repository.model.FileShortcut
    updateFileShortcut(long fileShortcutId, long folderId, long toFileEntryId, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Updates a file shortcut to the existing file entry.
    com.liferay.portal.kernel.repository.model.Folder
    updateFolder(long folderId, String name, String description, com.liferay.portal.kernel.service.ServiceContext serviceContext)
    Updates the folder.
    boolean
    verifyFileEntryCheckOut(long repositoryId, long fileEntryId, String lockUuid)
    Returns true if the file entry is checked out.
    boolean
    verifyFileEntryLock(long repositoryId, long fileEntryId, String lockUuid)
     
    boolean
    verifyInheritableLock(long repositoryId, long folderId, String lockUuid)
    Returns true if the inheritable lock exists.

    Methods inherited from class com.liferay.portal.kernel.service.BaseServiceImpl

    getClassLoader, getGuestOrUser, getGuestOrUserId, getPermissionChecker, getUser, getUserId

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • DLAppServiceImpl

      public DLAppServiceImpl()
  • Method Details

    • addFileEntry

      @Deprecated public com.liferay.portal.kernel.repository.model.FileEntry addFileEntry(long repositoryId, long folderId, String sourceFileName, String mimeType, String title, String description, String changeLog, File file, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Adds a file entry and associated metadata. It is created based on a File object.

      This method takes two file names, the sourceFileName and the title. The sourceFileName corresponds to the name of the actual file being uploaded. The title corresponds to a name the client wishes to assign this file after it has been uploaded to the portal. If it is null, the sourceFileName will be used.

      Parameters:
      repositoryId - the primary key of the repository
      folderId - the primary key of the file entry's parent folder
      sourceFileName - the original file's name
      mimeType - the file's MIME type
      title - the name to be assigned to the file (optionally null )
      description - the file's description
      changeLog - the file's version change log
      file - the file's data (optionally null)
      serviceContext - the service context to be applied. Can set the asset category IDs, asset tag names, and expando bridge attributes for the file entry. In a Liferay repository, it may include:
      • fileEntryTypeId - ID for a custom file entry type
      • fieldsMap - mapping for fields associated with a custom file entry type
      Returns:
      the file entry
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • addFileEntry

      public com.liferay.portal.kernel.repository.model.FileEntry addFileEntry(String externalReferenceCode, long repositoryId, long folderId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, byte[] bytes, Date displayDate, Date expirationDate, Date reviewDate, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Adds a file entry and associated metadata. It is created based on a byte array.

      This method takes two file names, the sourceFileName and the title. The sourceFileName corresponds to the name of the actual file being uploaded. The title corresponds to a name the client wishes to assign this file after it has been uploaded to the portal. If it is null, the sourceFileName will be used.

      Parameters:
      externalReferenceCode - the file entry's external reference code
      repositoryId - the primary key of the repository
      folderId - the primary key of the file entry's parent folder
      sourceFileName - the original file's name
      mimeType - the file's MIME type
      title - the name to be assigned to the file (optionally null )
      urlTitle - the url title
      description - the file's description
      changeLog - the file's version change log
      bytes - the file's data (optionally null)
      displayDate - the file's display date (optionally null)
      expirationDate - the file's expiration date (optionally null )
      reviewDate - the file's review Date (optionally null)
      serviceContext - the service context to be applied. Can set the asset category IDs, asset tag names, and expando bridge attributes for the file entry. In a Liferay repository, it may include:
      • fileEntryTypeId - ID for a custom file entry type
      • fieldsMap - mapping for fields associated with a custom file entry type
      Returns:
      the file entry
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • addFileEntry

      public com.liferay.portal.kernel.repository.model.FileEntry addFileEntry(String externalReferenceCode, long repositoryId, long folderId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, File file, Date displayDate, Date expirationDate, Date reviewDate, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Adds a file entry and associated metadata. It is created based on a File object.

      This method takes two file names, the sourceFileName and the title. The sourceFileName corresponds to the name of the actual file being uploaded. The title corresponds to a name the client wishes to assign this file after it has been uploaded to the portal. If it is null, the sourceFileName will be used.

      Parameters:
      externalReferenceCode - the file entry's external reference code.
      repositoryId - the primary key of the repository
      folderId - the primary key of the file entry's parent folder
      sourceFileName - the original file's name
      mimeType - the file's MIME type
      title - the name to be assigned to the file (optionally null )
      description - the file's description
      changeLog - the file's version change log
      file - the file's data (optionally null)
      displayDate - the file's display date (optionally null)
      expirationDate - the file's expiration date (optionally null )
      reviewDate - the file's review Date (optionally null)
      serviceContext - the service context to be applied. Can set the asset category IDs, asset tag names, and expando bridge attributes for the file entry. In a Liferay repository, it may include:
      • fileEntryTypeId - ID for a custom file entry type
      • fieldsMap - mapping for fields associated with a custom file entry type
      Returns:
      the file entry
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • addFileEntry

      public com.liferay.portal.kernel.repository.model.FileEntry addFileEntry(String externalReferenceCode, long repositoryId, long folderId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, InputStream inputStream, long size, Date displayDate, Date expirationDate, Date reviewDate, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Adds a file entry and associated metadata. It is created based on a InputStream object.

      This method takes two file names, the sourceFileName and the title. The sourceFileName corresponds to the name of the actual file being uploaded. The title corresponds to a name the client wishes to assign this file after it has been uploaded to the portal. If it is null, the sourceFileName will be used.

      Parameters:
      externalReferenceCode - the file entry's external reference code.
      repositoryId - the primary key of the repository
      folderId - the primary key of the file entry's parent folder
      sourceFileName - the original file's name
      mimeType - the file's MIME type
      title - the name to be assigned to the file (optionally null )
      description - the file's description
      changeLog - the file's version change log
      inputStream - the file's data (optionally null)
      size - the file's size (optionally 0)
      displayDate - the file's display date (optionally null)
      expirationDate - the file's expiration date (optionally null)
      reviewDate - the file's review Date (optionally null)
      serviceContext - the service context to be applied. Can set the asset category IDs, asset tag names, and expando bridge attributes for the file entry. In a Liferay repository, it may include:
      • fileEntryTypeId - ID for a custom file entry type
      • fieldsMap - mapping for fields associated with a custom file entry type
      Returns:
      the file entry
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • addFileShortcut

      public com.liferay.portal.kernel.repository.model.FileShortcut addFileShortcut(String externalReferenceCode, long repositoryId, long folderId, long toFileEntryId, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Adds a file shortcut to the existing file entry. This method is only supported by the Liferay repository.
      Parameters:
      repositoryId - the primary key of the repository
      folderId - the primary key of the file shortcut's parent folder
      toFileEntryId - the primary key of the file shortcut's file entry
      serviceContext - the service context to be applied. Can set the asset category IDs, asset tag names, and expando bridge attributes for the file entry.
      Returns:
      the file shortcut
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • addFolder

      public com.liferay.portal.kernel.repository.model.Folder addFolder(String externalReferenceCode, long repositoryId, long parentFolderId, String name, String description, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Adds a folder.
      Parameters:
      repositoryId - the primary key of the repository
      parentFolderId - the primary key of the folder's parent folder
      name - the folder's name
      description - the folder's description
      serviceContext - the service context to be applied. In a Liferay repository, it may include boolean mountPoint specifying whether folder is a facade for mounting a third-party repository
      Returns:
      the folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • addTempFileEntry

      public com.liferay.portal.kernel.repository.model.FileEntry addTempFileEntry(long groupId, long folderId, String folderName, String fileName, File file, String mimeType) throws com.liferay.portal.kernel.exception.PortalException
      Adds a temporary file entry.

      This allows a client to upload a file into a temporary location and manipulate its metadata prior to making it available for public usage. This is different from checking in and checking out a file entry.

      Parameters:
      groupId - the primary key of the group
      folderId - the primary key of the folder where the file entry will eventually reside
      folderName - the temporary folder's name
      fileName - the file's original name
      file - the file's data (optionally null)
      mimeType - the file's MIME type
      Returns:
      the temporary file entry
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
      See Also:
      • TempFileEntryUtil
    • addTempFileEntry

      public com.liferay.portal.kernel.repository.model.FileEntry addTempFileEntry(long groupId, long folderId, String folderName, String fileName, InputStream inputStream, String mimeType) throws com.liferay.portal.kernel.exception.PortalException
      Adds a temporary file entry. It is created based on the InputStream object.

      This allows a client to upload a file into a temporary location and manipulate its metadata prior to making it available for public usage. This is different from checking in and checking out a file entry.

      Parameters:
      groupId - the primary key of the group
      folderId - the primary key of the folder where the file entry will eventually reside
      folderName - the temporary folder's name
      fileName - the file's original name
      inputStream - the file's data
      mimeType - the file's MIME type
      Returns:
      the temporary file entry
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
      See Also:
      • TempFileEntryUtil
    • cancelCheckOut

      public void cancelCheckOut(long fileEntryId) throws com.liferay.portal.kernel.exception.PortalException
      Cancels the check out of the file entry. If a user has not checked out the specified file entry, invoking this method will result in no changes.

      When a file entry is checked out, a PWC (private working copy) is created and the original file entry is locked. A client can make as many changes to the PWC as he desires without those changes being visible to other users. If the user is satisfied with the changes, he may elect to check in his changes, resulting in a new file version based on the PWC; the PWC will be removed and the file entry will be unlocked. If the user is not satisfied with the changes, he may elect to cancel his check out; this results in the deletion of the PWC and unlocking of the file entry.

      Parameters:
      fileEntryId - the primary key of the file entry to cancel the checkout
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
      See Also:
    • checkInFileEntry

      public void checkInFileEntry(long fileEntryId, com.liferay.document.library.kernel.model.DLVersionNumberIncrease dlVersionNumberIncrease, String changeLog, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Checks in the file entry. If a user has not checked out the specified file entry, invoking this method will result in no changes.

      When a file entry is checked out, a PWC (private working copy) is created and the original file entry is locked. A client can make as many changes to the PWC as he desires without those changes being visible to other users. If the user is satisfied with the changes, he may elect to check in his changes, resulting in a new file version based on the PWC; the PWC will be removed and the file entry will be unlocked. If the user is not satisfied with the changes, he may elect to cancel his check out; this results in the deletion of the PWC and unlocking of the file entry.

      Parameters:
      fileEntryId - the primary key of the file entry to check in
      dlVersionNumberIncrease - the kind of version number increase to apply for these changes.
      changeLog - the file's version change log
      serviceContext - the service context to be applied
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
      See Also:
    • checkInFileEntry

      public void checkInFileEntry(long fileEntryId, String lockUuid, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Checks in the file entry using the lock's UUID. If a user has not checked out the specified file entry, invoking this method will result in no changes. This method is primarily used by WebDAV.

      When a file entry is checked out, a PWC (private working copy) is created and the original file entry is locked. A client can make as many changes to the PWC as he desires without those changes being visible to other users. If the user is satisfied with the changes, he may elect to check in his changes, resulting in a new file version based on the PWC; the PWC will be removed and the file entry will be unlocked. If the user is not satisfied with the changes, he may elect to cancel his check out; this results in the deletion of the PWC and unlocking of the file entry.

      Parameters:
      fileEntryId - the primary key of the file entry to check in
      lockUuid - the lock's UUID
      serviceContext - the service context to be applied
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
      See Also:
    • checkOutFileEntry

      public void checkOutFileEntry(long fileEntryId, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Check out a file entry.

      When a file entry is checked out, a PWC (private working copy) is created and the original file entry is locked. A client can make as many changes to the PWC as he desires without those changes being visible to other users. If the user is satisfied with the changes, he may elect to check in his changes, resulting in a new file version based on the PWC; the PWC will be removed and the file entry will be unlocked. If the user is not satisfied with the changes, he may elect to cancel his check out; this results in the deletion of the PWC and unlocking of the file entry.

      Parameters:
      fileEntryId - the file entry to check out
      serviceContext - the service context to be applied
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
      See Also:
    • checkOutFileEntry

      public com.liferay.portal.kernel.repository.model.FileEntry checkOutFileEntry(long fileEntryId, String owner, long expirationTime, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Checks out the file entry. This method is primarily used by WebDAV.

      When a file entry is checked out, a PWC (private working copy) is created and the original file entry is locked. A client can make as many changes to the PWC as he desires without those changes being visible to other users. If the user is satisfied with the changes, he may elect to check in his changes, resulting in a new file version based on the PWC; the PWC will be removed and the file entry will be unlocked. If the user is not satisfied with the changes, he may elect to cancel his check out; this results in the deletion of the PWC and unlocking of the file entry.

      Parameters:
      fileEntryId - the file entry to check out
      owner - the owner string for the checkout (optionally null)
      expirationTime - the time in milliseconds before the lock expires. If the value is 0, the default expiration time will be used from portal.properties.
      serviceContext - the service context to be applied
      Returns:
      the file entry
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
      See Also:
    • copyFileEntry

      public com.liferay.portal.kernel.repository.model.FileEntry copyFileEntry(long fileEntryId, long destinationFolderId, long destinationRepositoryId, long fileEntryTypeId, long[] groupIds, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • copyFileShortcut

      public com.liferay.portal.kernel.repository.model.FileShortcut copyFileShortcut(long fileShortcutId, long destinationFolderId, long destinationRepositoryId, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • copyFolder

      public com.liferay.portal.kernel.repository.model.Folder copyFolder(long sourceRepositoryId, long sourceFolderId, long destinationRepositoryId, long destinationParentFolderId, Map<Long,Long> fileEntryTypeIds, long[] groupIds, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • copyFolder

      public com.liferay.portal.kernel.repository.model.Folder copyFolder(long repositoryId, long sourceFolderId, long parentFolderId, String name, String description, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Performs a deep copy of the folder.
      Parameters:
      repositoryId - the primary key of the repository
      sourceFolderId - the primary key of the folder to copy
      parentFolderId - the primary key of the new folder's parent folder
      name - the new folder's name
      description - the new folder's description
      serviceContext - the service context to be applied
      Returns:
      the folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • deleteFileEntry

      public void deleteFileEntry(long fileEntryId) throws com.liferay.portal.kernel.exception.PortalException
      Deletes the file entry with the primary key.
      Parameters:
      fileEntryId - the primary key of the file entry
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • deleteFileEntryByExternalReferenceCode

      public void deleteFileEntryByExternalReferenceCode(String externalReferenceCode, long groupId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • deleteFileEntryByTitle

      public void deleteFileEntryByTitle(long repositoryId, long folderId, String title) throws com.liferay.portal.kernel.exception.PortalException
      Deletes the file entry with the title in the folder.
      Parameters:
      repositoryId - the primary key of the repository
      folderId - the primary key of the file entry's parent folder
      title - the file entry's title
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • deleteFileShortcut

      public void deleteFileShortcut(long fileShortcutId) throws com.liferay.portal.kernel.exception.PortalException
      Deletes the file shortcut with the primary key. This method is only supported by the Liferay repository.
      Parameters:
      fileShortcutId - the primary key of the file shortcut
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • deleteFileShortcutByExternalReferenceCode

      public void deleteFileShortcutByExternalReferenceCode(String externalReferenceCode, long groupId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • deleteFileVersion

      public void deleteFileVersion(long fileVersionId) throws com.liferay.portal.kernel.exception.PortalException
      Deletes the file version. File versions can only be deleted if it is approved and there are other approved file versions available.
      Parameters:
      fileVersionId - the primary key of the file version
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • deleteFileVersion

      public void deleteFileVersion(long fileEntryId, String version) throws com.liferay.portal.kernel.exception.PortalException
      Deletes the file version. File versions can only be deleted if it is approved and there are other approved file versions available. This method is only supported by the Liferay repository.
      Parameters:
      fileEntryId - the primary key of the file entry
      version - the version label of the file version
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • deleteFolder

      public void deleteFolder(long folderId) throws com.liferay.portal.kernel.exception.PortalException
      Deletes the folder with the primary key and all of its subfolders and file entries.
      Parameters:
      folderId - the primary key of the folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • deleteFolder

      public void deleteFolder(long repositoryId, long parentFolderId, String name) throws com.liferay.portal.kernel.exception.PortalException
      Deletes the folder with the name in the parent folder and all of its subfolders and file entries.
      Parameters:
      repositoryId - the primary key of the repository
      parentFolderId - the primary key of the folder's parent folder
      name - the folder's name
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • deleteTempFileEntry

      public void deleteTempFileEntry(long groupId, long folderId, String folderName, String fileName) throws com.liferay.portal.kernel.exception.PortalException
      Deletes the temporary file entry.
      Parameters:
      groupId - the primary key of the group
      folderId - the primary key of the folder where the file entry was eventually to reside
      folderName - the temporary folder's name
      fileName - the file's original name
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
      See Also:
      • TempFileEntryUtil
    • getFileEntries

      public List<com.liferay.portal.kernel.repository.model.FileEntry> getFileEntries(long repositoryId, long folderId) throws com.liferay.portal.kernel.exception.PortalException
      Returns all the file entries in the folder.
      Parameters:
      repositoryId - the primary key of the file entry's repository
      folderId - the primary key of the file entry's folder
      Returns:
      the file entries in the folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFileEntries

      public List<com.liferay.portal.kernel.repository.model.FileEntry> getFileEntries(long repositoryId, long folderId, int start, int end) throws com.liferay.portal.kernel.exception.PortalException
      Returns a name-ordered range of all the file entries in the folder.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

      Parameters:
      repositoryId - the primary key of the file entry's repository
      folderId - the primary key of the file entry's folder
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the name-ordered range of file entries in the folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFileEntries

      public List<com.liferay.portal.kernel.repository.model.FileEntry> getFileEntries(long repositoryId, long folderId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.FileEntry> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException
      Returns an ordered range of all the file entries in the folder.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

      Parameters:
      repositoryId - the primary key of the file entry's repository
      folderId - the primary key of the file entry's folder
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      orderByComparator - the comparator to order the file entries (optionally null)
      Returns:
      the range of file entries in the folder ordered by comparator orderByComparator
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFileEntries

      public List<com.liferay.portal.kernel.repository.model.FileEntry> getFileEntries(long repositoryId, long folderId, long fileEntryTypeId) throws com.liferay.portal.kernel.exception.PortalException
      Returns the file entries with the file entry type in the folder.
      Parameters:
      repositoryId - the primary key of the file entry's repository
      folderId - the primary key of the file entry's folder
      fileEntryTypeId - the primary key of the file entry type
      Returns:
      the file entries with the file entry type in the folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFileEntries

      public List<com.liferay.portal.kernel.repository.model.FileEntry> getFileEntries(long repositoryId, long folderId, long fileEntryTypeId, int start, int end) throws com.liferay.portal.kernel.exception.PortalException
      Returns a name-ordered range of all the file entries with the file entry type in the folder.
      Parameters:
      repositoryId - the primary key of the file entry's repository
      folderId - the primary key of the file entry's folder
      fileEntryTypeId - the primary key of the file entry type
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the name-ordered range of the file entries in the folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFileEntries

      public List<com.liferay.portal.kernel.repository.model.FileEntry> getFileEntries(long repositoryId, long folderId, long fileEntryTypeId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.FileEntry> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException
      Returns an ordered range of all the file entries with the file entry type in the folder.
      Parameters:
      repositoryId - the primary key of the repository
      folderId - the primary key of the folder
      fileEntryTypeId - the primary key of the file entry type
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      orderByComparator - the comparator to order the results by (optionally null)
      Returns:
      the range of file entries with the file entry type in the folder ordered by null
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFileEntries

      public List<com.liferay.portal.kernel.repository.model.FileEntry> getFileEntries(long repositoryId, long folderId, String[] mimeTypes) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getFileEntries

      public List<com.liferay.portal.kernel.repository.model.FileEntry> getFileEntries(long repositoryId, long folderId, String[] mimeTypes, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.FileEntry> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getFileEntriesAndFileShortcuts

      public List<Object> getFileEntriesAndFileShortcuts(long repositoryId, long folderId, int status, int start, int end) throws com.liferay.portal.kernel.exception.PortalException
      Returns a range of all the file entries and shortcuts in the folder.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

      Parameters:
      repositoryId - the primary key of the repository
      folderId - the primary key of the folder
      status - the workflow status
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the range of file entries and shortcuts in the folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFileEntriesAndFileShortcutsCount

      public int getFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status) throws com.liferay.portal.kernel.exception.PortalException
      Returns the number of file entries and shortcuts in the folder.
      Parameters:
      repositoryId - the primary key of the repository
      folderId - the primary key of the folder
      status - the workflow status
      Returns:
      the number of file entries and shortcuts in the folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFileEntriesAndFileShortcutsCount

      public int getFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status, String[] mimeTypes) throws com.liferay.portal.kernel.exception.PortalException
      Returns the number of file entries and shortcuts in the folder.
      Parameters:
      repositoryId - the primary key of the repository
      folderId - the primary key of the folder
      status - the workflow status
      mimeTypes - allowed media types
      Returns:
      the number of file entries and shortcuts in the folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFileEntriesCount

      public int getFileEntriesCount(long repositoryId, long folderId) throws com.liferay.portal.kernel.exception.PortalException
      Returns the number of file entries in the folder.
      Parameters:
      repositoryId - the primary key of the file entry's repository
      folderId - the primary key of the file entry's folder
      Returns:
      the number of file entries in the folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFileEntriesCount

      public int getFileEntriesCount(long repositoryId, long folderId, long fileEntryTypeId) throws com.liferay.portal.kernel.exception.PortalException
      Returns the number of file entries with the file entry type in the folder.
      Parameters:
      repositoryId - the primary key of the file entry's repository
      folderId - the primary key of the file entry's folder
      fileEntryTypeId - the primary key of the file entry type
      Returns:
      the number of file entries with the file entry type in the folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFileEntriesCount

      public int getFileEntriesCount(long repositoryId, long folderId, String[] mimeTypes) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getFileEntry

      public com.liferay.portal.kernel.repository.model.FileEntry getFileEntry(long fileEntryId) throws com.liferay.portal.kernel.exception.PortalException
      Returns the file entry with the primary key.
      Parameters:
      fileEntryId - the primary key of the file entry
      Returns:
      the file entry with the primary key
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFileEntry

      public com.liferay.portal.kernel.repository.model.FileEntry getFileEntry(long groupId, long folderId, String title) throws com.liferay.portal.kernel.exception.PortalException
      Returns the file entry with the title in the folder.
      Parameters:
      groupId - the primary key of the file entry's group
      folderId - the primary key of the file entry's folder
      title - the file entry's title
      Returns:
      the file entry with the title in the folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFileEntryByExternalReferenceCode

      @Transactional(propagation=SUPPORTS, readOnly=true) public com.liferay.portal.kernel.repository.model.FileEntry getFileEntryByExternalReferenceCode(String externalReferenceCode, long groupId) throws com.liferay.portal.kernel.exception.PortalException
      Returns the file entry with the external reference code.
      Parameters:
      groupId - the primary key of the file entry's group
      externalReferenceCode - the file entry's external reference code
      Returns:
      the file entry with the external reference code
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFileEntryByFileName

      public com.liferay.portal.kernel.repository.model.FileEntry getFileEntryByFileName(long groupId, long folderId, String fileName) throws com.liferay.portal.kernel.exception.PortalException
      Returns the file entry with the file name in the folder.
      Parameters:
      groupId - the primary key of the file entry's group
      folderId - the primary key of the file entry's folder
      fileName - the file entry's file name
      Returns:
      the file entry with the file name in the folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFileEntryByUuidAndGroupId

      public com.liferay.portal.kernel.repository.model.FileEntry getFileEntryByUuidAndGroupId(String uuid, long groupId) throws com.liferay.portal.kernel.exception.PortalException
      Returns the file entry with the UUID and group.
      Parameters:
      uuid - the file entry's UUID
      groupId - the primary key of the file entry's group
      Returns:
      the file entry with the UUID and group
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFileShortcut

      public com.liferay.portal.kernel.repository.model.FileShortcut getFileShortcut(long fileShortcutId) throws com.liferay.portal.kernel.exception.PortalException
      Returns the file shortcut with the primary key. This method is only supported by the Liferay repository.
      Parameters:
      fileShortcutId - the primary key of the file shortcut
      Returns:
      the file shortcut with the primary key
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFileShortcutByExternalReferenceCode

      public com.liferay.portal.kernel.repository.model.FileShortcut getFileShortcutByExternalReferenceCode(String externalReferenceCode, long groupId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getFileVersion

      public com.liferay.portal.kernel.repository.model.FileVersion getFileVersion(long fileVersionId) throws com.liferay.portal.kernel.exception.PortalException
      Returns the file version with the primary key.
      Parameters:
      fileVersionId - the primary key of the file version
      Returns:
      the file version with the primary key
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFolder

      public com.liferay.portal.kernel.repository.model.Folder getFolder(long folderId) throws com.liferay.portal.kernel.exception.PortalException
      Returns the folder with the primary key.
      Parameters:
      folderId - the primary key of the folder
      Returns:
      the folder with the primary key
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFolder

      public com.liferay.portal.kernel.repository.model.Folder getFolder(long repositoryId, long parentFolderId, String name) throws com.liferay.portal.kernel.exception.PortalException
      Returns the folder with the name in the parent folder.
      Parameters:
      repositoryId - the primary key of the folder's repository
      parentFolderId - the primary key of the folder's parent folder
      name - the folder's name
      Returns:
      the folder with the name in the parent folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFolderByExternalReferenceCode

      public com.liferay.portal.kernel.repository.model.Folder getFolderByExternalReferenceCode(String externalReferenceCode, long groupId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getFolders

      public List<com.liferay.portal.kernel.repository.model.Folder> getFolders(long repositoryId, long parentFolderId) throws com.liferay.portal.kernel.exception.PortalException
      Returns all immediate subfolders of the parent folder.
      Parameters:
      repositoryId - the primary key of the folder's repository
      parentFolderId - the primary key of the folder's parent folder
      Returns:
      the immediate subfolders of the parent folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFolders

      public List<com.liferay.portal.kernel.repository.model.Folder> getFolders(long repositoryId, long parentFolderId, boolean includeMountFolders) throws com.liferay.portal.kernel.exception.PortalException
      Returns all immediate subfolders of the parent folder, optionally including mount folders for third-party repositories.
      Parameters:
      repositoryId - the primary key of the folder's repository
      parentFolderId - the primary key of the folder's parent folder
      includeMountFolders - whether to include mount folders for third-party repositories
      Returns:
      the immediate subfolders of the parent folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFolders

      public List<com.liferay.portal.kernel.repository.model.Folder> getFolders(long repositoryId, long parentFolderId, boolean includeMountFolders, int start, int end) throws com.liferay.portal.kernel.exception.PortalException
      Returns a name-ordered range of all the immediate subfolders of the parent folder, optionally including mount folders for third-party repositories.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

      Parameters:
      repositoryId - the primary key of the folder's repository
      parentFolderId - the primary key of the folder's parent folder
      includeMountFolders - whether to include mount folders for third-party repositories
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the name-ordered range of immediate subfolders of the parent folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFolders

      public List<com.liferay.portal.kernel.repository.model.Folder> getFolders(long repositoryId, long parentFolderId, boolean includeMountFolders, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.Folder> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException
      Returns an ordered range of all the immediate subfolders of the parent folder.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

      Parameters:
      repositoryId - the primary key of the folder's repository
      parentFolderId - the primary key of the folder's parent folder
      includeMountFolders - whether to include mount folders for third-party repositories
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      orderByComparator - the comparator to order the folders (optionally null)
      Returns:
      the range of immediate subfolders of the parent folder ordered by comparator orderByComparator
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFolders

      public List<com.liferay.portal.kernel.repository.model.Folder> getFolders(long repositoryId, long parentFolderId, int status, boolean includeMountFolders, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.Folder> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException
      Returns an ordered range of all the immediate subfolders of the parent folder.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

      Parameters:
      repositoryId - the primary key of the folder's repository
      parentFolderId - the primary key of the folder's parent folder
      status - the workflow status
      includeMountFolders - whether to include mount folders for third-party repositories
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      orderByComparator - the comparator to order the folders (optionally null)
      Returns:
      the range of immediate subfolders of the parent folder ordered by comparator orderByComparator
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFolders

      public List<com.liferay.portal.kernel.repository.model.Folder> getFolders(long repositoryId, long parentFolderId, int start, int end) throws com.liferay.portal.kernel.exception.PortalException
      Returns a name-ordered range of all the immediate subfolders of the parent folder.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

      Parameters:
      repositoryId - the primary key of the folder's repository
      parentFolderId - the primary key of the folder's parent folder
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the name-ordered range of immediate subfolders of the parent folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFolders

      public List<com.liferay.portal.kernel.repository.model.Folder> getFolders(long repositoryId, long parentFolderId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.Folder> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException
      Returns an ordered range of all the immediate subfolders of the parent folder.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

      Parameters:
      repositoryId - the primary key of the folder's repository
      parentFolderId - the primary key of the folder's parent folder
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      orderByComparator - the comparator to order the folders (optionally null)
      Returns:
      the range of immediate subfolders of the parent folder ordered by comparator orderByComparator
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFoldersAndFileEntriesAndFileShortcuts

      public List<Object> getFoldersAndFileEntriesAndFileShortcuts(long repositoryId, long folderId, int status, boolean includeMountFolders, int start, int end) throws com.liferay.portal.kernel.exception.PortalException
      Returns a name-ordered range of all the immediate subfolders, file entries, and file shortcuts in the parent folder.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

      Parameters:
      repositoryId - the primary key of the repository
      folderId - the primary key of the parent folder
      status - the workflow status
      includeMountFolders - whether to include mount folders for third-party repositories
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the name-ordered range of immediate subfolders, file entries, and file shortcuts in the parent folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFoldersAndFileEntriesAndFileShortcuts

      public List<Object> getFoldersAndFileEntriesAndFileShortcuts(long repositoryId, long folderId, int status, boolean includeMountFolders, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<?> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException
      Returns an ordered range of all the immediate subfolders, file entries, and file shortcuts in the parent folder.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

      Parameters:
      repositoryId - the primary key of the repository
      folderId - the primary key of the parent folder
      status - the workflow status
      includeMountFolders - whether to include mount folders for third-party repositories
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      orderByComparator - the comparator to order the results (optionally null)
      Returns:
      the range of immediate subfolders, file entries, and file shortcuts in the parent folder ordered by comparator orderByComparator
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFoldersAndFileEntriesAndFileShortcuts

      public List<Object> getFoldersAndFileEntriesAndFileShortcuts(long repositoryId, long folderId, int status, String[] mimeTypes, boolean includeMountFolders, boolean includeOwner, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<?> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getFoldersAndFileEntriesAndFileShortcuts

      public List<Object> getFoldersAndFileEntriesAndFileShortcuts(long repositoryId, long folderId, int status, String[] mimeTypes, boolean includeMountFolders, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<?> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getFoldersAndFileEntriesAndFileShortcutsCount

      @ThreadLocalCachable public int getFoldersAndFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status, boolean includeMountFolders) throws com.liferay.portal.kernel.exception.PortalException
      Returns the number of immediate subfolders, file entries, and file shortcuts in the parent folder.
      Parameters:
      repositoryId - the primary key of the repository
      folderId - the primary key of the parent folder
      status - the workflow status
      includeMountFolders - whether to include mount folders for third-party repositories
      Returns:
      the number of immediate subfolders, file entries, and file shortcuts in the parent folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFoldersAndFileEntriesAndFileShortcutsCount

      public int getFoldersAndFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status, String[] mimeTypes, boolean includeMountFolders) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getFoldersAndFileEntriesAndFileShortcutsCount

      public int getFoldersAndFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status, String[] mimeTypes, boolean includeMountFolders, boolean includeOwner) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getFoldersCount

      public int getFoldersCount(long repositoryId, long parentFolderId) throws com.liferay.portal.kernel.exception.PortalException
      Returns the number of immediate subfolders of the parent folder.
      Parameters:
      repositoryId - the primary key of the folder's repository
      parentFolderId - the primary key of the folder's parent folder
      Returns:
      the number of immediate subfolders of the parent folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFoldersCount

      public int getFoldersCount(long repositoryId, long parentFolderId, boolean includeMountFolders) throws com.liferay.portal.kernel.exception.PortalException
      Returns the number of immediate subfolders of the parent folder, optionally including mount folders for third-party repositories.
      Parameters:
      repositoryId - the primary key of the folder's repository
      parentFolderId - the primary key of the folder's parent folder
      includeMountFolders - whether to include mount folders for third-party repositories
      Returns:
      the number of immediate subfolders of the parent folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFoldersCount

      public int getFoldersCount(long repositoryId, long parentFolderId, int status, boolean includeMountFolders) throws com.liferay.portal.kernel.exception.PortalException
      Returns the number of immediate subfolders of the parent folder, optionally including mount folders for third-party repositories.
      Parameters:
      repositoryId - the primary key of the folder's repository
      parentFolderId - the primary key of the folder's parent folder
      status - the workflow status
      includeMountFolders - whether to include mount folders for third-party repositories
      Returns:
      the number of immediate subfolders of the parent folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getFoldersFileEntriesCount

      public int getFoldersFileEntriesCount(long repositoryId, List<Long> folderIds, int status) throws com.liferay.portal.kernel.exception.PortalException
      Returns the number of immediate subfolders and file entries across the folders.
      Parameters:
      repositoryId - the primary key of the repository
      folderIds - the primary keys of folders from which to count immediate subfolders and file entries
      status - the workflow status
      Returns:
      the number of immediate subfolders and file entries across the folders
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getGroupFileEntries

      public List<com.liferay.portal.kernel.repository.model.FileEntry> getGroupFileEntries(long groupId, long userId, int start, int end) throws com.liferay.portal.kernel.exception.PortalException
      Returns an ordered range of all the file entries in the group starting at the repository default parent folder that are stored within the Liferay repository. This method is primarily used to search for recently modified file entries. It can be limited to the file entries modified by a given user.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

      Parameters:
      groupId - the primary key of the group
      userId - the primary key of the user who created the file (optionally 0)
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the range of matching file entries ordered by date modified
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getGroupFileEntries

      public List<com.liferay.portal.kernel.repository.model.FileEntry> getGroupFileEntries(long groupId, long userId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.FileEntry> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException
      Returns an ordered range of all the file entries in the group that are stored within the Liferay repository. This method is primarily used to search for recently modified file entries. It can be limited to the file entries modified by a given user.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

      Parameters:
      groupId - the primary key of the group
      userId - the primary key of the user who created the file (optionally 0)
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      orderByComparator - the comparator to order the file entries (optionally null)
      Returns:
      the range of matching file entries ordered by comparator orderByComparator
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getGroupFileEntries

      public List<com.liferay.portal.kernel.repository.model.FileEntry> getGroupFileEntries(long groupId, long userId, long rootFolderId, int start, int end) throws com.liferay.portal.kernel.exception.PortalException
      Returns an ordered range of all the file entries in the group starting at the root folder that are stored within the Liferay repository. This method is primarily used to search for recently modified file entries. It can be limited to the file entries modified by a given user.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

      Parameters:
      groupId - the primary key of the group
      userId - the primary key of the user who created the file (optionally 0)
      rootFolderId - the primary key of the root folder to begin the search
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the range of matching file entries ordered by date modified
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getGroupFileEntries

      public List<com.liferay.portal.kernel.repository.model.FileEntry> getGroupFileEntries(long groupId, long userId, long rootFolderId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.FileEntry> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException
      Returns an ordered range of all the file entries in the group starting at the root folder that are stored within the Liferay repository. This method is primarily used to search for recently modified file entries. It can be limited to the file entries modified by a given user.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

      Parameters:
      groupId - the primary key of the group
      userId - the primary key of the user who created the file (optionally 0)
      rootFolderId - the primary key of the root folder to begin the search
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      orderByComparator - the comparator to order the file entries (optionally null)
      Returns:
      the range of matching file entries ordered by comparator orderByComparator
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getGroupFileEntries

      public List<com.liferay.portal.kernel.repository.model.FileEntry> getGroupFileEntries(long groupId, long userId, long rootFolderId, String[] mimeTypes, int status, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.FileEntry> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getGroupFileEntriesCount

      public int getGroupFileEntriesCount(long groupId, long userId) throws com.liferay.portal.kernel.exception.PortalException
      Returns the number of file entries in a group starting at the repository default parent folder that are stored within the Liferay repository. This method is primarily used to search for recently modified file entries. It can be limited to the file entries modified by a given user.
      Parameters:
      groupId - the primary key of the group
      userId - the primary key of the user who created the file (optionally 0)
      Returns:
      the number of matching file entries
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getGroupFileEntriesCount

      public int getGroupFileEntriesCount(long groupId, long userId, long rootFolderId) throws com.liferay.portal.kernel.exception.PortalException
      Returns the number of file entries in a group starting at the root folder that are stored within the Liferay repository. This method is primarily used to search for recently modified file entries. It can be limited to the file entries modified by a given user.
      Parameters:
      groupId - the primary key of the group
      userId - the primary key of the user who created the file (optionally 0)
      rootFolderId - the primary key of the root folder to begin the search
      Returns:
      the number of matching file entries
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getGroupFileEntriesCount

      public int getGroupFileEntriesCount(long groupId, long userId, long rootFolderId, String[] mimeTypes, int status) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getGroupFileShortcuts

      public List<com.liferay.portal.kernel.repository.model.FileShortcut> getGroupFileShortcuts(long groupId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getMountFolders

      public List<com.liferay.portal.kernel.repository.model.Folder> getMountFolders(long repositoryId, long parentFolderId) throws com.liferay.portal.kernel.exception.PortalException
      Returns all immediate subfolders of the parent folder that are used for mounting third-party repositories. This method is only supported by the Liferay repository.
      Parameters:
      repositoryId - the primary key of the folder's repository
      parentFolderId - the primary key of the folder's parent folder
      Returns:
      the immediate subfolders of the parent folder that are used for mounting third-party repositories
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getMountFolders

      public List<com.liferay.portal.kernel.repository.model.Folder> getMountFolders(long repositoryId, long parentFolderId, int start, int end) throws com.liferay.portal.kernel.exception.PortalException
      Returns a name-ordered range of all the immediate subfolders of the parent folder that are used for mounting third-party repositories. This method is only supported by the Liferay repository.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

      Parameters:
      repositoryId - the primary key of the repository
      parentFolderId - the primary key of the parent folder
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      Returns:
      the name-ordered range of immediate subfolders of the parent folder that are used for mounting third-party repositories
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getMountFolders

      public List<com.liferay.portal.kernel.repository.model.Folder> getMountFolders(long repositoryId, long parentFolderId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<com.liferay.portal.kernel.repository.model.Folder> orderByComparator) throws com.liferay.portal.kernel.exception.PortalException
      Returns an ordered range of all the immediate subfolders of the parent folder that are used for mounting third-party repositories. This method is only supported by the Liferay repository.

      Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

      Parameters:
      repositoryId - the primary key of the folder's repository
      parentFolderId - the primary key of the folder's parent folder
      start - the lower bound of the range of results
      end - the upper bound of the range of results (not inclusive)
      orderByComparator - the comparator to order the folders (optionally null)
      Returns:
      the range of immediate subfolders of the parent folder that are used for mounting third-party repositories ordered by comparator orderByComparator
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getMountFoldersCount

      public int getMountFoldersCount(long repositoryId, long parentFolderId) throws com.liferay.portal.kernel.exception.PortalException
      Returns the number of immediate subfolders of the parent folder that are used for mounting third-party repositories. This method is only supported by the Liferay repository.
      Parameters:
      repositoryId - the primary key of the repository
      parentFolderId - the primary key of the parent folder
      Returns:
      the number of folders of the parent folder that are used for mounting third-party repositories
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getSubfolderIds

      public void getSubfolderIds(long repositoryId, List<Long> folderIds, long folderId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getSubfolderIds

      public List<Long> getSubfolderIds(long repositoryId, long folderId) throws com.liferay.portal.kernel.exception.PortalException
      Returns all the descendant folders of the folder with the primary key.
      Parameters:
      repositoryId - the primary key of the repository
      folderId - the primary key of the folder
      Returns:
      the descendant folders of the folder with the primary key
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getSubfolderIds

      public List<Long> getSubfolderIds(long repositoryId, long folderId, boolean recurse) throws com.liferay.portal.kernel.exception.PortalException
      Returns descendant folders of the folder with the primary key, optionally limiting to one level deep.
      Parameters:
      repositoryId - the primary key of the repository
      folderId - the primary key of the folder
      recurse - whether to recurse through each subfolder
      Returns:
      the descendant folders of the folder with the primary key
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • getTempFileNames

      @CTAware(onProduction=true) public String[] getTempFileNames(long groupId, long folderId, String folderName) throws com.liferay.portal.kernel.exception.PortalException
      Returns all the temporary file entry names.
      Parameters:
      groupId - the primary key of the group
      folderId - the primary key of the folder where the file entry will eventually reside
      folderName - the temporary folder's name
      Returns:
      the temporary file entry names
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
      See Also:
    • lockFolder

      public com.liferay.portal.kernel.lock.Lock lockFolder(long repositoryId, long folderId) throws com.liferay.portal.kernel.exception.PortalException
      Locks the folder. This method is primarily used by WebDAV.
      Parameters:
      repositoryId - the primary key of the repository
      folderId - the primary key of the folder
      Returns:
      the lock object
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • lockFolder

      public com.liferay.portal.kernel.lock.Lock lockFolder(long repositoryId, long folderId, String owner, boolean inheritable, long expirationTime) throws com.liferay.portal.kernel.exception.PortalException
      Locks the folder. This method is primarily used by WebDAV.
      Parameters:
      repositoryId - the primary key of the repository
      folderId - the primary key of the folder
      owner - the owner string for the checkout (optionally null)
      inheritable - whether the lock must propagate to descendants
      expirationTime - the time in milliseconds before the lock expires. If the value is 0, the default expiration time will be used from portal.properties.
      Returns:
      the lock object
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • moveFileEntry

      public com.liferay.portal.kernel.repository.model.FileEntry moveFileEntry(long fileEntryId, long newFolderId, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Moves the file entry to the new folder.
      Parameters:
      fileEntryId - the primary key of the file entry
      newFolderId - the primary key of the new folder
      serviceContext - the service context to be applied
      Returns:
      the file entry
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • moveFolder

      public com.liferay.portal.kernel.repository.model.Folder moveFolder(long folderId, long parentFolderId, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Moves the folder to the new parent folder with the primary key.
      Parameters:
      folderId - the primary key of the folder
      parentFolderId - the primary key of the new parent folder
      serviceContext - the service context to be applied
      Returns:
      the file entry
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • refreshFileEntryLock

      public com.liferay.portal.kernel.lock.Lock refreshFileEntryLock(String lockUuid, long companyId, long expirationTime) throws com.liferay.portal.kernel.exception.PortalException
      Refreshes the lock for the file entry. This method is primarily used by WebDAV.
      Parameters:
      lockUuid - the lock's UUID
      companyId - the primary key of the file entry's company
      expirationTime - the time in milliseconds before the lock expires. If the value is 0, the default expiration time will be used from portal.properties.
      Returns:
      the lock object
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • refreshFolderLock

      public com.liferay.portal.kernel.lock.Lock refreshFolderLock(String lockUuid, long companyId, long expirationTime) throws com.liferay.portal.kernel.exception.PortalException
      Refreshes the lock for the folder. This method is primarily used by WebDAV.
      Parameters:
      lockUuid - the lock's UUID
      companyId - the primary key of the file entry's company
      expirationTime - the time in milliseconds before the lock expires. If the value is 0, the default expiration time will be used from portal.properties.
      Returns:
      the lock object
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • revertFileEntry

      public void revertFileEntry(long fileEntryId, String version, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Reverts the file entry to a previous version. A new version will be created based on the previous version and metadata.
      Parameters:
      fileEntryId - the primary key of the file entry
      version - the version to revert back to
      serviceContext - the service context to be applied
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • search

      public com.liferay.portal.kernel.search.Hits search(long repositoryId, long creatorUserId, int status, int start, int end) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • search

      public com.liferay.portal.kernel.search.Hits search(long repositoryId, long creatorUserId, long folderId, String[] mimeTypes, int status, int start, int end) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • search

      public com.liferay.portal.kernel.search.Hits search(long repositoryId, com.liferay.portal.kernel.search.SearchContext searchContext) throws com.liferay.portal.kernel.search.SearchException
      Throws:
      com.liferay.portal.kernel.search.SearchException
    • search

      public com.liferay.portal.kernel.search.Hits search(long repositoryId, com.liferay.portal.kernel.search.SearchContext searchContext, com.liferay.portal.kernel.search.Query query) throws com.liferay.portal.kernel.search.SearchException
      Throws:
      com.liferay.portal.kernel.search.SearchException
    • subscribeFileEntry

      public void subscribeFileEntry(long groupId, long fileEntryId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • subscribeFileEntryType

      public void subscribeFileEntryType(long groupId, long fileEntryTypeId) throws com.liferay.portal.kernel.exception.PortalException
      Subscribe the user to changes in documents of the file entry type. This method is only supported by the Liferay repository.
      Parameters:
      groupId - the primary key of the file entry type's group
      fileEntryTypeId - the primary key of the file entry type
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • subscribeFolder

      public void subscribeFolder(long groupId, long folderId) throws com.liferay.portal.kernel.exception.PortalException
      Subscribe the user to document changes in the folder. This method is only supported by the Liferay repository.
      Parameters:
      groupId - the primary key of the folder's group
      folderId - the primary key of the folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • unlockFolder

      public void unlockFolder(long repositoryId, long folderId, String lockUuid) throws com.liferay.portal.kernel.exception.PortalException
      Unlocks the folder. This method is primarily used by WebDAV.
      Parameters:
      repositoryId - the primary key of the repository
      folderId - the primary key of the folder
      lockUuid - the lock's UUID
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • unlockFolder

      public void unlockFolder(long repositoryId, long parentFolderId, String name, String lockUuid) throws com.liferay.portal.kernel.exception.PortalException
      Unlocks the folder. This method is primarily used by WebDAV.
      Parameters:
      repositoryId - the primary key of the repository
      parentFolderId - the primary key of the parent folder
      name - the folder's name
      lockUuid - the lock's UUID
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • unsubscribeFileEntry

      public void unsubscribeFileEntry(long groupId, long fileEntryId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • unsubscribeFileEntryType

      public void unsubscribeFileEntryType(long groupId, long fileEntryTypeId) throws com.liferay.portal.kernel.exception.PortalException
      Unsubscribe the user from changes in documents of the file entry type. This method is only supported by the Liferay repository.
      Parameters:
      groupId - the primary key of the file entry type's group
      fileEntryTypeId - the primary key of the file entry type
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • unsubscribeFolder

      public void unsubscribeFolder(long groupId, long folderId) throws com.liferay.portal.kernel.exception.PortalException
      Unsubscribe the user from document changes in the folder. This method is only supported by the Liferay repository.
      Parameters:
      groupId - the primary key of the folder's group
      folderId - the primary key of the folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • updateFileEntry

      public com.liferay.portal.kernel.repository.model.FileEntry updateFileEntry(long fileEntryId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, com.liferay.document.library.kernel.model.DLVersionNumberIncrease dlVersionNumberIncrease, byte[] bytes, Date displayDate, Date expirationDate, Date reviewDate, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Updates a file entry and associated metadata based on a byte array object. If the file data is null, then only the associated metadata (i.e., title, description, and parameters in the serviceContext) will be updated.

      This method takes two file names, the sourceFileName and the title. The sourceFileName corresponds to the name of the actual file being uploaded. The title corresponds to a name the client wishes to assign this file after it has been uploaded to the portal.

      Parameters:
      fileEntryId - the primary key of the file entry
      sourceFileName - the original file's name (optionally null)
      mimeType - the file's MIME type (optionally null)
      title - the new name to be assigned to the file (optionally null)
      description - the file's new description
      changeLog - the file's version change log (optionally null)
      dlVersionNumberIncrease - the kind of version number increase to apply for these changes.
      bytes - the file's data (optionally null)
      displayDate - the file's display date (optionally null )
      expirationDate - the file's expiration date (optionally null )
      reviewDate - the file's review date (optionally null)
      serviceContext - the service context to be applied. Can set the asset category IDs, asset tag names, and expando bridge attributes for the file entry. In a Liferay repository, it may include:
      • fileEntryTypeId - ID for a custom file entry type
      • fieldsMap - mapping for fields associated with a custom file entry type
      Returns:
      the file entry
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • updateFileEntry

      public com.liferay.portal.kernel.repository.model.FileEntry updateFileEntry(long fileEntryId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, com.liferay.document.library.kernel.model.DLVersionNumberIncrease dlVersionNumberIncrease, File file, Date displayDate, Date expirationDate, Date reviewDate, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Updates a file entry and associated metadata based on a File object. If the file data is null, then only the associated metadata (i.e., title, description, and parameters in the serviceContext) will be updated.

      This method takes two file names, the sourceFileName and the title. The sourceFileName corresponds to the name of the actual file being uploaded. The title corresponds to a name the client wishes to assign this file after it has been uploaded to the portal.

      Parameters:
      fileEntryId - the primary key of the file entry
      sourceFileName - the original file's name (optionally null)
      mimeType - the file's MIME type (optionally null)
      title - the new name to be assigned to the file (optionally null)
      description - the file's new description
      changeLog - the file's version change log (optionally null)
      dlVersionNumberIncrease - the kind of version number increase to apply for these changes.
      file - the file's data (optionally null)
      displayDate - the file's display date (optionally null )
      expirationDate - the file's expiration date (optionally null )
      reviewDate - the file's review date (optionally null)
      serviceContext - the service context to be applied. Can set the asset category IDs, asset tag names, and expando bridge attributes for the file entry. In a Liferay repository, it may include:
      • fileEntryTypeId - ID for a custom file entry type
      • fieldsMap - mapping for fields associated with a custom file entry type
      Returns:
      the file entry
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • updateFileEntry

      public com.liferay.portal.kernel.repository.model.FileEntry updateFileEntry(long fileEntryId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, com.liferay.document.library.kernel.model.DLVersionNumberIncrease dlVersionNumberIncrease, InputStream inputStream, long size, Date displayDate, Date expirationDate, Date reviewDate, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Updates a file entry and associated metadata based on an InputStream object. If the file data is null, then only the associated metadata (i.e., title, description, and parameters in the serviceContext) will be updated.

      This method takes two file names, the sourceFileName and the title. The sourceFileName corresponds to the name of the actual file being uploaded. The title corresponds to a name the client wishes to assign this file after it has been uploaded to the portal.

      Parameters:
      fileEntryId - the primary key of the file entry
      sourceFileName - the original file's name (optionally null)
      mimeType - the file's MIME type (optionally null)
      title - the new name to be assigned to the file (optionally null)
      description - the file's new description
      changeLog - the file's version change log (optionally null)
      dlVersionNumberIncrease - the kind of version number increase to apply for these changes.
      inputStream - the file's data (optionally null)
      size - the file's size (optionally 0)
      displayDate - the file's display date (optionally null )
      expirationDate - the file's expiration date (optionally null )
      reviewDate - the file's review date (optionally null)
      serviceContext - the service context to be applied. Can set the asset category IDs, asset tag names, and expando bridge attributes for the file entry. In a Liferay repository, it may include:
      • fileEntryTypeId - ID for a custom file entry type
      • fieldsMap - mapping for fields associated with a custom file entry type
      Returns:
      the file entry
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • updateFileEntryAndCheckIn

      public com.liferay.portal.kernel.repository.model.FileEntry updateFileEntryAndCheckIn(long fileEntryId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, com.liferay.document.library.kernel.model.DLVersionNumberIncrease dlVersionNumberIncrease, File file, Date displayDate, Date expirationDate, Date reviewDate, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • updateFileEntryAndCheckIn

      public com.liferay.portal.kernel.repository.model.FileEntry updateFileEntryAndCheckIn(long fileEntryId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, com.liferay.document.library.kernel.model.DLVersionNumberIncrease dlVersionNumberIncrease, InputStream inputStream, long size, Date displayDate, Date expirationDate, Date reviewDate, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • updateFileShortcut

      public com.liferay.portal.kernel.repository.model.FileShortcut updateFileShortcut(long fileShortcutId, long folderId, long toFileEntryId, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Updates a file shortcut to the existing file entry. This method is only supported by the Liferay repository.
      Parameters:
      fileShortcutId - the primary key of the file shortcut
      folderId - the primary key of the file shortcut's parent folder
      toFileEntryId - the primary key of the file shortcut's file entry
      serviceContext - the service context to be applied. Can set the asset category IDs, asset tag names, and expando bridge attributes for the file entry.
      Returns:
      the file shortcut
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • updateFolder

      public com.liferay.portal.kernel.repository.model.Folder updateFolder(long folderId, String name, String description, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Updates the folder.
      Parameters:
      folderId - the primary key of the folder
      name - the folder's new name
      description - the folder's new description
      serviceContext - the service context to be applied. In a Liferay repository, it may include:
      • defaultFileEntryTypeId - the file entry type to default all Liferay file entries to
      • dlFileEntryTypesSearchContainerPrimaryKeys - a comma-delimited list of file entry type primary keys allowed in the given folder and all descendants
      • restrictionType - specifying restriction type of file entry types allowed
      • workflowDefinitionXYZ - the workflow definition name specified per file entry type. The parameter name must be the string workflowDefinition appended by the fileEntryTypeId (optionally 0).
      Returns:
      the folder
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • verifyFileEntryCheckOut

      public boolean verifyFileEntryCheckOut(long repositoryId, long fileEntryId, String lockUuid) throws com.liferay.portal.kernel.exception.PortalException
      Returns true if the file entry is checked out. This method is primarily used by WebDAV.
      Parameters:
      repositoryId - the primary key for the repository
      fileEntryId - the primary key for the file entry
      lockUuid - the lock's UUID
      Returns:
      true if the file entry is checked out; false otherwise
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • verifyFileEntryLock

      public boolean verifyFileEntryLock(long repositoryId, long fileEntryId, String lockUuid) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • verifyInheritableLock

      public boolean verifyInheritableLock(long repositoryId, long folderId, String lockUuid) throws com.liferay.portal.kernel.exception.PortalException
      Returns true if the inheritable lock exists. This method is primarily used by WebDAV.
      Parameters:
      repositoryId - the primary key for the repository
      folderId - the primary key for the folder
      lockUuid - the lock's UUID
      Returns:
      true if the inheritable lock exists; false otherwise
      Throws:
      com.liferay.portal.kernel.exception.PortalException - if a portal exception occurred
    • copyFileEntry

      protected com.liferay.portal.kernel.repository.model.FileEntry copyFileEntry(com.liferay.portal.kernel.repository.Repository toRepository, com.liferay.portal.kernel.repository.model.FileEntry fileEntry, long targetFolderId, long fileEntryTypeId, long[] groupIds, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • copyFileEntry

      protected com.liferay.portal.kernel.repository.model.FileEntry copyFileEntry(com.liferay.portal.kernel.repository.Repository toRepository, com.liferay.portal.kernel.repository.model.FileEntry fileEntry, long targetFolderId, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • copyFolder

      protected com.liferay.portal.kernel.repository.model.Folder copyFolder(long sourceFolderId, long parentFolderId, com.liferay.portal.kernel.repository.Repository fromRepository, com.liferay.portal.kernel.repository.Repository toRepository, Map<Long,Long> fileEntryTypeIds, long[] groupIds, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • copyFolder

      protected void copyFolder(com.liferay.portal.kernel.repository.Repository repository, com.liferay.portal.kernel.repository.model.Folder sourceFolder, com.liferay.portal.kernel.repository.model.Folder targetFolder, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • copyFolderDependencies

      protected void copyFolderDependencies(com.liferay.portal.kernel.repository.model.Folder sourceFolder, com.liferay.portal.kernel.repository.model.Folder targetFolder, com.liferay.portal.kernel.repository.Repository fromRepository, com.liferay.portal.kernel.repository.Repository toRepository, Map<Long,Long> fileEntryTypeIds, long[] groupIds, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • deleteFileEntry

      protected void deleteFileEntry(long oldFileEntryId, long newFileEntryId, com.liferay.portal.kernel.repository.Repository fromRepository, com.liferay.portal.kernel.repository.Repository toRepository) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • fetchFileEntryByUuidAndRepositoryId

      protected com.liferay.portal.kernel.repository.model.FileEntry fetchFileEntryByUuidAndRepositoryId(String uuid, long repositoryId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getFolderRepository

      protected com.liferay.portal.kernel.repository.Repository getFolderRepository(long folderId, long groupId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • getRepository

      protected com.liferay.portal.kernel.repository.Repository getRepository(long repositoryId) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • moveFileEntry

      protected com.liferay.portal.kernel.repository.model.FileEntry moveFileEntry(long fileEntryId, long newFolderId, com.liferay.portal.kernel.repository.Repository fromRepository, com.liferay.portal.kernel.repository.Repository toRepository, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException
    • moveFolder

      protected com.liferay.portal.kernel.repository.model.Folder moveFolder(long folderId, long parentFolderId, com.liferay.portal.kernel.repository.Repository fromRepository, com.liferay.portal.kernel.repository.Repository toRepository, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
      Throws:
      com.liferay.portal.kernel.exception.PortalException