Package com.emc.d2fs.interfaces
Interface IArchiveService
- All Superinterfaces:
ID2fsService
Archive management for dictionary/taxonomy
-
Method Summary
Modifier and TypeMethodDescriptioncreateVersion(Context context, String id, String type, String name, String logEntry, String checkinVersion, boolean isAuto) Create a new archive versionlistArchives(Context context, String id, String type, String name) Get archive listbooleantestExists(Context context, String id, String type, String name) Check if archive existsMethods inherited from interface com.emc.d2fs.interfaces.ID2fsService
isRemote, setRemote
-
Method Details
-
createVersion
String createVersion(Context context, String id, String type, String name, String logEntry, String checkinVersion, boolean isAuto) throws Exception Create a new archive version- Parameters:
context-Contextobject containing informations about client/sessionid- String value of document idtype- String value of archive type (dictionary, taxonomy)name- String value of archive namelogEntry- String value of creation commentcheckinVersion- String value of checkin version (major, minor, ...)isAuto- boolean value of automatic version (next_minor)- Returns:
- String value of new object id
- Throws:
Exception- Since:
- 4.0.1
-
listArchives
List<ArchiveInfo> listArchives(Context context, String id, String type, String name) throws Exception Get archive list- Parameters:
context-Contextobject containing informations about client/sessionid- String value of document idtype- String value of archive type (dictionary, taxonomy)name- String value of archive name- Returns:
ArchiveInfolist of archives- Throws:
Exception- Since:
- 4.0.1
-
testExists
Check if archive exists
-