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

BIS-1002: Added internal property assignment feature

parent 80bf8872
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
......@@ -19,6 +19,7 @@ define([ "stjs", "util/Exceptions" ], function(stjs, exceptions) {
prototype.registrationDate = null;
prototype.plugin = null;
prototype.unique = null;
prototype.managedInternally = null;
prototype.getFetchOptions = function() {
return this.fetchOptions;
......@@ -134,6 +135,12 @@ define([ "stjs", "util/Exceptions" ], function(stjs, exceptions) {
prototype.isUnique = function() {
return this.unique;
};
prototype.isManagedInternally = function() {
return this.managedInternally;
};
prototype.setManagedInternally = function(managedInternally) {
this.managedInternally = managedInternally;
};
}, {
fetchOptions : "PropertyAssignmentFetchOptions",
permId: "PropertyAssignmentPermId",
......
......@@ -16,6 +16,7 @@ define([ "stjs" ], function(stjs) {
prototype.showInEditView = false;
prototype.showRawValueInForms = false;
prototype.unique = false;
prototype.managedInternally = false;
prototype.getSection = function() {
return this.section;
......@@ -71,6 +72,12 @@ define([ "stjs" ], function(stjs) {
prototype.setUnique = function(unique) {
this.unique = unique;
};
prototype.isManagedInternally = function() {
return this.managedInternally;
};
prototype.setManagedInternally = function(managedInternally) {
this.managedInternally = managedInternally;
};
}, {
propertyTypeId : "IPropertyTypeId",
pluginId : "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