Package com.openkm.sdk4j.definition
Interface BaseImport
-
- All Known Implementing Classes:
ImportImpl
public interface BaseImportBaseImport- Author:
- sochoa
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringimportDocument(String uuid, File file)Import document string.StringimportFolder(String uuid, String name)Import folder string.StringimportMail(String uuid, File file)Import mail string.StringimportRecord(String uuid, String name)Import record string.
-
-
-
Method Detail
-
importDocument
String importDocument(String uuid, File file) throws UnknownException, WebserviceException
Import document string.- Parameters:
uuid- the uuidfile- the file- Returns:
- the string
- Throws:
UnknownException- the unknown exceptionWebserviceException- the webservice exception
-
importFolder
String importFolder(String uuid, String name) throws UnknownException, WebserviceException
Import folder string.- Parameters:
uuid- the uuidname- the name- Returns:
- the string
- Throws:
UnknownException- the unknown exceptionWebserviceException- the webservice exception
-
importRecord
String importRecord(String uuid, String name) throws UnknownException, WebserviceException
Import record string.- Parameters:
uuid- the uuidname- the name- Returns:
- the string
- Throws:
UnknownException- the unknown exceptionWebserviceException- the webservice exception
-
importMail
String importMail(String uuid, File file) throws UnknownException, WebserviceException
Import mail string.- Parameters:
uuid- the uuidfile- the file- Returns:
- the string
- Throws:
UnknownException- the unknown exceptionWebserviceException- the webservice exception
-
-