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

BIS-723: Renaming of the api methods - js

parent 37c8b85e
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
...@@ -16,9 +16,6 @@ define([ "stjs", "util/Exceptions" ], function(stjs, exceptions) { ...@@ -16,9 +16,6 @@ define([ "stjs", "util/Exceptions" ], function(stjs, exceptions) {
} }
this.properties[propertyName] = propertyValue; this.properties[propertyName] = propertyValue;
}; };
prototype.getPropertyAsString = function(propertyName) {
return this.getProperty(propertyName);
};
prototype.getIntegerProperty = function(propertyName) { prototype.getIntegerProperty = function(propertyName) {
return this.getProperty(propertyName); return this.getProperty(propertyName);
...@@ -26,16 +23,10 @@ define([ "stjs", "util/Exceptions" ], function(stjs, exceptions) { ...@@ -26,16 +23,10 @@ define([ "stjs", "util/Exceptions" ], function(stjs, exceptions) {
prototype.setIntegerProperty = function(propertyName, propertyValue) { prototype.setIntegerProperty = function(propertyName, propertyValue) {
this.setProperty(propertyName, propertyValue); this.setProperty(propertyName, propertyValue);
}; };
prototype.getVarcharProperty = function(propertyName) { prototype.getStringProperty = function(propertyName) {
return this.getProperty(propertyName);
};
prototype.setVarcharProperty = function(propertyName, propertyValue) {
this.setProperty(propertyName, propertyValue);
};
prototype.getMultilineVarcharProperty = function(propertyName) {
return this.getProperty(propertyName); return this.getProperty(propertyName);
}; };
prototype.setMultilineVarcharProperty = function(propertyName, propertyValue) { prototype.setStringProperty = function(propertyName, propertyValue) {
this.setProperty(propertyName, propertyValue); this.setProperty(propertyName, propertyValue);
}; };
prototype.getRealProperty = function(propertyName) { prototype.getRealProperty = function(propertyName) {
...@@ -119,16 +110,10 @@ define([ "stjs", "util/Exceptions" ], function(stjs, exceptions) { ...@@ -119,16 +110,10 @@ define([ "stjs", "util/Exceptions" ], function(stjs, exceptions) {
prototype.setMultiValueIntegerProperty = function(propertyName, propertyValue) { prototype.setMultiValueIntegerProperty = function(propertyName, propertyValue) {
this.setProperty(propertyName, propertyValue); this.setProperty(propertyName, propertyValue);
}; };
prototype.getMultiValueVarcharProperty = function(propertyName) { prototype.getMultiValueStringProperty = function(propertyName) {
return this.getProperty(propertyName);
};
prototype.setMultiValueVarcharProperty = function(propertyName, propertyValue) {
this.setProperty(propertyName, propertyValue);
};
prototype.getMultiValueMultilineVarcharProperty = function(propertyName) {
return this.getProperty(propertyName); return this.getProperty(propertyName);
}; };
prototype.setMultiValueMultilineVarcharProperty = function(propertyName, propertyValue) { prototype.setMultiValueStringProperty = function(propertyName, propertyValue) {
this.setProperty(propertyName, propertyValue); this.setProperty(propertyName, propertyValue);
}; };
prototype.getMultiValueRealProperty = function(propertyName) { prototype.getMultiValueRealProperty = function(propertyName) {
......
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