Skip to content
Snippets Groups Projects
Commit 23c71cdf authored by jakubs's avatar jakubs
Browse files

SSDM-1439 SSDM-1383 Fix reference to missing ServiceVersionHolder.

SVN: 33309
parent 94f295c5
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ define(["support/stjs", "dto/id/ObjectIdentifier", "dto/id/sample/ISampleId"], f
};
stjs.extend(SampleIdentifier, ObjectIdentifier, [ObjectIdentifier, ISampleId], function(constructor, prototype) {
prototype['@type'] = 'SampleIdentifier';
constructor.serialVersionUID = ServiceVersionHolder.VERSION;
constructor.serialVersionUID = 1;
}, {});
return SampleIdentifier;
})
\ No newline at end of file
......@@ -12,7 +12,7 @@ define(["support/stjs", "dto/id/ObjectPermId", "dto/id/sample/ISampleId"], funct
};
stjs.extend(SamplePermId, ObjectPermId, [ObjectPermId, ISampleId], function(constructor, prototype) {
prototype['@type'] = 'SamplePermId';
constructor.serialVersionUID = ServiceVersionHolder.VERSION;
constructor.serialVersionUID = 1;
}, {});
return SamplePermId;
})
\ No newline at end of file
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