Class SoapImportFolderClient
java.lang.Object
com.logicaldoc.webservice.soap.client.SoapClient<ImportFolderService>
com.logicaldoc.importfolder.webservice.soap.client.SoapImportFolderClient
- All Implemented Interfaces:
- ImportFolderService
public class SoapImportFolderClient
extends com.logicaldoc.webservice.soap.client.SoapClient<ImportFolderService>
implements ImportFolderService
- 
Constructor SummaryConstructorsConstructorDescriptionSoapImportFolderClient(String endpoint) SoapImportFolderClient(String endpoint, int gzipThreshold, boolean log, int timeout) 
- 
Method SummaryModifier and TypeMethodDescriptionvoidDeletes an imported folder with the given identifierGets folder metadata of all imported folderslongstore(String sid, WSImportFolder importFolder) Create/Update an imported folder.
- 
Constructor Details- 
SoapImportFolderClient
- 
SoapImportFolderClient
 
- 
- 
Method Details- 
listpublic List<WSImportFolder> list(String sid) throws FeatureNotEnabledException, com.logicaldoc.webservice.WebserviceException, com.logicaldoc.core.PersistenceException Description copied from interface:ImportFolderServiceGets folder metadata of all imported folders- Specified by:
- listin interface- ImportFolderService
- Parameters:
- sid- Session identifier
- Returns:
- A value object containing the folders metadata
- Throws:
- FeatureNotEnabledException- Feature not enabled in the license
- com.logicaldoc.webservice.WebserviceException- Error in the webservice
- com.logicaldoc.core.PersistenceException- Error in the data layer
 
- 
storepublic long store(String sid, WSImportFolder importFolder) throws com.logicaldoc.webservice.WebserviceException, com.logicaldoc.core.PersistenceException, FeatureNotEnabledException Description copied from interface:ImportFolderServiceCreate/Update an imported folder. You can completely customize the imported folder through a value object containing the folder's metadata- Specified by:
- storein interface- ImportFolderService
- Parameters:
- sid- Session identifier
- importFolder- 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 webservice
- com.logicaldoc.core.PersistenceException- Error in the data layer
- FeatureNotEnabledException- Feature not enabled in the license
 
- 
deletepublic void delete(String sid, long id) throws com.logicaldoc.core.PersistenceException, com.logicaldoc.webservice.WebserviceException Description copied from interface:ImportFolderServiceDeletes an imported folder with the given identifier- Specified by:
- deletein interface- ImportFolderService
- Parameters:
- sid- Session identifier
- id- The folder id
- Throws:
- com.logicaldoc.core.PersistenceException- Error in the data layer
- com.logicaldoc.webservice.WebserviceException- Error in the webservice
 
 
-