@ProviderType
public class DLAppLocalServiceUtil
extends Object
DLAppLocalServiceImpl
and is the
primary access point for service operations in application layer code running
on the local server. Methods of this service will not have security checks
based on the propagated JAAS credentials because this service can only be
accessed from within the same VM.DLAppLocalService
,
DLAppLocalServiceBaseImpl
,
DLAppLocalServiceImpl
Constructor and Description |
---|
DLAppLocalServiceUtil() |
Modifier and Type | Method and Description |
---|---|
static FileEntry |
addFileEntry(long userId,
long repositoryId,
long folderId,
String sourceFileName,
String mimeType,
byte[] bytes,
ServiceContext serviceContext) |
static FileEntry |
addFileEntry(long userId,
long repositoryId,
long folderId,
String sourceFileName,
String mimeType,
String title,
String description,
String changeLog,
byte[] bytes,
ServiceContext serviceContext)
Adds a file entry and associated metadata based on a byte array.
|
static FileEntry |
addFileEntry(long userId,
long repositoryId,
long folderId,
String sourceFileName,
String mimeType,
String title,
String description,
String changeLog,
File file,
ServiceContext serviceContext)
Adds a file entry and associated metadata based on a
File object. |
static FileEntry |
addFileEntry(long userId,
long repositoryId,
long folderId,
String sourceFileName,
String mimeType,
String title,
String description,
String changeLog,
InputStream is,
long size,
ServiceContext serviceContext)
Adds a file entry and associated metadata based on an
InputStream
object. |
static DLFileRank |
addFileRank(long repositoryId,
long companyId,
long userId,
long fileEntryId,
ServiceContext serviceContext)
Adds the file rank to the existing file entry.
|
static FileShortcut |
addFileShortcut(long userId,
long repositoryId,
long folderId,
long toFileEntryId,
ServiceContext serviceContext)
Adds the file shortcut to the existing file entry.
|
static Folder |
addFolder(long userId,
long repositoryId,
long parentFolderId,
String name,
String description,
ServiceContext serviceContext)
Adds a folder.
|
static void |
deleteAll(long repositoryId)
Delete all data associated to the given repository.
|
static void |
deleteAllRepositories(long groupId) |
static void |
deleteFileEntry(long fileEntryId)
Deletes the file entry.
|
static void |
deleteFileRanksByFileEntryId(long fileEntryId)
Deletes the file ranks associated to a given file entry.
|
static void |
deleteFileRanksByUserId(long userId)
Deletes the file ranks associated to a given user.
|
static void |
deleteFileShortcut(FileShortcut fileShortcut)
Deletes the file shortcut.
|
static void |
deleteFileShortcut(long fileShortcutId)
Deletes the file shortcut.
|
static void |
deleteFileShortcuts(long toFileEntryId)
Deletes all file shortcuts associated to the file entry.
|
static void |
deleteFolder(long folderId)
Deletes the folder and all of its subfolders and file entries.
|
static FileEntry |
getFileEntry(long fileEntryId)
Returns the file entry with the primary key.
|
static FileEntry |
getFileEntry(long groupId,
long folderId,
String title)
Returns the file entry with the title in the folder.
|
static FileEntry |
getFileEntryByUuidAndGroupId(String uuid,
long groupId)
Returns the file entry with the UUID and group.
|
static List<DLFileRank> |
getFileRanks(long repositoryId,
long userId)
Returns the file ranks from the user.
|
static FileShortcut |
getFileShortcut(long fileShortcutId)
Returns the file shortcut with the primary key.
|
static FileVersion |
getFileVersion(long fileVersionId)
Returns the file version with the primary key.
|
static Folder |
getFolder(long folderId)
Returns the folder with the primary key.
|
static Folder |
getFolder(long repositoryId,
long parentFolderId,
String name)
Returns the folder with the name in the parent folder.
|
static Folder |
getMountFolder(long repositoryId)
Returns the mount folder of the repository with the primary key.
|
static String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
static DLAppLocalService |
getService() |
static FileEntry |
moveFileEntry(long userId,
long fileEntryId,
long newFolderId,
ServiceContext serviceContext)
Moves the file entry to the new folder.
|
static Folder |
moveFolder(long userId,
long folderId,
long parentFolderId,
ServiceContext serviceContext) |
static void |
subscribeFileEntryType(long userId,
long groupId,
long fileEntryTypeId)
Subscribe the user to changes in documents of the file entry type.
|
static void |
subscribeFolder(long userId,
long groupId,
long folderId)
Subscribe the user to document changes in the folder.
|
static void |
unsubscribeFileEntryType(long userId,
long groupId,
long fileEntryTypeId)
Unsubscribe the user from changes in documents of the file entry type.
|
static void |
unsubscribeFolder(long userId,
long groupId,
long folderId)
Unsubscribe the user from document changes in the folder.
|
static void |
updateAsset(long userId,
FileEntry fileEntry,
FileVersion fileVersion,
long[] assetCategoryIds,
String[] assetTagNames,
long[] assetLinkEntryIds)
Updates the file entry's asset replacing its asset categories, tags, and
links.
|
static FileEntry |
updateFileEntry(long userId,
long fileEntryId,
String sourceFileName,
String mimeType,
String title,
String description,
String changeLog,
boolean majorVersion,
byte[] bytes,
ServiceContext serviceContext)
Updates a file entry and associated metadata based on a byte array
object.
|
static FileEntry |
updateFileEntry(long userId,
long fileEntryId,
String sourceFileName,
String mimeType,
String title,
String description,
String changeLog,
boolean majorVersion,
File file,
ServiceContext serviceContext)
Updates a file entry and associated metadata based on a
File
object. |
static FileEntry |
updateFileEntry(long userId,
long fileEntryId,
String sourceFileName,
String mimeType,
String title,
String description,
String changeLog,
boolean majorVersion,
InputStream is,
long size,
ServiceContext serviceContext)
Updates a file entry and associated metadata based on an
InputStream object. |
static DLFileRank |
updateFileRank(long repositoryId,
long companyId,
long userId,
long fileEntryId,
ServiceContext serviceContext)
Updates a file rank to the existing file entry.
|
static FileShortcut |
updateFileShortcut(long userId,
long fileShortcutId,
long folderId,
long toFileEntryId,
ServiceContext serviceContext)
Updates a file shortcut to the existing file entry.
|
static void |
updateFileShortcuts(long oldToFileEntryId,
long newToFileEntryId)
Updates all file shortcuts to the existing file entry to the new file
entry.
|
static void |
updateFileShortcuts(long toRepositoryId,
long oldToFileEntryId,
long newToFileEntryId)
Deprecated.
As of 7.0.0, replaced by
updateFileShortcuts(long,
long) |
static Folder |
updateFolder(long folderId,
long parentFolderId,
String name,
String description,
ServiceContext serviceContext)
Updates the folder.
|
public static FileEntry addFileEntry(long userId, long repositoryId, long folderId, String sourceFileName, String mimeType, byte[] bytes, ServiceContext serviceContext) throws PortalException
PortalException
public static FileEntry addFileEntry(long userId, long repositoryId, long folderId, String sourceFileName, String mimeType, String title, String description, String changeLog, byte[] bytes, ServiceContext serviceContext) throws 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.
userId
- 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
)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: PortalException
public static FileEntry addFileEntry(long userId, long repositoryId, long folderId, String sourceFileName, String mimeType, String title, String description, String changeLog, File file, ServiceContext serviceContext) throws 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.
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: PortalException
public static FileEntry addFileEntry(long userId, long repositoryId, long folderId, String sourceFileName, String mimeType, String title, String description, String changeLog, InputStream is, long size, ServiceContext serviceContext) throws 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.
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 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: PortalException
public static DLFileRank addFileRank(long repositoryId, long companyId, long userId, long fileEntryId, ServiceContext serviceContext)
repositoryId
- the primary key of the repositorycompanyId
- the primary key of the companyuserId
- the primary key of the file rank's creator/ownerfileEntryId
- the primary key of the file entryserviceContext
- the service context to be appliedpublic static FileShortcut addFileShortcut(long userId, long repositoryId, long folderId, long toFileEntryId, ServiceContext serviceContext) throws 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.PortalException
public static Folder addFolder(long userId, long repositoryId, long parentFolderId, String name, String description, ServiceContext serviceContext) throws 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 repositoryPortalException
public static void deleteAll(long repositoryId) throws PortalException
repositoryId
- the primary key of the data's repositoryPortalException
public static void deleteAllRepositories(long groupId) throws PortalException
PortalException
public static void deleteFileEntry(long fileEntryId) throws PortalException
fileEntryId
- the primary key of the file entryPortalException
public static void deleteFileRanksByFileEntryId(long fileEntryId)
fileEntryId
- the primary key of the file entrypublic static void deleteFileRanksByUserId(long userId)
userId
- the primary key of the userpublic static void deleteFileShortcut(FileShortcut fileShortcut) throws PortalException
fileShortcut
- the file shortcutPortalException
public static void deleteFileShortcut(long fileShortcutId) throws PortalException
fileShortcutId
- the primary key of the file shortcutPortalException
public static void deleteFileShortcuts(long toFileEntryId) throws PortalException
toFileEntryId
- the primary key of the associated file entryPortalException
public static void deleteFolder(long folderId) throws PortalException
folderId
- the primary key of the folderPortalException
public static FileEntry getFileEntry(long fileEntryId) throws PortalException
fileEntryId
- the primary key of the file entryPortalException
public static FileEntry getFileEntry(long groupId, long folderId, String title) throws PortalException
groupId
- the primary key of the file entry's groupfolderId
- the primary key of the file entry's foldertitle
- the file entry's titlePortalException
public static FileEntry getFileEntryByUuidAndGroupId(String uuid, long groupId) throws PortalException
uuid
- the file entry's UUIDgroupId
- the primary key of the file entry's groupPortalException
public static List<DLFileRank> getFileRanks(long repositoryId, long userId)
repositoryId
- the primary key of the repositoryuserId
- the primary key of the userpublic static FileShortcut getFileShortcut(long fileShortcutId) throws PortalException
fileShortcutId
- the primary key of the file shortcutPortalException
public static FileVersion getFileVersion(long fileVersionId) throws PortalException
fileVersionId
- the primary key of the file versionPortalException
public static Folder getFolder(long folderId) throws PortalException
folderId
- the primary key of the folderPortalException
public static Folder getFolder(long repositoryId, long parentFolderId, String name) throws PortalException
repositoryId
- the primary key of the folder's repositoryparentFolderId
- the primary key of the folder's parent foldername
- the folder's namePortalException
public static Folder getMountFolder(long repositoryId) throws PortalException
repositoryId
- the primary key of the repositoryPortalException
public static String getOSGiServiceIdentifier()
public static FileEntry moveFileEntry(long userId, long fileEntryId, long newFolderId, ServiceContext serviceContext) throws 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 appliedPortalException
public static Folder moveFolder(long userId, long folderId, long parentFolderId, ServiceContext serviceContext) throws PortalException
PortalException
public static void subscribeFileEntryType(long userId, long groupId, long fileEntryTypeId) throws 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 typePortalException
public static void subscribeFolder(long userId, long groupId, long folderId) throws PortalException
userId
- the primary key of the usergroupId
- the primary key of the folder's groupfolderId
- the primary key of the folderPortalException
public static void unsubscribeFileEntryType(long userId, long groupId, long fileEntryTypeId) throws 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 typePortalException
public static void unsubscribeFolder(long userId, long groupId, long folderId) throws PortalException
userId
- the primary key of the usergroupId
- the primary key of the folder's groupfolderId
- the primary key of the folderPortalException
public static void updateAsset(long userId, FileEntry fileEntry, FileVersion fileVersion, long[] assetCategoryIds, String[] assetTagNames, long[] assetLinkEntryIds) throws 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 entriesPortalException
public static FileEntry updateFileEntry(long userId, long fileEntryId, String sourceFileName, String mimeType, String title, String description, String changeLog, boolean majorVersion, byte[] bytes, ServiceContext serviceContext) throws 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
)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: PortalException
public static FileEntry updateFileEntry(long userId, long fileEntryId, String sourceFileName, String mimeType, String title, String description, String changeLog, boolean majorVersion, File file, ServiceContext serviceContext) throws 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
)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: PortalException
public static FileEntry updateFileEntry(long userId, long fileEntryId, String sourceFileName, String mimeType, String title, String description, String changeLog, boolean majorVersion, InputStream is, long size, ServiceContext serviceContext) throws 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
)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: PortalException
public static DLFileRank updateFileRank(long repositoryId, long companyId, long userId, long fileEntryId, ServiceContext serviceContext)
repositoryId
- the primary key of the file rank's repositorycompanyId
- the primary key of the file rank's companyuserId
- the primary key of the file rank's creator/ownerfileEntryId
- the primary key of the file rank's file entryserviceContext
- the service context to be appliedpublic static FileShortcut updateFileShortcut(long userId, long fileShortcutId, long folderId, long toFileEntryId, ServiceContext serviceContext) throws 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.PortalException
public static void updateFileShortcuts(long oldToFileEntryId, long newToFileEntryId) throws PortalException
oldToFileEntryId
- the primary key of the old file entry pointed tonewToFileEntryId
- the primary key of the new file entry to point toPortalException
@Deprecated public static void updateFileShortcuts(long toRepositoryId, long oldToFileEntryId, long newToFileEntryId) throws PortalException
updateFileShortcuts(long,
long)
PortalException
public static Folder updateFolder(long folderId, long parentFolderId, String name, String description, ServiceContext serviceContext) throws 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
).PortalException
public static DLAppLocalService getService()