Liferay 6.1.10-ee-ga1

com.liferay.portlet.documentlibrary.service.http
Class DLAppServiceSoap

java.lang.Object
  extended by com.liferay.portlet.documentlibrary.service.http.DLAppServiceSoap

public class DLAppServiceSoap
extends Object

This class provides a SOAP utility for the DLAppServiceUtil service utility. The static methods of this class calls the same methods of the service utility. However, the signatures are different because it is difficult for SOAP to support certain types.

The benefits of using the SOAP utility is that it is cross platform compatible. SOAP allows different languages like Java, .NET, C++, PHP, and even Perl, to call the generated services. One drawback of SOAP is that it is slow because it needs to serialize all calls into a text format (XML).

You can see a list of services at http://localhost:8080/api/secure/axis. Set the property axis.servlet.hosts.allowed in portal.properties to configure security.

The SOAP utility is only generated for remote services.

See Also:
DLAppServiceHttp, DLAppServiceUtil
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Constructor Summary
DLAppServiceSoap()
           
 
Method Summary
static DLFileShortcutSoap addFileShortcut(long repositoryId, long folderId, long toFileEntryId, ServiceContext serviceContext)
          Adds a file shortcut to the existing file entry.
static void cancelCheckOut(long fileEntryId)
          Cancels the check out of the file entry.
static void checkInFileEntry(long fileEntryId, boolean majorVersion, String changeLog, ServiceContext serviceContext)
          Checks in the file entry.
static void checkInFileEntry(long fileEntryId, String lockUuid)
          Checks in the file entry using the lock's UUID.
static void checkOutFileEntry(long fileEntryId, ServiceContext serviceContext)
          Check out a file entry.
static void deleteFileEntry(long fileEntryId)
          Deletes the file entry with the primary key.
static void deleteFileEntryByTitle(long repositoryId, long folderId, String title)
          Deletes the file entry with the title in the folder.
static void deleteFileShortcut(long fileShortcutId)
          Deletes the file shortcut with the primary key.
static void deleteFolder(long folderId)
          Deletes the folder with the primary key and all of its subfolders and file entries.
static 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.
static void deleteTempFileEntry(long groupId, long folderId, String fileName, String tempFolderName)
          Deletes the temporary file entry.
static int getFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status)
          Returns the number of file entries and shortcuts in the folder.
static int getFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status, String[] mimeTypes)
          Returns the number of file entries and shortcuts in the folder.
static int getFileEntriesCount(long repositoryId, long folderId)
          Returns the number of file entries in the folder.
static int getFileEntriesCount(long repositoryId, long folderId, long fileEntryTypeId)
          Returns the number of file entries with the file entry type in the folder.
static DLFileShortcutSoap getFileShortcut(long fileShortcutId)
          Returns the file shortcut with the primary key.
static 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.
static int getFoldersAndFileEntriesAndFileShortcutsCount(long repositoryId, long folderId, int status, String[] mimeTypes, boolean includeMountFolders)
           
static int getFoldersCount(long repositoryId, long parentFolderId)
          Returns the number of immediate subfolders of the parent folder.
static 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.
static int getFoldersFileEntriesCount(long repositoryId, Long[] folderIds, int status)
          Returns the number of immediate subfolders and file entries across the folders.
static 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.
static 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.
static int getGroupFileEntriesCount(long groupId, long userId, long rootFolderId, String[] mimeTypes, int status)
           
static int getMountFoldersCount(long repositoryId, long parentFolderId)
          Returns the number of immediate subfolders of the parent folder that are used for mounting third-party repositories.
static Long[] getSubfolderIds(long repositoryId, long folderId)
          Returns all the descendant folders of the folder with the primary key.
static void getSubfolderIds(long repositoryId, Long[] folderIds, long folderId)
           
static Long[] getSubfolderIds(long repositoryId, long folderId, boolean recurse)
          Returns descendant folders of the folder with the primary key, optionally limiting to one level deep.
static String[] getTempFileEntryNames(long groupId, long folderId, String tempFolderName)
          Returns all the temporary file entry names.
static void revertFileEntry(long fileEntryId, String version, ServiceContext serviceContext)
          Reverts the file entry to a previous version.
static void unlockFileEntry(long fileEntryId)
           
static void unlockFileEntry(long fileEntryId, String lockUuid)
           
static void unlockFolder(long repositoryId, long folderId, String lockUuid)
          Unlocks the folder.
static void unlockFolder(long repositoryId, long parentFolderId, String name, String lockUuid)
          Unlocks the folder.
static DLFileShortcutSoap updateFileShortcut(long fileShortcutId, long folderId, long toFileEntryId, ServiceContext serviceContext)
          Updates a file shortcut to the existing file entry.
static boolean verifyFileEntryCheckOut(long repositoryId, long fileEntryId, String lockUuid)
          Returns true if the file entry is checked out.
static boolean verifyFileEntryLock(long repositoryId, long fileEntryId, String lockUuid)
           
static boolean verifyInheritableLock(long repositoryId, long folderId, String lockUuid)
          Returns true if the inheritable lock exists.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DLAppServiceSoap

public DLAppServiceSoap()
Method Detail

addFileShortcut

public static DLFileShortcutSoap addFileShortcut(long repositoryId,
                                                 long folderId,
                                                 long toFileEntryId,
                                                 ServiceContext serviceContext)
                                          throws RemoteException
Adds a file shortcut to the existing file entry. This method is only supported by the Liferay repository.

Parameters:
repositoryId - the primary key of the repository
folderId - the primary key of the file shortcut's parent folder
toFileEntryId - the primary key of the file shortcut's file entry
serviceContext - the service context to be applied. Can set the asset category IDs, asset tag names, and expando bridge attributes for the file entry.
Returns:
the file shortcut
Throws:
PortalException - if the parent folder or file entry could not be found, or if the file shortcut's information was invalid
SystemException - if a system exception occurred
RemoteException

cancelCheckOut

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

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

Parameters:
fileEntryId - the primary key of the file entry to cancel the checkout
Throws:
PortalException - if the file entry could not be found
SystemException - if a system exception occurred
RemoteException
See Also:
checkInFileEntry(long, boolean, String, ServiceContext), #checkOutFileEntry(long)

checkInFileEntry

public static void checkInFileEntry(long fileEntryId,
                                    boolean majorVersion,
                                    String changeLog,
                                    ServiceContext serviceContext)
                             throws RemoteException
Checks in the file entry. If a user has not checked out the specified file entry, invoking this method will result in no changes.

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

Parameters:
fileEntryId - the primary key of the file entry to check in
majorVersion - whether the new file version is a major version
changeLog - the file's version change log
serviceContext - the service context to be applied
Throws:
PortalException - if the file entry could not be found
SystemException - if a system exception occurred
RemoteException
See Also:
cancelCheckOut(long), #checkOutFileEntry(long)

checkInFileEntry

public static void checkInFileEntry(long fileEntryId,
                                    String lockUuid)
                             throws RemoteException
Checks in the file entry using the lock's UUID. If a user has not checked out the specified file entry, invoking this method will result in no changes. This method is primarily used by WebDAV.

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

Parameters:
fileEntryId - the primary key of the file entry to check in
lockUuid - the lock's universally unique identifier
Throws:
PortalException - if the file entry could not be found
SystemException - if a system exception occurred
RemoteException
See Also:
cancelCheckOut(long), #checkOutFileEntry(long, String, long)

checkOutFileEntry

public static void checkOutFileEntry(long fileEntryId,
                                     ServiceContext serviceContext)
                              throws RemoteException
Check out a file entry.

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

Parameters:
fileEntryId - the file entry to check out
serviceContext - the service context to be applied
Throws:
PortalException - if the file entry could not be found
SystemException - if a system exception occurred
RemoteException
See Also:
cancelCheckOut(long), checkInFileEntry(long, boolean, String, ServiceContext)

deleteFileEntry

public static void deleteFileEntry(long fileEntryId)
                            throws RemoteException
Deletes the file entry with the primary key.

Parameters:
fileEntryId - the primary key of the file entry
Throws:
PortalException - if the file entry could not be found
SystemException - if a system exception occurred
RemoteException

deleteFileEntryByTitle

public static void deleteFileEntryByTitle(long repositoryId,
                                          long folderId,
                                          String title)
                                   throws RemoteException
Deletes the file entry with the title in the folder.

Parameters:
repositoryId - the primary key of the repository
folderId - the primary key of the file entry's parent folder
title - the file entry's title
Throws:
PortalException - if the file entry could not be found
SystemException - if a system exception occurred
RemoteException

deleteFileShortcut

public static void deleteFileShortcut(long fileShortcutId)
                               throws RemoteException
Deletes the file shortcut with the primary key. This method is only supported by the Liferay repository.

Parameters:
fileShortcutId - the primary key of the file shortcut
Throws:
PortalException - if the file shortcut could not be found
SystemException - if a system exception occurred
RemoteException

deleteFolder

public static void deleteFolder(long folderId)
                         throws RemoteException
Deletes the folder with the primary key and all of its subfolders and file entries.

Parameters:
folderId - the primary key of the folder
Throws:
PortalException - if the folder could not be found
SystemException - if a system exception occurred
RemoteException

deleteFolder

public static void deleteFolder(long repositoryId,
                                long parentFolderId,
                                String name)
                         throws RemoteException
Deletes the folder with the name in the parent folder and all of its subfolders and file entries.

Parameters:
repositoryId - the primary key of the repository
parentFolderId - the primary key of the folder's parent folder
name - the folder's name
Throws:
PortalException - if the folder could not be found
SystemException - if a system exception occurred
RemoteException

deleteTempFileEntry

public static void deleteTempFileEntry(long groupId,
                                       long folderId,
                                       String fileName,
                                       String tempFolderName)
                                throws RemoteException
Deletes the temporary file entry.

Parameters:
groupId - the primary key of the group
folderId - the primary key of the folder where the file entry was eventually to reside
fileName - the file's original name
tempFolderName - the temporary folder's name
Throws:
PortalException - if the file name was invalid
SystemException - if a system exception occurred
RemoteException
See Also:
TempFileUtil

getFileEntriesAndFileShortcutsCount

public static int getFileEntriesAndFileShortcutsCount(long repositoryId,
                                                      long folderId,
                                                      int status)
                                               throws RemoteException
Returns the number of file entries and shortcuts in the folder.

Parameters:
repositoryId - the primary key of the repository
folderId - the primary key of the folder
status - the workflow status
Returns:
the number of file entries and shortcuts in the folder
Throws:
PortalException - if the folder ould not be found
SystemException - if a system exception occurred
RemoteException

getFileEntriesAndFileShortcutsCount

public static int getFileEntriesAndFileShortcutsCount(long repositoryId,
                                                      long folderId,
                                                      int status,
                                                      String[] mimeTypes)
                                               throws RemoteException
Returns the number of file entries and shortcuts in the folder.

Parameters:
repositoryId - the primary key of the repository
folderId - the primary key of the folder
status - the workflow status
mimeTypes - allowed media types
Returns:
the number of file entries and shortcuts in the folder
Throws:
PortalException - if the folder ould not be found
SystemException - if a system exception occurred
RemoteException

getFileEntriesCount

public static int getFileEntriesCount(long repositoryId,
                                      long folderId)
                               throws RemoteException
Returns the number of file entries in the folder.

Parameters:
repositoryId - the primary key of the file entry's repository
folderId - the primary key of the file entry's folder
Returns:
the number of file entries in the folder
Throws:
PortalException - if the folder could not be found
SystemException - if a system exception occurred
RemoteException

getFileEntriesCount

public static int getFileEntriesCount(long repositoryId,
                                      long folderId,
                                      long fileEntryTypeId)
                               throws RemoteException
Returns the number of file entries with the file entry type in the folder.

Parameters:
repositoryId - the primary key of the file entry's repository
folderId - the primary key of the file entry's folder
fileEntryTypeId - the primary key of the file entry type
Returns:
the number of file entries with the file entry type in the folder
Throws:
PortalException - if the folder could not be found
SystemException - if a system exception occurred
RemoteException

getFileShortcut

public static DLFileShortcutSoap getFileShortcut(long fileShortcutId)
                                          throws RemoteException
Returns the file shortcut with the primary key. This method is only supported by the Liferay repository.

Parameters:
fileShortcutId - the primary key of the file shortcut
Returns:
the file shortcut with the primary key
Throws:
PortalException - if the file shortcut could not be found
SystemException - if a system exception occurred
RemoteException

getFoldersAndFileEntriesAndFileShortcutsCount

public static int getFoldersAndFileEntriesAndFileShortcutsCount(long repositoryId,
                                                                long folderId,
                                                                int status,
                                                                boolean includeMountFolders)
                                                         throws RemoteException
Returns the number of immediate subfolders, file entries, and file shortcuts in the parent folder.

Parameters:
repositoryId - the primary key of the repository
folderId - the primary key of the parent folder
status - the workflow status
includeMountFolders - whether to include mount folders for third-party repositories
Returns:
the number of immediate subfolders, file entries, and file shortcuts in the parent folder
Throws:
PortalException - if the folder could not be found
SystemException - if a system exception occurred
RemoteException

getFoldersAndFileEntriesAndFileShortcutsCount

public static int getFoldersAndFileEntriesAndFileShortcutsCount(long repositoryId,
                                                                long folderId,
                                                                int status,
                                                                String[] mimeTypes,
                                                                boolean includeMountFolders)
                                                         throws RemoteException
Throws:
RemoteException

getFoldersCount

public static int getFoldersCount(long repositoryId,
                                  long parentFolderId)
                           throws RemoteException
Returns the number of immediate subfolders of the parent folder.

Parameters:
repositoryId - the primary key of the folder's repository
parentFolderId - the primary key of the folder's parent folder
Returns:
the number of immediate subfolders of the parent folder
Throws:
PortalException - if the parent folder could not be found
SystemException - if a system exception occurred
RemoteException

getFoldersCount

public static int getFoldersCount(long repositoryId,
                                  long parentFolderId,
                                  boolean includeMountFolders)
                           throws RemoteException
Returns the number of immediate subfolders of the parent folder, optionally including mount folders for third-party repositories.

Parameters:
repositoryId - the primary key of the folder's repository
parentFolderId - the primary key of the folder's parent folder
includeMountFolders - whether to include mount folders for third-party repositories
Returns:
the number of immediate subfolders of the parent folder
Throws:
PortalException - if the parent folder could not be found
SystemException - if a system exception occurred
RemoteException

getFoldersFileEntriesCount

public static int getFoldersFileEntriesCount(long repositoryId,
                                             Long[] folderIds,
                                             int status)
                                      throws RemoteException
Returns the number of immediate subfolders and file entries across the folders.

Parameters:
repositoryId - the primary key of the repository
folderIds - the primary keys of folders from which to count immediate subfolders and file entries
status - the workflow status
Returns:
the number of immediate subfolders and file entries across the folders
Throws:
PortalException - if the repository could not be found
SystemException - if a system exception occurred
RemoteException

getGroupFileEntriesCount

public static int getGroupFileEntriesCount(long groupId,
                                           long userId)
                                    throws RemoteException
Returns the number of file entries in a group starting at the repository default parent folder that are stored within the Liferay repository. This method is primarily used to search for recently modified file entries. It can be limited to the file entries modified by a given user.

Parameters:
groupId - the primary key of the group
userId - the primary key of the user who created the file (optionally 0)
Returns:
the number of matching file entries
Throws:
PortalException - if the group could not be found
SystemException - if a system exception occurred
RemoteException

getGroupFileEntriesCount

public static int getGroupFileEntriesCount(long groupId,
                                           long userId,
                                           long rootFolderId)
                                    throws RemoteException
Returns the number of file entries in a group starting at the root folder that are stored within the Liferay repository. This method is primarily used to search for recently modified file entries. It can be limited to the file entries modified by a given user.

Parameters:
groupId - the primary key of the group
userId - the primary key of the user who created the file (optionally 0)
rootFolderId - the primary key of the root folder to begin the search
Returns:
the number of matching file entries
Throws:
PortalException - if the group could not be found
SystemException - if a system exception occurred
RemoteException

getGroupFileEntriesCount

public static int getGroupFileEntriesCount(long groupId,
                                           long userId,
                                           long rootFolderId,
                                           String[] mimeTypes,
                                           int status)
                                    throws RemoteException
Throws:
RemoteException

getMountFoldersCount

public static int getMountFoldersCount(long repositoryId,
                                       long parentFolderId)
                                throws RemoteException
Returns the number of immediate subfolders of the parent folder that are used for mounting third-party repositories. This method is only supported by the Liferay repository.

Parameters:
repositoryId - the primary key of the repository
parentFolderId - the primary key of the parent folder
Returns:
the number of folders of the parent folder that are used for mounting third-party repositories
Throws:
PortalException - if the repository or parent folder could not be found
SystemException - if a system exception occurred
RemoteException

getSubfolderIds

public static void getSubfolderIds(long repositoryId,
                                   Long[] folderIds,
                                   long folderId)
                            throws RemoteException
Throws:
RemoteException

getSubfolderIds

public static Long[] getSubfolderIds(long repositoryId,
                                     long folderId)
                              throws RemoteException
Returns all the descendant folders of the folder with the primary key.

Parameters:
repositoryId - the primary key of the repository
folderId - the primary key of the folder
Returns:
the descendant folders of the folder with the primary key
Throws:
PortalException - if the repository or parent folder could not be found
SystemException - if a system exception occurred
RemoteException

getSubfolderIds

public static Long[] getSubfolderIds(long repositoryId,
                                     long folderId,
                                     boolean recurse)
                              throws RemoteException
Returns descendant folders of the folder with the primary key, optionally limiting to one level deep.

Parameters:
repositoryId - the primary key of the repository
folderId - the primary key of the folder
recurse - whether to recurse through each subfolder
Returns:
the descendant folders of the folder with the primary key
Throws:
PortalException - if the repository or parent folder could not be found
SystemException - if a system exception occurred
RemoteException

getTempFileEntryNames

public static String[] getTempFileEntryNames(long groupId,
                                             long folderId,
                                             String tempFolderName)
                                      throws RemoteException
Returns all the temporary file entry names.

Parameters:
groupId - the primary key of the group
folderId - the primary key of the folder where the file entry will eventually reside
tempFolderName - the temporary folder's name
Returns:
the temporary file entry names
Throws:
PortalException - if the folder was invalid
SystemException - if a system exception occurred
RemoteException
See Also:
#addTempFileEntry(long, long, String, String, File), TempFileUtil

revertFileEntry

public static void revertFileEntry(long fileEntryId,
                                   String version,
                                   ServiceContext serviceContext)
                            throws RemoteException
Reverts the file entry to a previous version. A new version will be created based on the previous version and metadata.

Parameters:
fileEntryId - the primary key of the file entry
version - the version to revert back to
serviceContext - the service context to be applied
Throws:
PortalException - if the file entry or version could not be found
SystemException - if a system exception occurred
RemoteException

unlockFileEntry

public static void unlockFileEntry(long fileEntryId)
                            throws RemoteException
Throws:
RemoteException

unlockFileEntry

public static void unlockFileEntry(long fileEntryId,
                                   String lockUuid)
                            throws RemoteException
Throws:
RemoteException

unlockFolder

public static void unlockFolder(long repositoryId,
                                long folderId,
                                String lockUuid)
                         throws RemoteException
Unlocks the folder. This method is primarily used by WebDAV.

Parameters:
repositoryId - the primary key of the repository
folderId - the primary key of the folder
lockUuid - the lock's universally unique identifier
Throws:
PortalException - if the repository or folder could not be found
SystemException - if a system exception occurred
RemoteException

unlockFolder

public static void unlockFolder(long repositoryId,
                                long parentFolderId,
                                String name,
                                String lockUuid)
                         throws RemoteException
Unlocks the folder. This method is primarily used by WebDAV.

Parameters:
repositoryId - the primary key of the repository
parentFolderId - the primary key of the parent folder
name - the folder's name
lockUuid - the lock's universally unique identifier
Throws:
PortalException - if the repository or folder could not be found
SystemException - if a system exception occurred
RemoteException

updateFileShortcut

public static DLFileShortcutSoap updateFileShortcut(long fileShortcutId,
                                                    long folderId,
                                                    long toFileEntryId,
                                                    ServiceContext serviceContext)
                                             throws RemoteException
Updates a file shortcut to the existing file entry. This method is only supported by the Liferay repository.

Parameters:
fileShortcutId - the primary key of the file shortcut
folderId - the primary key of the file shortcut's parent folder
toFileEntryId - the primary key of the file shortcut's file entry
serviceContext - the service context to be applied. Can set the asset category IDs, asset tag names, and expando bridge attributes for the file entry.
Returns:
the file shortcut
Throws:
PortalException - if the file shortcut, folder, or file entry could not be found
SystemException - if a system exception occurred
RemoteException

verifyFileEntryCheckOut

public static boolean verifyFileEntryCheckOut(long repositoryId,
                                              long fileEntryId,
                                              String lockUuid)
                                       throws RemoteException
Returns true if the file entry is checked out. This method is primarily used by WebDAV.

Parameters:
repositoryId - the primary key for the repository
fileEntryId - the primary key for the file entry
lockUuid - the lock's universally unique identifier
Returns:
true if the file entry is checked out; false otherwise
Throws:
PortalException - if the file entry could not be found
SystemException - if a system exception occurred
RemoteException

verifyFileEntryLock

public static boolean verifyFileEntryLock(long repositoryId,
                                          long fileEntryId,
                                          String lockUuid)
                                   throws RemoteException
Throws:
RemoteException

verifyInheritableLock

public static boolean verifyInheritableLock(long repositoryId,
                                            long folderId,
                                            String lockUuid)
                                     throws RemoteException
Returns true if the inheritable lock exists. This method is primarily used by WebDAV.

Parameters:
repositoryId - the primary key for the repository
folderId - the primary key for the folder
lockUuid - the lock's universally unique identifier
Returns:
true if the inheritable lock exists; false otherwise
Throws:
PortalException - if the folder could not be found
SystemException - if a system exception occurred
RemoteException

Liferay 6.1.10-ee-ga1