public class DLAppServiceImpl extends DLAppServiceBaseImpl
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
.
DLAppLocalServiceImpl
Modifier and Type | Field and Description |
---|---|
protected com.liferay.portal.kernel.repository.RepositoryProvider |
repositoryProvider |
counterLocalService, dlAppHelperLocalService, dlAppLocalService, dlAppService, dlFolderFinder, dlFolderLocalService, dlFolderPersistence, dlFolderService, repositoryLocalService, repositoryPersistence, repositoryService, trashEntryLocalService, trashEntryPersistence, trashEntryService
Constructor and Description |
---|
DLAppServiceImpl() |
Modifier and Type | Method and Description |
---|---|
com.liferay.portal.kernel.repository.model.FileEntry |
addFileEntry(long repositoryId,
long folderId,
String sourceFileName,
String mimeType,
String title,
String description,
String changeLog,
byte[] bytes,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
Adds a file entry and associated metadata.
|
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)
Adds a file entry and associated metadata.
|
com.liferay.portal.kernel.repository.model.FileEntry |
addFileEntry(long repositoryId,
long folderId,
String sourceFileName,
String mimeType,
String title,
String description,
String changeLog,
InputStream is,
long size,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
Adds a file entry and associated metadata.
|
com.liferay.portal.kernel.repository.model.FileShortcut |
addFileShortcut(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(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,
boolean majorVersion,
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.
|
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 newFolderId,
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 folderId,
long parentFolderId,
com.liferay.portal.kernel.repository.Repository fromRepository,
com.liferay.portal.kernel.repository.Repository toRepository,
com.liferay.portal.kernel.service.ServiceContext serviceContext) |
protected void |
copyFolder(com.liferay.portal.kernel.repository.Repository repository,
com.liferay.portal.kernel.repository.model.Folder srcFolder,
com.liferay.portal.kernel.repository.model.Folder destFolder,
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 destinationFolder,
com.liferay.portal.kernel.repository.Repository fromRepository,
com.liferay.portal.kernel.repository.Repository toRepository,
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 |
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 |
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> obc)
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> obc)
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> obc) |
List<Object> |
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 |
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.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.
|
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> obc)
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> obc)
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> obc)
Returns an ordered range of all the immediate subfolders of the parent
folder.
|
List<Object> |
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.
|
List<Object> |
getFoldersAndFileEntriesAndFileShortcuts(long repositoryId,
long folderId,
int status,
boolean includeMountFolders,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<?> obc)
Returns an ordered range of all the immediate subfolders, file entries,
and file shortcuts in the parent folder.
|
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<?> obc) |
List<Object> |
getFoldersAndFileEntriesAndFileShortcuts(long repositoryId,
long folderId,
int status,
String[] mimeTypes,
boolean includeMountFolders,
int start,
int end,
com.liferay.portal.kernel.util.OrderByComparator<?> obc) |
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> obc)
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> obc)
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> obc) |
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.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> obc)
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) |
void |
getSubfolderIds(long repositoryId,
List<Long> folderIds,
long folderId) |
List<Long> |
getSubfolderIds(long repositoryId,
long folderId)
Returns all the descendant folders of the folder with the primary key.
|
List<Long> |
getSubfolderIds(long repositoryId,
long folderId,
boolean recurse)
Returns descendant folders of the folder with the primary key, optionally
limiting to one level deep.
|
String[] |
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 |
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 |
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 description,
String changeLog,
boolean majorVersion,
byte[] bytes,
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 description,
String changeLog,
boolean majorVersion,
File file,
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 description,
String changeLog,
boolean majorVersion,
InputStream is,
long size,
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 description,
String changeLog,
boolean majorVersion,
File file,
com.liferay.portal.kernel.service.ServiceContext serviceContext) |
com.liferay.portal.kernel.repository.model.FileEntry |
updateFileEntryAndCheckIn(long fileEntryId,
String sourceFileName,
String mimeType,
String title,
String description,
String changeLog,
boolean majorVersion,
InputStream is,
long size,
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. |
afterPropertiesSet, destroy, getCounterLocalService, getDLAppHelperLocalService, getDLAppLocalService, getDLAppService, getDLFolderFinder, getDLFolderLocalService, getDLFolderPersistence, getDLFolderService, getOSGiServiceIdentifier, getRepositoryLocalService, getRepositoryPersistence, getRepositoryService, getTrashEntryLocalService, getTrashEntryPersistence, getTrashEntryService, runSQL, setCounterLocalService, setDLAppHelperLocalService, setDLAppLocalService, setDLAppService, setDLFolderFinder, setDLFolderLocalService, setDLFolderPersistence, setDLFolderService, setRepositoryLocalService, setRepositoryPersistence, setRepositoryService, setTrashEntryLocalService, setTrashEntryPersistence, setTrashEntryService
@BeanReference(type=com.liferay.portal.kernel.repository.RepositoryProvider.class) protected com.liferay.portal.kernel.repository.RepositoryProvider repositoryProvider
public com.liferay.portal.kernel.repository.model.FileEntry addFileEntry(long repositoryId, long folderId, String sourceFileName, String mimeType, String title, String description, String changeLog, byte[] bytes, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
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.
repositoryId
- the primary key of the repositoryfolderId
- the primary key of the file entry's parent foldersourceFileName
- the original file's namemimeType
- the file's MIME typetitle
- the name to be assigned to the file (optionally null
)description
- the file's descriptionchangeLog
- the file's version change logbytes
- 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: com.liferay.portal.kernel.exception.PortalException
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
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.
repositoryId
- the primary key of the repositoryfolderId
- the primary key of the file entry's parent foldersourceFileName
- the original file's namemimeType
- the file's MIME typetitle
- the name to be assigned to the file (optionally null
)description
- the file's descriptionchangeLog
- the file's version change logfile
- 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: com.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.repository.model.FileEntry addFileEntry(long repositoryId, long folderId, String sourceFileName, String mimeType, String title, String description, String changeLog, InputStream is, long size, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
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.
repositoryId
- the primary key of the repositoryfolderId
- the primary key of the file entry's parent foldersourceFileName
- the original file's namemimeType
- the file's MIME typetitle
- the name to be assigned to the file (optionally null
)description
- the file's descriptionchangeLog
- the file's version change logis
- the file's data (optionally null
)size
- the file's size (optionally 0
)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: com.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.repository.model.FileShortcut addFileShortcut(long repositoryId, long folderId, long toFileEntryId, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the repositoryfolderId
- the primary key of the file shortcut's parent foldertoFileEntryId
- the primary key of the file shortcut's file entryserviceContext
- the service context to be applied. Can set the
asset category IDs, asset tag names, and expando bridge
attributes for the file entry.com.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.repository.model.Folder addFolder(long repositoryId, long parentFolderId, String name, String description, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the repositoryparentFolderId
- the primary key of the folder's parent foldername
- the folder's namedescription
- the folder's descriptionserviceContext
- 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 repositorycom.liferay.portal.kernel.exception.PortalException
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
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.
groupId
- the primary key of the groupfolderId
- the primary key of the folder where the file entry will
eventually residefolderName
- the temporary folder's namefileName
- the file's original namefile
- the file's data (optionally null
)mimeType
- the file's MIME typecom.liferay.portal.kernel.exception.PortalException
TempFileEntryUtil
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
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.
groupId
- the primary key of the groupfolderId
- the primary key of the folder where the file entry will
eventually residefolderName
- the temporary folder's namefileName
- the file's original nameinputStream
- the file's datamimeType
- the file's MIME typecom.liferay.portal.kernel.exception.PortalException
TempFileEntryUtil
public void cancelCheckOut(long fileEntryId) throws com.liferay.portal.kernel.exception.PortalException
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.
fileEntryId
- the primary key of the file entry to cancel the
checkoutcom.liferay.portal.kernel.exception.PortalException
checkInFileEntry(long, boolean, String, ServiceContext)
,
checkOutFileEntry(long, ServiceContext)
public void checkInFileEntry(long fileEntryId, boolean majorVersion, String changeLog, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
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.
fileEntryId
- the primary key of the file entry to check inmajorVersion
- whether the new file version is a major versionchangeLog
- the file's version change logserviceContext
- the service context to be appliedcom.liferay.portal.kernel.exception.PortalException
cancelCheckOut(long)
,
checkOutFileEntry(long, ServiceContext)
public void checkInFileEntry(long fileEntryId, String lockUuid, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
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.
fileEntryId
- the primary key of the file entry to check inlockUuid
- the lock's UUIDserviceContext
- the service context to be appliedcom.liferay.portal.kernel.exception.PortalException
cancelCheckOut(long)
,
checkOutFileEntry(long, String, long, ServiceContext)
public void checkOutFileEntry(long fileEntryId, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
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.
fileEntryId
- the file entry to check outserviceContext
- the service context to be appliedcom.liferay.portal.kernel.exception.PortalException
cancelCheckOut(long)
,
checkInFileEntry(long, boolean, String, ServiceContext)
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
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.
fileEntryId
- the file entry to check outowner
- 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 appliedcom.liferay.portal.kernel.exception.PortalException
cancelCheckOut(long)
,
#checkInFileEntry(long, String)
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
repositoryId
- the primary key of the repositorysourceFolderId
- the primary key of the folder to copyparentFolderId
- the primary key of the new folder's parent foldername
- the new folder's namedescription
- the new folder's descriptionserviceContext
- the service context to be appliedcom.liferay.portal.kernel.exception.PortalException
public void deleteFileEntry(long fileEntryId) throws com.liferay.portal.kernel.exception.PortalException
fileEntryId
- the primary key of the file entrycom.liferay.portal.kernel.exception.PortalException
public void deleteFileEntryByTitle(long repositoryId, long folderId, String title) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the repositoryfolderId
- the primary key of the file entry's parent foldertitle
- the file entry's titlecom.liferay.portal.kernel.exception.PortalException
public void deleteFileShortcut(long fileShortcutId) throws com.liferay.portal.kernel.exception.PortalException
fileShortcutId
- the primary key of the file shortcutcom.liferay.portal.kernel.exception.PortalException
public void deleteFileVersion(long fileEntryId, String version) throws com.liferay.portal.kernel.exception.PortalException
fileEntryId
- the primary key of the file entryversion
- the version label of the file versioncom.liferay.portal.kernel.exception.PortalException
public void deleteFolder(long folderId) throws com.liferay.portal.kernel.exception.PortalException
folderId
- the primary key of the foldercom.liferay.portal.kernel.exception.PortalException
public void deleteFolder(long repositoryId, long parentFolderId, String name) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the repositoryparentFolderId
- the primary key of the folder's parent foldername
- the folder's namecom.liferay.portal.kernel.exception.PortalException
public void deleteTempFileEntry(long groupId, long folderId, String folderName, String fileName) throws com.liferay.portal.kernel.exception.PortalException
groupId
- the primary key of the groupfolderId
- the primary key of the folder where the file entry was
eventually to residefolderName
- the temporary folder's namefileName
- the file's original namecom.liferay.portal.kernel.exception.PortalException
TempFileEntryUtil
public List<com.liferay.portal.kernel.repository.model.FileEntry> getFileEntries(long repositoryId, long folderId) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the file entry's repositoryfolderId
- the primary key of the file entry's foldercom.liferay.portal.kernel.exception.PortalException
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
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.
repositoryId
- the primary key of the file entry's repositoryfolderId
- the primary key of the file entry's folderstart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)com.liferay.portal.kernel.exception.PortalException
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> obc) throws com.liferay.portal.kernel.exception.PortalException
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.
repositoryId
- the primary key of the file entry's repositoryfolderId
- the primary key of the file entry's folderstart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)obc
- the comparator to order the file entries (optionally
null
)obc
com.liferay.portal.kernel.exception.PortalException
public List<com.liferay.portal.kernel.repository.model.FileEntry> getFileEntries(long repositoryId, long folderId, long fileEntryTypeId) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the file entry's repositoryfolderId
- the primary key of the file entry's folderfileEntryTypeId
- the primary key of the file entry typecom.liferay.portal.kernel.exception.PortalException
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
repositoryId
- the primary key of the file entry's repositoryfolderId
- the primary key of the file entry's folderfileEntryTypeId
- the primary key of the file entry typestart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)com.liferay.portal.kernel.exception.PortalException
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> obc) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the repositoryfolderId
- the primary key of the folderfileEntryTypeId
- the primary key of the file entry typestart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)obc
- the comparator to order the results by (optionally
null
)null
com.liferay.portal.kernel.exception.PortalException
public List<com.liferay.portal.kernel.repository.model.FileEntry> getFileEntries(long repositoryId, long folderId, String[] mimeTypes) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
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> obc) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
public List<Object> getFileEntriesAndFileShortcuts(long repositoryId, long folderId, int status, int start, int end) throws com.liferay.portal.kernel.exception.PortalException
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.
repositoryId
- the primary key of the repositoryfolderId
- the primary key of the folderstatus
- the workflow statusstart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)com.liferay.portal.kernel.exception.PortalException
public int getFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the repositoryfolderId
- the primary key of the folderstatus
- the workflow statuscom.liferay.portal.kernel.exception.PortalException
public int getFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status, String[] mimeTypes) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the repositoryfolderId
- the primary key of the folderstatus
- the workflow statusmimeTypes
- allowed media typescom.liferay.portal.kernel.exception.PortalException
public int getFileEntriesCount(long repositoryId, long folderId) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the file entry's repositoryfolderId
- the primary key of the file entry's foldercom.liferay.portal.kernel.exception.PortalException
public int getFileEntriesCount(long repositoryId, long folderId, long fileEntryTypeId) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the file entry's repositoryfolderId
- the primary key of the file entry's folderfileEntryTypeId
- the primary key of the file entry typecom.liferay.portal.kernel.exception.PortalException
public int getFileEntriesCount(long repositoryId, long folderId, String[] mimeTypes) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.repository.model.FileEntry getFileEntry(long fileEntryId) throws com.liferay.portal.kernel.exception.PortalException
fileEntryId
- the primary key of the file entrycom.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.repository.model.FileEntry getFileEntry(long groupId, long folderId, String title) throws com.liferay.portal.kernel.exception.PortalException
groupId
- the primary key of the file entry's groupfolderId
- the primary key of the file entry's foldertitle
- the file entry's titlecom.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.repository.model.FileEntry getFileEntryByUuidAndGroupId(String uuid, long groupId) throws com.liferay.portal.kernel.exception.PortalException
uuid
- the file entry's UUIDgroupId
- the primary key of the file entry's groupcom.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.repository.model.FileShortcut getFileShortcut(long fileShortcutId) throws com.liferay.portal.kernel.exception.PortalException
fileShortcutId
- the primary key of the file shortcutcom.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.repository.model.FileVersion getFileVersion(long fileVersionId) throws com.liferay.portal.kernel.exception.PortalException
fileVersionId
- the primary key of the file versioncom.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.repository.model.Folder getFolder(long folderId) throws com.liferay.portal.kernel.exception.PortalException
folderId
- the primary key of the foldercom.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.repository.model.Folder getFolder(long repositoryId, long parentFolderId, String name) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the folder's repositoryparentFolderId
- the primary key of the folder's parent foldername
- the folder's namecom.liferay.portal.kernel.exception.PortalException
public List<com.liferay.portal.kernel.repository.model.Folder> getFolders(long repositoryId, long parentFolderId) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the folder's repositoryparentFolderId
- the primary key of the folder's parent foldercom.liferay.portal.kernel.exception.PortalException
public List<com.liferay.portal.kernel.repository.model.Folder> getFolders(long repositoryId, long parentFolderId, boolean includeMountFolders) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the folder's repositoryparentFolderId
- the primary key of the folder's parent folderincludeMountFolders
- whether to include mount folders for
third-party repositoriescom.liferay.portal.kernel.exception.PortalException
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
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.
repositoryId
- the primary key of the folder's repositoryparentFolderId
- the primary key of the folder's parent folderincludeMountFolders
- whether to include mount folders for
third-party repositoriesstart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)com.liferay.portal.kernel.exception.PortalException
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> obc) throws com.liferay.portal.kernel.exception.PortalException
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.
repositoryId
- the primary key of the folder's repositoryparentFolderId
- the primary key of the folder's parent folderincludeMountFolders
- whether to include mount folders for
third-party repositoriesstart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)obc
- the comparator to order the folders (optionally
null
)obc
com.liferay.portal.kernel.exception.PortalException
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> obc) throws com.liferay.portal.kernel.exception.PortalException
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.
repositoryId
- the primary key of the folder's repositoryparentFolderId
- the primary key of the folder's parent folderstatus
- the workflow statusincludeMountFolders
- whether to include mount folders for
third-party repositoriesstart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)obc
- the comparator to order the folders (optionally
null
)obc
com.liferay.portal.kernel.exception.PortalException
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
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.
repositoryId
- the primary key of the folder's repositoryparentFolderId
- the primary key of the folder's parent folderstart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)com.liferay.portal.kernel.exception.PortalException
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> obc) throws com.liferay.portal.kernel.exception.PortalException
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.
repositoryId
- the primary key of the folder's repositoryparentFolderId
- the primary key of the folder's parent folderstart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)obc
- the comparator to order the folders (optionally
null
)obc
com.liferay.portal.kernel.exception.PortalException
public List<Object> getFoldersAndFileEntriesAndFileShortcuts(long repositoryId, long folderId, int status, boolean includeMountFolders, int start, int end) throws com.liferay.portal.kernel.exception.PortalException
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.
repositoryId
- the primary key of the repositoryfolderId
- the primary key of the parent folderstatus
- the workflow statusincludeMountFolders
- whether to include mount folders for
third-party repositoriesstart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)com.liferay.portal.kernel.exception.PortalException
public List<Object> getFoldersAndFileEntriesAndFileShortcuts(long repositoryId, long folderId, int status, boolean includeMountFolders, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<?> obc) throws com.liferay.portal.kernel.exception.PortalException
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.
repositoryId
- the primary key of the repositoryfolderId
- the primary key of the parent folderstatus
- the workflow statusincludeMountFolders
- whether to include mount folders for
third-party repositoriesstart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)obc
- the comparator to order the results (optionally
null
)obc
com.liferay.portal.kernel.exception.PortalException
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<?> obc) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
public List<Object> getFoldersAndFileEntriesAndFileShortcuts(long repositoryId, long folderId, int status, String[] mimeTypes, boolean includeMountFolders, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<?> obc) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
public int getFoldersAndFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status, boolean includeMountFolders) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the repositoryfolderId
- the primary key of the parent folderstatus
- the workflow statusincludeMountFolders
- whether to include mount folders for
third-party repositoriescom.liferay.portal.kernel.exception.PortalException
public int getFoldersAndFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status, String[] mimeTypes, boolean includeMountFolders) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
public int getFoldersAndFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status, String[] mimeTypes, boolean includeMountFolders, boolean includeOwner) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
public int getFoldersCount(long repositoryId, long parentFolderId) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the folder's repositoryparentFolderId
- the primary key of the folder's parent foldercom.liferay.portal.kernel.exception.PortalException
public int getFoldersCount(long repositoryId, long parentFolderId, boolean includeMountFolders) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the folder's repositoryparentFolderId
- the primary key of the folder's parent folderincludeMountFolders
- whether to include mount folders for
third-party repositoriescom.liferay.portal.kernel.exception.PortalException
public int getFoldersCount(long repositoryId, long parentFolderId, int status, boolean includeMountFolders) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the folder's repositoryparentFolderId
- the primary key of the folder's parent folderstatus
- the workflow statusincludeMountFolders
- whether to include mount folders for
third-party repositoriescom.liferay.portal.kernel.exception.PortalException
public int getFoldersFileEntriesCount(long repositoryId, List<Long> folderIds, int status) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the repositoryfolderIds
- the primary keys of folders from which to count
immediate subfolders and file entriesstatus
- the workflow statuscom.liferay.portal.kernel.exception.PortalException
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
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.
groupId
- the primary key of the groupuserId
- the primary key of the user who created the file
(optionally 0
)start
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)com.liferay.portal.kernel.exception.PortalException
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> obc) throws com.liferay.portal.kernel.exception.PortalException
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.
groupId
- the primary key of the groupuserId
- the primary key of the user who created the file
(optionally 0
)start
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)obc
- the comparator to order the file entries (optionally
null
)obc
com.liferay.portal.kernel.exception.PortalException
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
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.
groupId
- the primary key of the groupuserId
- the primary key of the user who created the file
(optionally 0
)rootFolderId
- the primary key of the root folder to begin the
searchstart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)com.liferay.portal.kernel.exception.PortalException
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> obc) throws com.liferay.portal.kernel.exception.PortalException
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.
groupId
- the primary key of the groupuserId
- the primary key of the user who created the file
(optionally 0
)rootFolderId
- the primary key of the root folder to begin the
searchstart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)obc
- the comparator to order the file entries (optionally
null
)obc
com.liferay.portal.kernel.exception.PortalException
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> obc) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
public int getGroupFileEntriesCount(long groupId, long userId) throws com.liferay.portal.kernel.exception.PortalException
groupId
- the primary key of the groupuserId
- the primary key of the user who created the file
(optionally 0
)com.liferay.portal.kernel.exception.PortalException
public int getGroupFileEntriesCount(long groupId, long userId, long rootFolderId) throws com.liferay.portal.kernel.exception.PortalException
groupId
- the primary key of the groupuserId
- the primary key of the user who created the file
(optionally 0
)rootFolderId
- the primary key of the root folder to begin the
searchcom.liferay.portal.kernel.exception.PortalException
public int getGroupFileEntriesCount(long groupId, long userId, long rootFolderId, String[] mimeTypes, int status) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
public List<com.liferay.portal.kernel.repository.model.Folder> getMountFolders(long repositoryId, long parentFolderId) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the folder's repositoryparentFolderId
- the primary key of the folder's parent foldercom.liferay.portal.kernel.exception.PortalException
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
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.
repositoryId
- the primary key of the repositoryparentFolderId
- the primary key of the parent folderstart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)com.liferay.portal.kernel.exception.PortalException
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> obc) throws com.liferay.portal.kernel.exception.PortalException
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.
repositoryId
- the primary key of the folder's repositoryparentFolderId
- the primary key of the folder's parent folderstart
- the lower bound of the range of resultsend
- the upper bound of the range of results (not inclusive)obc
- the comparator to order the folders (optionally
null
)obc
com.liferay.portal.kernel.exception.PortalException
public int getMountFoldersCount(long repositoryId, long parentFolderId) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the repositoryparentFolderId
- the primary key of the parent foldercom.liferay.portal.kernel.exception.PortalException
public void getSubfolderIds(long repositoryId, List<Long> folderIds, long folderId) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
public List<Long> getSubfolderIds(long repositoryId, long folderId) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the repositoryfolderId
- the primary key of the foldercom.liferay.portal.kernel.exception.PortalException
public List<Long> getSubfolderIds(long repositoryId, long folderId, boolean recurse) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the repositoryfolderId
- the primary key of the folderrecurse
- whether to recurse through each subfoldercom.liferay.portal.kernel.exception.PortalException
public String[] getTempFileNames(long groupId, long folderId, String folderName) throws com.liferay.portal.kernel.exception.PortalException
groupId
- the primary key of the groupfolderId
- the primary key of the folder where the file entry will
eventually residefolderName
- the temporary folder's namecom.liferay.portal.kernel.exception.PortalException
addTempFileEntry(long, long, String, String, File, String)
,
TempFileEntryUtil
public com.liferay.portal.kernel.lock.Lock lockFolder(long repositoryId, long folderId) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the repositoryfolderId
- the primary key of the foldercom.liferay.portal.kernel.exception.PortalException
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
repositoryId
- the primary key of the repositoryfolderId
- the primary key of the folderowner
- the owner string for the checkout (optionally
null
)inheritable
- whether the lock must propagate to descendantsexpirationTime
- the time in milliseconds before the lock expires.
If the value is 0
, the default expiration time will
be used from portal.properties
.com.liferay.portal.kernel.exception.PortalException
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
fileEntryId
- the primary key of the file entrynewFolderId
- the primary key of the new folderserviceContext
- the service context to be appliedcom.liferay.portal.kernel.exception.PortalException
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
folderId
- the primary key of the folderparentFolderId
- the primary key of the new parent folderserviceContext
- the service context to be appliedcom.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.lock.Lock refreshFileEntryLock(String lockUuid, long companyId, long expirationTime) throws com.liferay.portal.kernel.exception.PortalException
lockUuid
- the lock's UUIDcompanyId
- the primary key of the file entry's companyexpirationTime
- the time in milliseconds before the lock expires.
If the value is 0
, the default expiration time will
be used from portal.properties
.com.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.lock.Lock refreshFolderLock(String lockUuid, long companyId, long expirationTime) throws com.liferay.portal.kernel.exception.PortalException
lockUuid
- the lock's UUIDcompanyId
- the primary key of the file entry's companyexpirationTime
- the time in milliseconds before the lock expires.
If the value is 0
, the default expiration time will
be used from portal.properties
.com.liferay.portal.kernel.exception.PortalException
public void revertFileEntry(long fileEntryId, String version, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
fileEntryId
- the primary key of the file entryversion
- the version to revert back toserviceContext
- the service context to be appliedcom.liferay.portal.kernel.exception.PortalException
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
com.liferay.portal.kernel.exception.PortalException
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
com.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.search.Hits search(long repositoryId, com.liferay.portal.kernel.search.SearchContext searchContext) throws com.liferay.portal.kernel.search.SearchException
com.liferay.portal.kernel.search.SearchException
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
com.liferay.portal.kernel.search.SearchException
public void subscribeFileEntryType(long groupId, long fileEntryTypeId) throws com.liferay.portal.kernel.exception.PortalException
groupId
- the primary key of the file entry type's groupfileEntryTypeId
- the primary key of the file entry typecom.liferay.portal.kernel.exception.PortalException
public void subscribeFolder(long groupId, long folderId) throws com.liferay.portal.kernel.exception.PortalException
groupId
- the primary key of the folder's groupfolderId
- the primary key of the foldercom.liferay.portal.kernel.exception.PortalException
public void unlockFolder(long repositoryId, long folderId, String lockUuid) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the repositoryfolderId
- the primary key of the folderlockUuid
- the lock's UUIDcom.liferay.portal.kernel.exception.PortalException
public void unlockFolder(long repositoryId, long parentFolderId, String name, String lockUuid) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the repositoryparentFolderId
- the primary key of the parent foldername
- the folder's namelockUuid
- the lock's UUIDcom.liferay.portal.kernel.exception.PortalException
public void unsubscribeFileEntryType(long groupId, long fileEntryTypeId) throws com.liferay.portal.kernel.exception.PortalException
groupId
- the primary key of the file entry type's groupfileEntryTypeId
- the primary key of the file entry typecom.liferay.portal.kernel.exception.PortalException
public void unsubscribeFolder(long groupId, long folderId) throws com.liferay.portal.kernel.exception.PortalException
groupId
- the primary key of the folder's groupfolderId
- the primary key of the foldercom.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.repository.model.FileEntry updateFileEntry(long fileEntryId, String sourceFileName, String mimeType, String title, String description, String changeLog, boolean majorVersion, byte[] bytes, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
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.
fileEntryId
- the primary key of the file entrysourceFileName
- 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 descriptionchangeLog
- the file's version change log (optionally
null
)majorVersion
- whether the new file version is a major versionbytes
- 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: com.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.repository.model.FileEntry updateFileEntry(long fileEntryId, String sourceFileName, String mimeType, String title, String description, String changeLog, boolean majorVersion, File file, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
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.
fileEntryId
- the primary key of the file entrysourceFileName
- 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 descriptionchangeLog
- the file's version change log (optionally
null
)majorVersion
- whether the new file version is a major versionfile
- 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: com.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.repository.model.FileEntry updateFileEntry(long fileEntryId, String sourceFileName, String mimeType, String title, String description, String changeLog, boolean majorVersion, InputStream is, long size, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
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.
fileEntryId
- the primary key of the file entrysourceFileName
- 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 descriptionchangeLog
- the file's version change log (optionally
null
)majorVersion
- whether the new file version is a major versionis
- the file's data (optionally null
)size
- the file's size (optionally 0
)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: com.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.repository.model.FileEntry updateFileEntryAndCheckIn(long fileEntryId, String sourceFileName, String mimeType, String title, String description, String changeLog, boolean majorVersion, File file, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
public com.liferay.portal.kernel.repository.model.FileEntry updateFileEntryAndCheckIn(long fileEntryId, String sourceFileName, String mimeType, String title, String description, String changeLog, boolean majorVersion, InputStream is, long size, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
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
fileShortcutId
- the primary key of the file shortcutfolderId
- the primary key of the file shortcut's parent foldertoFileEntryId
- the primary key of the file shortcut's file entryserviceContext
- the service context to be applied. Can set the
asset category IDs, asset tag names, and expando bridge
attributes for the file entry.com.liferay.portal.kernel.exception.PortalException
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
folderId
- the primary key of the foldername
- the folder's new namedescription
- the folder's new descriptionserviceContext
- the service context to be applied. In a Liferay
repository, it may include: workflowDefinition
appended by the
fileEntryTypeId
(optionally 0
).com.liferay.portal.kernel.exception.PortalException
public boolean verifyFileEntryCheckOut(long repositoryId, long fileEntryId, String lockUuid) throws com.liferay.portal.kernel.exception.PortalException
true
if the file entry is checked out. This method
is primarily used by WebDAV.repositoryId
- the primary key for the repositoryfileEntryId
- the primary key for the file entrylockUuid
- the lock's UUIDtrue
if the file entry is checked out;
false
otherwisecom.liferay.portal.kernel.exception.PortalException
public boolean verifyFileEntryLock(long repositoryId, long fileEntryId, String lockUuid) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
public boolean verifyInheritableLock(long repositoryId, long folderId, String lockUuid) throws com.liferay.portal.kernel.exception.PortalException
true
if the inheritable lock exists. This method is
primarily used by WebDAV.repositoryId
- the primary key for the repositoryfolderId
- the primary key for the folderlockUuid
- the lock's UUIDtrue
if the inheritable lock exists;
false
otherwisecom.liferay.portal.kernel.exception.PortalException
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 newFolderId, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected com.liferay.portal.kernel.repository.model.Folder copyFolder(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
com.liferay.portal.kernel.exception.PortalException
protected void copyFolder(com.liferay.portal.kernel.repository.Repository repository, com.liferay.portal.kernel.repository.model.Folder srcFolder, com.liferay.portal.kernel.repository.model.Folder destFolder, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void copyFolderDependencies(com.liferay.portal.kernel.repository.model.Folder sourceFolder, com.liferay.portal.kernel.repository.model.Folder destinationFolder, 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
com.liferay.portal.kernel.exception.PortalException
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
com.liferay.portal.kernel.exception.PortalException
protected com.liferay.portal.kernel.repository.model.FileEntry fetchFileEntryByUuidAndRepositoryId(String uuid, long repositoryId) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected com.liferay.portal.kernel.repository.Repository getFolderRepository(long folderId, long groupId) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected com.liferay.portal.kernel.repository.Repository getRepository(long repositoryId) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
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
com.liferay.portal.kernel.exception.PortalException
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
com.liferay.portal.kernel.exception.PortalException