Skip to content
Snippets Groups Projects
Commit a3d1b04d authored by Adam Laskowski's avatar Adam Laskowski
Browse files

BIS-1002: fixed js api

parent f716b3cc
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
...@@ -22,6 +22,7 @@ define(['stjs', "util/Exceptions"], function (stjs, exceptions) { ...@@ -22,6 +22,7 @@ define(['stjs', "util/Exceptions"], function (stjs, exceptions) {
prototype.propertyAssignments = null prototype.propertyAssignments = null
prototype.validationPlugin = null prototype.validationPlugin = null
prototype.metaData = null; prototype.metaData = null;
prototype.managedInternally = null;
prototype.getPropertyAssignments = function () { prototype.getPropertyAssignments = function () {
if ( if (
...@@ -107,6 +108,12 @@ define(['stjs', "util/Exceptions"], function (stjs, exceptions) { ...@@ -107,6 +108,12 @@ define(['stjs', "util/Exceptions"], function (stjs, exceptions) {
prototype.setMetaData = function(metaData) { prototype.setMetaData = function(metaData) {
this.metaData = metaData; this.metaData = metaData;
}; };
prototype.isManagedInternally = function() {
return this.managedInternally;
};
prototype.setManagedInternally = function(managedInternally) {
this.managedInternally = managedInternally;
};
prototype.toString = function () { prototype.toString = function () {
return this.getCode() return this.getCode()
} }
......
...@@ -15,6 +15,7 @@ define([ "stjs" ], function(stjs) { ...@@ -15,6 +15,7 @@ define([ "stjs" ], function(stjs) {
prototype.validationPluginId = null; prototype.validationPluginId = null;
prototype.propertyAssignments = null; prototype.propertyAssignments = null;
prototype.metaData = null; prototype.metaData = null;
prototype.managedInternally = null;
prototype.getCode = function() { prototype.getCode = function() {
return this.code; return this.code;
...@@ -64,6 +65,12 @@ define([ "stjs" ], function(stjs) { ...@@ -64,6 +65,12 @@ define([ "stjs" ], function(stjs) {
prototype.setMetaData = function(metaData) { prototype.setMetaData = function(metaData) {
this.metaData = metaData; this.metaData = metaData;
}; };
prototype.isManagedInternally = function() {
return this.managedInternally;
};
prototype.setManagedInternally = function(managedInternally) {
this.managedInternally = managedInternally;
};
}, { }, {
validationPluginId : "IPluginId", validationPluginId : "IPluginId",
......
...@@ -19,6 +19,7 @@ define(['stjs', "util/Exceptions"], function (stjs, exceptions) { ...@@ -19,6 +19,7 @@ define(['stjs', "util/Exceptions"], function (stjs, exceptions) {
prototype.propertyAssignments = null prototype.propertyAssignments = null
prototype.validationPlugin = null prototype.validationPlugin = null
prototype.metaData = null; prototype.metaData = null;
prototype.managedInternally = null;
prototype.getPropertyAssignments = function () { prototype.getPropertyAssignments = function () {
if ( if (
this.getFetchOptions() && this.getFetchOptions() &&
...@@ -85,6 +86,12 @@ define(['stjs', "util/Exceptions"], function (stjs, exceptions) { ...@@ -85,6 +86,12 @@ define(['stjs', "util/Exceptions"], function (stjs, exceptions) {
prototype.setMetaData = function(metaData) { prototype.setMetaData = function(metaData) {
this.metaData = metaData; this.metaData = metaData;
}; };
prototype.isManagedInternally = function() {
return this.managedInternally;
};
prototype.setManagedInternally = function(managedInternally) {
this.managedInternally = managedInternally;
};
prototype.toString = function () { prototype.toString = function () {
return this.getCode() return this.getCode()
} }
......
...@@ -12,6 +12,7 @@ define([ "stjs" ], function(stjs) { ...@@ -12,6 +12,7 @@ define([ "stjs" ], function(stjs) {
prototype.validationPluginId = null; prototype.validationPluginId = null;
prototype.propertyAssignments = null; prototype.propertyAssignments = null;
prototype.metaData = null; prototype.metaData = null;
prototype.managedInternally = null;
prototype.getCode = function() { prototype.getCode = function() {
return this.code; return this.code;
...@@ -43,6 +44,12 @@ define([ "stjs" ], function(stjs) { ...@@ -43,6 +44,12 @@ define([ "stjs" ], function(stjs) {
prototype.setMetaData = function(metaData) { prototype.setMetaData = function(metaData) {
this.metaData = metaData; this.metaData = metaData;
}; };
prototype.isManagedInternally = function() {
return this.managedInternally;
};
prototype.setManagedInternally = function(managedInternally) {
this.managedInternally = managedInternally;
};
}, { }, {
validationPluginId : "IPluginId", validationPluginId : "IPluginId",
......
...@@ -18,6 +18,7 @@ define(['stjs', 'util/Exceptions'], function (stjs, exceptions) { ...@@ -18,6 +18,7 @@ define(['stjs', 'util/Exceptions'], function (stjs, exceptions) {
prototype.modificationDate = null prototype.modificationDate = null
prototype.propertyAssignments = null prototype.propertyAssignments = null
prototype.validationPlugin = null prototype.validationPlugin = null
prototype.managedInternally = null
prototype.getPropertyAssignments = function () { prototype.getPropertyAssignments = function () {
if ( if (
this.getFetchOptions() && this.getFetchOptions() &&
...@@ -78,6 +79,12 @@ define(['stjs', 'util/Exceptions'], function (stjs, exceptions) { ...@@ -78,6 +79,12 @@ define(['stjs', 'util/Exceptions'], function (stjs, exceptions) {
prototype.setModificationDate = function (modificationDate) { prototype.setModificationDate = function (modificationDate) {
this.modificationDate = modificationDate this.modificationDate = modificationDate
} }
prototype.isManagedInternally = function() {
return this.managedInternally;
};
prototype.setManagedInternally = function(managedInternally) {
this.managedInternally = managedInternally;
};
prototype.toString = function () { prototype.toString = function () {
return this.getCode() return this.getCode()
} }
......
...@@ -11,6 +11,7 @@ define([ "stjs" ], function(stjs) { ...@@ -11,6 +11,7 @@ define([ "stjs" ], function(stjs) {
prototype.description = null; prototype.description = null;
prototype.validationPluginId = null; prototype.validationPluginId = null;
prototype.propertyAssignments = null; prototype.propertyAssignments = null;
prototype.managedInternally = null;
prototype.getCode = function() { prototype.getCode = function() {
return this.code; return this.code;
...@@ -36,6 +37,12 @@ define([ "stjs" ], function(stjs) { ...@@ -36,6 +37,12 @@ define([ "stjs" ], function(stjs) {
prototype.setPropertyAssignments = function(propertyAssignments) { prototype.setPropertyAssignments = function(propertyAssignments) {
this.propertyAssignments = propertyAssignments; this.propertyAssignments = propertyAssignments;
}; };
prototype.isManagedInternally = function() {
return this.managedInternally;
};
prototype.setManagedInternally = function(managedInternally) {
this.managedInternally = managedInternally;
};
}, { }, {
validationPluginId : "IPluginId", validationPluginId : "IPluginId",
......
...@@ -27,6 +27,7 @@ define(['stjs', "util/Exceptions"], function (stjs, exceptions) { ...@@ -27,6 +27,7 @@ define(['stjs', "util/Exceptions"], function (stjs, exceptions) {
prototype.semanticAnnotations = null prototype.semanticAnnotations = null
prototype.validationPlugin = null prototype.validationPlugin = null
prototype.metaData = null; prototype.metaData = null;
prototype.managedInternally = null;
prototype.getPropertyAssignments = function () { prototype.getPropertyAssignments = function () {
if ( if (
this.getFetchOptions() && this.getFetchOptions() &&
...@@ -150,6 +151,12 @@ define(['stjs', "util/Exceptions"], function (stjs, exceptions) { ...@@ -150,6 +151,12 @@ define(['stjs', "util/Exceptions"], function (stjs, exceptions) {
prototype.setMetaData = function(metaData) { prototype.setMetaData = function(metaData) {
this.metaData = metaData; this.metaData = metaData;
}; };
prototype.isManagedInternally = function() {
return this.managedInternally;
};
prototype.setManagedInternally = function(managedInternally) {
this.managedInternally = managedInternally;
};
prototype.toString = function () { prototype.toString = function () {
return this.getCode() return this.getCode()
} }
......
...@@ -19,6 +19,7 @@ define([ "stjs" ], function(stjs) { ...@@ -19,6 +19,7 @@ define([ "stjs" ], function(stjs) {
prototype.validationPluginId = null; prototype.validationPluginId = null;
prototype.propertyAssignments = null; prototype.propertyAssignments = null;
prototype.metaData = null; prototype.metaData = null;
prototype.managedInternally = null;
prototype.getCode = function() { prototype.getCode = function() {
return this.code; return this.code;
...@@ -92,6 +93,12 @@ define([ "stjs" ], function(stjs) { ...@@ -92,6 +93,12 @@ define([ "stjs" ], function(stjs) {
prototype.setMetaData = function(metaData) { prototype.setMetaData = function(metaData) {
this.metaData = metaData; this.metaData = metaData;
}; };
prototype.isManagedInternally = function() {
return this.managedInternally;
};
prototype.setManagedInternally = function(managedInternally) {
this.managedInternally = managedInternally;
};
}, { }, {
validationPluginId : "IPluginId", validationPluginId : "IPluginId",
......
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