Interface ImportFolderService
-
- All Known Implementing Classes:
SoapImportFolderClient
,SoapImportFolderService
public interface ImportFolderService
WebService administration of import folders- Since:
- 6.1
- Author:
- Marco Meschieri - LogicalDOC
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
delete(String sid, long folderId)
Deletes an imported folder with the given identifierWSImportFolder[]
list(String sid)
Gets folder metadata of all imported folderslong
store(String sid, WSImportFolder folder)
Create/Update an imported folder.
-
-
-
Method Detail
-
list
WSImportFolder[] list(String sid) throws Exception
Gets folder metadata of all imported folders- Parameters:
sid
- Session identifier- Returns:
- A value object containing the folders metadata
- Throws:
Exception
- error in the server
-
store
long store(String sid, WSImportFolder folder) throws Exception
Create/Update an imported folder. You can completely customize the imported folder through a value object containing the folder's metadata- Parameters:
sid
- Session identifierfolder
- Web service value object containing the folder's metadata- Returns:
- id of the created/updated import folder
- Throws:
Exception
- error in the server
-
-