public class DLAppLocalServiceImpl extends DLAppLocalServiceBaseImpl
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 RepositoryLocalServiceUtil
.
DLAppServiceImpl
Modifier and Type | Field and Description |
---|---|
protected com.liferay.portal.kernel.repository.RepositoryProvider |
repositoryProvider |
counterLocalService, dlAppLocalService
Constructor and Description |
---|
DLAppLocalServiceImpl() |
Modifier and Type | Method and Description |
---|---|
com.liferay.portal.kernel.repository.model.FileEntry |
addFileEntry(long userId,
long repositoryId,
long folderId,
String sourceFileName,
String mimeType,
String title,
String description,
String changeLog,
File file,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
Deprecated.
As of Cavanaugh (7.4.x), replaced by
#addFileEntry(String, long, long, long, String, String,
String, String, String, File, Date, Date, ServiceContext) |
com.liferay.portal.kernel.repository.model.FileEntry |
addFileEntry(String externalReferenceCode,
long userId,
long repositoryId,
long folderId,
String sourceFileName,
String mimeType,
byte[] bytes,
Date expirationDate,
Date reviewDate,
com.liferay.portal.kernel.service.ServiceContext serviceContext) |
com.liferay.portal.kernel.repository.model.FileEntry |
addFileEntry(String externalReferenceCode,
long userId,
long repositoryId,
long folderId,
String sourceFileName,
String mimeType,
String title,
String urlTitle,
String description,
String changeLog,
byte[] bytes,
Date expirationDate,
Date reviewDate,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
Adds a file entry and associated metadata based on a byte array.
|
com.liferay.portal.kernel.repository.model.FileEntry |
addFileEntry(String externalReferenceCode,
long userId,
long repositoryId,
long folderId,
String sourceFileName,
String mimeType,
String title,
String urlTitle,
String description,
String changeLog,
File file,
Date expirationDate,
Date reviewDate,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
Adds a file entry and associated metadata based on a
File object. |
com.liferay.portal.kernel.repository.model.FileEntry |
addFileEntry(String externalReferenceCode,
long userId,
long repositoryId,
long folderId,
String sourceFileName,
String mimeType,
String title,
String urlTitle,
String description,
String changeLog,
InputStream inputStream,
long size,
Date expirationDate,
Date reviewDate,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
Adds a file entry and associated metadata based on an
InputStream
object. |
com.liferay.portal.kernel.repository.model.FileShortcut |
addFileShortcut(long userId,
long repositoryId,
long folderId,
long toFileEntryId,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
Adds the file shortcut to the existing file entry.
|
com.liferay.portal.kernel.repository.model.Folder |
addFolder(long userId,
long repositoryId,
long parentFolderId,
String name,
String description,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
Adds a folder.
|
protected com.liferay.portal.kernel.repository.model.FileEntry |
copyFileEntry(long userId,
com.liferay.portal.kernel.repository.LocalRepository toLocalRepository,
com.liferay.portal.kernel.repository.model.FileEntry fileEntry,
long newFolderId,
com.liferay.portal.kernel.service.ServiceContext serviceContext) |
protected com.liferay.portal.kernel.repository.model.Folder |
copyFolder(long userId,
long folderId,
long parentFolderId,
com.liferay.portal.kernel.repository.LocalRepository fromLocalRepository,
com.liferay.portal.kernel.repository.LocalRepository toLocalRepository,
com.liferay.portal.kernel.service.ServiceContext serviceContext) |
protected void |
copyFolderDependencies(long userId,
com.liferay.portal.kernel.repository.model.Folder sourceFolder,
com.liferay.portal.kernel.repository.model.Folder destinationFolder,
com.liferay.portal.kernel.repository.LocalRepository fromLocalRepository,
com.liferay.portal.kernel.repository.LocalRepository toLocalRepository,
com.liferay.portal.kernel.service.ServiceContext serviceContext) |
void |
deleteAll(long repositoryId)
Delete all data associated to the given repository.
|
void |
deleteAllRepositories(long groupId) |
void |
deleteFileEntry(long fileEntryId)
Deletes the file entry.
|
protected void |
deleteFileEntry(long oldFileEntryId,
long newFileEntryId,
com.liferay.portal.kernel.repository.LocalRepository fromLocalRepository,
com.liferay.portal.kernel.repository.LocalRepository toLocalRepository) |
void |
deleteFileShortcut(com.liferay.portal.kernel.repository.model.FileShortcut fileShortcut)
Deletes the file shortcut.
|
void |
deleteFileShortcut(long fileShortcutId)
Deletes the file shortcut.
|
void |
deleteFileShortcuts(long toFileEntryId)
Deletes all file shortcuts associated to the file entry.
|
void |
deleteFileVersion(long fileVersionId)
Deletes the file version.
|
void |
deleteFolder(long folderId)
Deletes the folder and all of its subfolders and file entries.
|
protected void |
deleteRepository(com.liferay.portal.kernel.repository.LocalRepository localRepository) |
com.liferay.portal.kernel.repository.model.FileEntry |
fetchFileEntryByExternalReferenceCode(long groupId,
String externalReferenceCode)
Returns the document library file entry with the matching external
reference code and group.
|
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(long groupId,
String externalReferenceCode)
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.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.LocalRepository |
getFolderLocalRepository(long folderId,
long groupId) |
protected com.liferay.portal.kernel.repository.LocalRepository |
getLocalRepository(long repositoryId) |
com.liferay.portal.kernel.repository.model.Folder |
getMountFolder(long repositoryId)
Returns the mount folder of the repository with the primary key.
|
protected com.liferay.portal.kernel.repository.model.FileEntry |
moveFileEntry(long userId,
long fileEntryId,
long newFolderId,
com.liferay.portal.kernel.repository.LocalRepository fromLocalRepository,
com.liferay.portal.kernel.repository.LocalRepository toLocalRepository,
com.liferay.portal.kernel.service.ServiceContext serviceContext) |
com.liferay.portal.kernel.repository.model.FileEntry |
moveFileEntry(long userId,
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 userId,
long folderId,
long parentFolderId,
com.liferay.portal.kernel.repository.LocalRepository fromLocalRepository,
com.liferay.portal.kernel.repository.LocalRepository toLocalRepository,
com.liferay.portal.kernel.service.ServiceContext serviceContext) |
com.liferay.portal.kernel.repository.model.Folder |
moveFolder(long userId,
long folderId,
long parentFolderId,
com.liferay.portal.kernel.service.ServiceContext serviceContext) |
void |
subscribeFileEntryType(long userId,
long groupId,
long fileEntryTypeId)
Subscribe the user to changes in documents of the file entry type.
|
void |
subscribeFolder(long userId,
long groupId,
long folderId)
Subscribe the user to document changes in the folder.
|
void |
unsubscribeFileEntryType(long userId,
long groupId,
long fileEntryTypeId)
Unsubscribe the user from changes in documents of the file entry type.
|
void |
unsubscribeFolder(long userId,
long groupId,
long folderId)
Unsubscribe the user from document changes in the folder.
|
void |
updateAsset(long userId,
com.liferay.portal.kernel.repository.model.FileEntry fileEntry,
com.liferay.portal.kernel.repository.model.FileVersion fileVersion,
long[] assetCategoryIds,
String[] assetTagNames,
long[] assetLinkEntryIds)
Updates the file entry's asset replacing its asset categories, tags, and
links.
|
com.liferay.portal.kernel.repository.model.FileEntry |
updateFileEntry(long userId,
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 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 userId,
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 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 userId,
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 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.FileShortcut |
updateFileShortcut(long userId,
long fileShortcutId,
long folderId,
long toFileEntryId,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
Updates a file shortcut to the existing file entry.
|
void |
updateFileShortcuts(long oldToFileEntryId,
long newToFileEntryId)
Updates all file shortcuts to the existing file entry to the new file
entry.
|
com.liferay.portal.kernel.repository.model.Folder |
updateFolder(long folderId,
long parentFolderId,
String name,
String description,
com.liferay.portal.kernel.service.ServiceContext serviceContext)
Updates the folder.
|
afterPropertiesSet, destroy, getCounterLocalService, getDLAppLocalService, getOSGiServiceIdentifier, runSQL, setCounterLocalService, setDLAppLocalService
@BeanReference(type=com.liferay.portal.kernel.repository.RepositoryProvider.class) protected com.liferay.portal.kernel.repository.RepositoryProvider repositoryProvider
@Deprecated public com.liferay.portal.kernel.repository.model.FileEntry addFileEntry(long userId, 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
#addFileEntry(String, long, long, long, String, String,
String, String, String, File, Date, Date, ServiceContext)
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.
userId
- the primary key of the file entry's creator/ownerrepositoryId
- 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
- if a portal exception occurredpublic com.liferay.portal.kernel.repository.model.FileEntry addFileEntry(String externalReferenceCode, long userId, long repositoryId, long folderId, String sourceFileName, String mimeType, byte[] bytes, Date expirationDate, Date reviewDate, 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 addFileEntry(String externalReferenceCode, long userId, long repositoryId, long folderId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, byte[] bytes, Date expirationDate, Date reviewDate, 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.
externalReferenceCode
- the file entry's external reference codeuserId
- the primary key of the file entry's creator/ownerrepositoryId
- the primary key of the file entry's 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
)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: com.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic com.liferay.portal.kernel.repository.model.FileEntry addFileEntry(String externalReferenceCode, long userId, long repositoryId, long folderId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, File file, Date expirationDate, Date reviewDate, 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.
externalReferenceCode
- the file entry's external reference codeuserId
- the primary key of the file entry's creator/ownerrepositoryId
- 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
)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: com.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic com.liferay.portal.kernel.repository.model.FileEntry addFileEntry(String externalReferenceCode, long userId, long repositoryId, long folderId, String sourceFileName, String mimeType, String title, String urlTitle, String description, String changeLog, InputStream inputStream, long size, Date expirationDate, Date reviewDate, 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.
externalReferenceCode
- the file entry's external reference codeuserId
- the primary key of the file entry's creator/ownerrepositoryId
- 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 loginputStream
- the file's data (optionally null
)size
- the file's size (optionally 0
)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: com.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic com.liferay.portal.kernel.repository.model.FileShortcut addFileShortcut(long userId, long repositoryId, long folderId, long toFileEntryId, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
userId
- the primary key of the file shortcut's creator/ownerrepositoryId
- the primary key of the repositoryfolderId
- the primary key of the file shortcut's parent foldertoFileEntryId
- the primary key of the file entry to point toserviceContext
- 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
- if a portal exception occurredpublic com.liferay.portal.kernel.repository.model.Folder addFolder(long userId, long repositoryId, long parentFolderId, String name, String description, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
userId
- the primary key of the folder's creator/ownerrepositoryId
- 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 mountPoint which is a boolean
specifying whether the folder is a facade for mounting a
third-party repositorycom.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic void deleteAll(long repositoryId) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the data's repositorycom.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic void deleteAllRepositories(long groupId) throws com.liferay.portal.kernel.exception.PortalException
com.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
- if a portal exception occurredpublic void deleteFileShortcut(com.liferay.portal.kernel.repository.model.FileShortcut fileShortcut) throws com.liferay.portal.kernel.exception.PortalException
fileShortcut
- the file shortcutcom.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic void deleteFileShortcut(long fileShortcutId) throws com.liferay.portal.kernel.exception.PortalException
fileShortcutId
- the primary key of the file shortcutcom.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic void deleteFileShortcuts(long toFileEntryId) throws com.liferay.portal.kernel.exception.PortalException
toFileEntryId
- the primary key of the associated file entrycom.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic void deleteFileVersion(long fileVersionId) throws com.liferay.portal.kernel.exception.PortalException
fileVersionId
- the primary key of the file versioncom.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic void deleteFolder(long folderId) throws com.liferay.portal.kernel.exception.PortalException
folderId
- the primary key of the foldercom.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic com.liferay.portal.kernel.repository.model.FileEntry fetchFileEntryByExternalReferenceCode(long groupId, String externalReferenceCode) throws com.liferay.portal.kernel.exception.PortalException
groupId
- the primary key of the file entry's groupexternalReferenceCode
- the file entry's external reference codenull
if
a matching document library file entry could not be foundcom.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
- if a portal exception occurredpublic 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
- if a portal exception occurredpublic com.liferay.portal.kernel.repository.model.FileEntry getFileEntryByExternalReferenceCode(long groupId, String externalReferenceCode) throws com.liferay.portal.kernel.exception.PortalException
groupId
- the primary key of the file entry's groupexternalReferenceCode
- the file entry's external reference codecom.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic com.liferay.portal.kernel.repository.model.FileEntry getFileEntryByFileName(long groupId, long folderId, String fileName) 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 folderfileName
- the file entry's file namecom.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic 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
- if a portal exception occurredpublic 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
- if a portal exception occurredpublic 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
- if a portal exception occurredpublic 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
- if a portal exception occurredpublic 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
- if a portal exception occurredpublic com.liferay.portal.kernel.repository.model.Folder getMountFolder(long repositoryId) throws com.liferay.portal.kernel.exception.PortalException
repositoryId
- the primary key of the repositorycom.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic com.liferay.portal.kernel.repository.model.FileEntry moveFileEntry(long userId, long fileEntryId, long newFolderId, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
userId
- the primary key of the userfileEntryId
- 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
- if a portal exception occurredpublic com.liferay.portal.kernel.repository.model.Folder moveFolder(long userId, long folderId, long parentFolderId, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
public void subscribeFileEntryType(long userId, long groupId, long fileEntryTypeId) throws com.liferay.portal.kernel.exception.PortalException
userId
- the primary key of the usergroupId
- the primary key of the file entry type's groupfileEntryTypeId
- the primary key of the file entry typecom.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic void subscribeFolder(long userId, long groupId, long folderId) throws com.liferay.portal.kernel.exception.PortalException
userId
- the primary key of the usergroupId
- the primary key of the folder's groupfolderId
- the primary key of the foldercom.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic void unsubscribeFileEntryType(long userId, long groupId, long fileEntryTypeId) throws com.liferay.portal.kernel.exception.PortalException
userId
- the primary key of the usergroupId
- the primary key of the file entry type's groupfileEntryTypeId
- the primary key of the file entry typecom.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic void unsubscribeFolder(long userId, long groupId, long folderId) throws com.liferay.portal.kernel.exception.PortalException
userId
- the primary key of the usergroupId
- the primary key of the folder's groupfolderId
- the primary key of the foldercom.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic void updateAsset(long userId, com.liferay.portal.kernel.repository.model.FileEntry fileEntry, com.liferay.portal.kernel.repository.model.FileVersion fileVersion, long[] assetCategoryIds, String[] assetTagNames, long[] assetLinkEntryIds) throws com.liferay.portal.kernel.exception.PortalException
userId
- the primary key of the userfileEntry
- the file entry to updatefileVersion
- the file version to updateassetCategoryIds
- the primary keys of the new asset categoriesassetTagNames
- the new asset tag namesassetLinkEntryIds
- the primary keys of the new asset link entriescom.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic com.liferay.portal.kernel.repository.model.FileEntry updateFileEntry(long userId, 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 expirationDate, Date reviewDate, 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.
userId
- the primary key of the userfileEntryId
- 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
)dlVersionNumberIncrease
- the kind of version number increase to
apply for these changes.bytes
- the file's data (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: com.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic com.liferay.portal.kernel.repository.model.FileEntry updateFileEntry(long userId, 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 expirationDate, Date reviewDate, 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.
userId
- the primary key of the userfileEntryId
- 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
)dlVersionNumberIncrease
- the kind of version number increase to
apply for these changes.file
- the file's data (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: com.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic com.liferay.portal.kernel.repository.model.FileEntry updateFileEntry(long userId, 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 expirationDate, Date reviewDate, 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.
userId
- the primary key of the userfileEntryId
- 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
)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
)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: com.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic com.liferay.portal.kernel.repository.model.FileShortcut updateFileShortcut(long userId, long fileShortcutId, long folderId, long toFileEntryId, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
userId
- the primary key of the file shortcut's creator/ownerfileShortcutId
- 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
- if a portal exception occurredpublic void updateFileShortcuts(long oldToFileEntryId, long newToFileEntryId) throws com.liferay.portal.kernel.exception.PortalException
oldToFileEntryId
- the primary key of the old file entry pointed tonewToFileEntryId
- the primary key of the new file entry to point
tocom.liferay.portal.kernel.exception.PortalException
- if a portal exception occurredpublic com.liferay.portal.kernel.repository.model.Folder updateFolder(long folderId, long parentFolderId, String name, String description, 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 folder's new parent 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
- if a portal exception occurredprotected com.liferay.portal.kernel.repository.model.FileEntry copyFileEntry(long userId, com.liferay.portal.kernel.repository.LocalRepository toLocalRepository, 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 userId, long folderId, long parentFolderId, com.liferay.portal.kernel.repository.LocalRepository fromLocalRepository, com.liferay.portal.kernel.repository.LocalRepository toLocalRepository, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void copyFolderDependencies(long userId, com.liferay.portal.kernel.repository.model.Folder sourceFolder, com.liferay.portal.kernel.repository.model.Folder destinationFolder, com.liferay.portal.kernel.repository.LocalRepository fromLocalRepository, com.liferay.portal.kernel.repository.LocalRepository toLocalRepository, 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.LocalRepository fromLocalRepository, com.liferay.portal.kernel.repository.LocalRepository toLocalRepository) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected void deleteRepository(com.liferay.portal.kernel.repository.LocalRepository localRepository) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected com.liferay.portal.kernel.repository.LocalRepository getFolderLocalRepository(long folderId, long groupId) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException
protected com.liferay.portal.kernel.repository.LocalRepository getLocalRepository(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 userId, long fileEntryId, long newFolderId, com.liferay.portal.kernel.repository.LocalRepository fromLocalRepository, com.liferay.portal.kernel.repository.LocalRepository toLocalRepository, 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 userId, long folderId, long parentFolderId, com.liferay.portal.kernel.repository.LocalRepository fromLocalRepository, com.liferay.portal.kernel.repository.LocalRepository toLocalRepository, com.liferay.portal.kernel.service.ServiceContext serviceContext) throws com.liferay.portal.kernel.exception.PortalException
com.liferay.portal.kernel.exception.PortalException