Skip to content
Snippets Groups Projects
Commit 97eabbaf authored by felmer's avatar felmer
Browse files

SSDM-2718: extending JS facade of V3 API by ExecutionOptions.js

SVN: 35361
parent 09afc9d1
No related branches found
No related tags found
No related merge requests found
define([ "stjs"], function(stjs) {
var ExecutionOptions = function() {
this.parameters = {};
};
stjs.extend(ExecutionOptions, null, [ ], function(constructor, prototype) {
prototype['@type'] = 'dto.service.ExecutionOptions';
constructor.serialVersionUID = 1;
prototype.parameters = null;
prototype.withParameter = function(parameterName, value) {
this.parameters[parameterName] = value;
}
proptotype.getParameters = function() {
return this.parameters;
}
}, {
parameters : {
name : "Map",
arguments : [ null, null ]
}
});
return ExecutionOptions;
})
\ 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