Skip to content
Snippets Groups Projects
Commit e6270b0f authored by vkovtun's avatar vkovtun
Browse files

Merge branch 'master' into bis-773-export-fixes

parents 830c4211 86d7e498
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
......@@ -5,7 +5,8 @@ define([ "stjs", "util/Exceptions" ], function(stjs, exceptions) {
prototype['@type'] = 'imaging.dto.ImagingDataSetMultiExport';
constructor.serialVersionUID = 1;
prototype.permId = null;
prototype.index = null;
prototype.imageIndex = null;
prototype.previewIndex = null;
prototype.config = null;
prototype.metadata = null;
......@@ -15,11 +16,17 @@ define([ "stjs", "util/Exceptions" ], function(stjs, exceptions) {
prototype.setPermId = function(permId) {
this.permId = permId;
};
prototype.getIndex = function() {
return this.index;
prototype.getImageIndex = function() {
return this.imageIndex;
};
prototype.setIndex = function(index) {
this.index = index;
prototype.setImageIndex = function(imageIndex) {
this.imageIndex = imageIndex;
};
prototype.getPreviewIndex = function() {
return this.previewIndex;
};
prototype.setPreviewIndex = function(previewIndex) {
this.previewIndex = previewIndex;
};
prototype.getConfig = function() {
return this.config;
......
......@@ -7,4 +7,5 @@ APIS
java-javascript-v3-api
python-v3-api
matlab-v3-api
personal-access-tokens
\ No newline at end of file
personal-access-tokens
semantic-annotations
\ No newline at end of file
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment