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 Deprecated Methods Modifier and Type Method Description StringimportDocument(String uuid, File file)Deprecated.StringimportDocument(String uuid, Calendar date, String author, File file)Import document string.StringimportFolder(String uuid, String name)Deprecated.StringimportFolder(String uuid, String name, Calendar date, String author)Import folder string.StringimportMail(String uuid, File file)Import mail string.StringimportRecord(String uuid, String name)Deprecated.StringimportRecord(String uuid, String name, Calendar date, String author)Import record string.
-
-
-
Method Detail
-
importDocument
@Deprecated String importDocument(String uuid, File file) throws UnknownException, WebserviceException
Deprecated.Import document string.- Parameters:
uuid- the uuidfile- the file- Returns:
- the string
- Throws:
UnknownException- the unknown exceptionWebserviceException- the webservice exception
-
importDocument
String importDocument(String uuid, Calendar date, String author, File file) throws UnknownException, WebserviceException
Import document string.- Parameters:
uuid- the uuiddate- the dateauthor- the authorfile- the file- Returns:
- the string
- Throws:
UnknownException- the unknown exceptionWebserviceException- the webservice exception
-
importFolder
@Deprecated String importFolder(String uuid, String name) throws UnknownException, WebserviceException
Deprecated.Import folder string.- Parameters:
uuid- the uuidname- the name- Returns:
- the string
- Throws:
UnknownException- the unknown exceptionWebserviceException- the webservice exception
-
importFolder
String importFolder(String uuid, String name, Calendar date, String author) throws UnknownException, WebserviceException
Import folder string.- Parameters:
uuid- the uuidname- the namedate- the datedate- the author- Returns:
- the string
- Throws:
UnknownException- the unknown exceptionWebserviceException- the webservice exception
-
importRecord
@Deprecated String importRecord(String uuid, String name) throws UnknownException, WebserviceException
Deprecated.Import record 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, Calendar date, String author) throws UnknownException, WebserviceException
Import record string.- Parameters:
uuid- the uuidname- the namedate- the dateauthor- the author- 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
-
-