Class SoapImportFolderService
java.lang.Object
com.logicaldoc.webservice.AbstractService
com.logicaldoc.importfolder.webservice.soap.endpoint.SoapImportFolderService
- All Implemented Interfaces:
ImportFolderService
public class SoapImportFolderService
extends com.logicaldoc.webservice.AbstractService
implements ImportFolderService
ImportFolder Web Service Implementation
- Since:
- 6.1
- Author:
- Marco Meschieri - LogicalDOC
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Deletes an imported folder with the given identifierGets folder metadata of all imported folderslong
store
(String sid, WSImportFolder wsImportFolder) Create/Update an imported folder.Methods inherited from class com.logicaldoc.webservice.AbstractService
convertDateToString, convertStringToDate, getCurrentMessage, isValidateSession, setCurrentMessage, setValidateSession
-
Constructor Details
-
SoapImportFolderService
public SoapImportFolderService()
-
-
Method Details
-
list
public List<WSImportFolder> list(String sid) throws FeatureNotEnabledException, com.logicaldoc.webservice.WebserviceException, com.logicaldoc.core.PersistenceException Description copied from interface:ImportFolderService
Gets folder metadata of all imported folders- Specified by:
list
in interfaceImportFolderService
- Parameters:
sid
- Session identifier- Returns:
- A value object containing the folders metadata
- Throws:
FeatureNotEnabledException
- Feature not enabled in the licensecom.logicaldoc.webservice.WebserviceException
- Error in the webservicecom.logicaldoc.core.PersistenceException
- Error in the data layer
-
store
public long store(String sid, WSImportFolder wsImportFolder) throws com.logicaldoc.webservice.WebserviceException, com.logicaldoc.core.PersistenceException, FeatureNotEnabledException Description copied from interface:ImportFolderService
Create/Update an imported folder. You can completely customize the imported folder through a value object containing the folder's metadata- Specified by:
store
in interfaceImportFolderService
- Parameters:
sid
- Session identifierwsImportFolder
- Web service value object containing the folder's metadata- Returns:
- id of the created/updated import folder
- Throws:
com.logicaldoc.webservice.WebserviceException
- Error in the webservicecom.logicaldoc.core.PersistenceException
- Error in the data layerFeatureNotEnabledException
- Feature not enabled in the license
-
delete
public void delete(String sid, long folderId) throws com.logicaldoc.core.PersistenceException, com.logicaldoc.webservice.WebserviceException Description copied from interface:ImportFolderService
Deletes an imported folder with the given identifier- Specified by:
delete
in interfaceImportFolderService
- Parameters:
sid
- Session identifierfolderId
- The folder id- Throws:
com.logicaldoc.core.PersistenceException
- Error in the data layercom.logicaldoc.webservice.WebserviceException
- Error in the webservice
-