From 23c71cdf5a8c4c75b0b85fdc064ed7e2ba280cbe Mon Sep 17 00:00:00 2001
From: jakubs <jakubs>
Date: Fri, 23 Jan 2015 14:29:08 +0000
Subject: [PATCH] SSDM-1439 SSDM-1383 Fix reference to missing
 ServiceVersionHolder.

SVN: 33309
---
 .../html/models/dto/id/sample/SampleIdentifier.js               | 2 +-
 .../html/models/dto/id/sample/SamplePermId.js                   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/js-test/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/models/dto/id/sample/SampleIdentifier.js b/js-test/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/models/dto/id/sample/SampleIdentifier.js
index d35d9f1a7da..a64235bb247 100644
--- a/js-test/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/models/dto/id/sample/SampleIdentifier.js
+++ b/js-test/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/models/dto/id/sample/SampleIdentifier.js
@@ -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
diff --git a/js-test/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/models/dto/id/sample/SamplePermId.js b/js-test/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/models/dto/id/sample/SamplePermId.js
index a736b1e1c96..4c5b2e2681b 100644
--- a/js-test/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/models/dto/id/sample/SamplePermId.js
+++ b/js-test/servers/common/core-plugins/tests/1/as/webapps/openbis-v3-api-test/html/models/dto/id/sample/SamplePermId.js
@@ -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
-- 
GitLab