Liferay 6.1.2-ce-ga3

Uses of Class
com.liferay.portal.kernel.repository.model.FolderSoap

Packages that use FolderSoap
com.liferay.portal.kernel.repository.model   
com.liferay.portlet.documentlibrary.service.http This package defines the HTTP and SOAP document library portlet service utilities. 
 

Uses of FolderSoap in com.liferay.portal.kernel.repository.model
 

Methods in com.liferay.portal.kernel.repository.model that return FolderSoap
static FolderSoap FolderSoap.toSoapModel(Folder model)
           
static FolderSoap[] FolderSoap.toSoapModels(Folder[] models)
           
static FolderSoap[][] FolderSoap.toSoapModels(Folder[][] models)
           
static FolderSoap[] FolderSoap.toSoapModels(List<Folder> models)
           
 

Uses of FolderSoap in com.liferay.portlet.documentlibrary.service.http
 

Methods in com.liferay.portlet.documentlibrary.service.http that return FolderSoap
static FolderSoap DLAppServiceSoap.addFolder(long repositoryId, long parentFolderId, String name, String description, ServiceContext serviceContext)
          Adds a folder.
static FolderSoap DLAppServiceSoap.copyFolder(long repositoryId, long sourceFolderId, long parentFolderId, String name, String description, ServiceContext serviceContext)
          Performs a deep copy of the folder.
static FolderSoap DLAppServiceSoap.getFolder(long folderId)
          Returns the folder with the primary key.
static FolderSoap DLAppServiceSoap.getFolder(long repositoryId, long parentFolderId, String name)
          Returns the folder with the name in the parent folder.
static FolderSoap[] DLAppServiceSoap.getFolders(long repositoryId, long parentFolderId)
          Returns all immediate subfolders of the parent folder.
static FolderSoap[] DLAppServiceSoap.getFolders(long repositoryId, long parentFolderId, boolean includeMountFolders)
          Returns all immediate subfolders of the parent folder, optionally including mount folders for third-party repositories.
static FolderSoap[] DLAppServiceSoap.getFolders(long repositoryId, long parentFolderId, boolean includeMountFolders, int start, int end)
          Returns a range of all the immediate subfolders of the parent folder, optionally including mount folders for third-party repositories.
static FolderSoap[] DLAppServiceSoap.getFolders(long repositoryId, long parentFolderId, boolean includeMountFolders, int start, int end, OrderByComparator obc)
          Returns an ordered range of all the immediate subfolders of the parent folder.
static FolderSoap[] DLAppServiceSoap.getFolders(long repositoryId, long parentFolderId, int start, int end)
          Returns a range of all the immediate subfolders of the parent folder.
static FolderSoap[] DLAppServiceSoap.getFolders(long repositoryId, long parentFolderId, int start, int end, OrderByComparator obc)
          Returns an ordered range of all the immediate subfolders of the parent folder.
static FolderSoap[] DLAppServiceSoap.getMountFolders(long repositoryId, long parentFolderId)
          Returns all immediate subfolders of the parent folder that are used for mounting third-party repositories.
static FolderSoap[] DLAppServiceSoap.getMountFolders(long repositoryId, long parentFolderId, int start, int end)
          Returns a range of all the immediate subfolders of the parent folder that are used for mounting third-party repositories.
static FolderSoap[] DLAppServiceSoap.getMountFolders(long repositoryId, long parentFolderId, int start, int end, OrderByComparator obc)
          Returns an ordered range of all the immediate subfolders of the parent folder that are used for mounting third-party repositories.
static FolderSoap DLAppServiceSoap.moveFolder(long folderId, long parentFolderId, ServiceContext serviceContext)
          Moves the folder to the new parent folder with the primary key.
static FolderSoap DLAppServiceSoap.updateFolder(long folderId, String name, String description, ServiceContext serviceContext)
          Updates the folder.
 


Liferay 6.1.2-ce-ga3