Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
define([ "stjs", "util/Exceptions" ], function(stjs, exceptions) {
var CustomDSSService = function() {
};
stjs.extend(CustomDSSService, null, [], function(constructor, prototype) {
prototype['@type'] = 'dss.dto.service.CustomDSSService';
constructor.serialVersionUID = 1;
prototype.fetchOptions = null;
prototype.code = null;
prototype.label = null;
prototype.description = null;
prototype.getFetchOptions = function() {
return this.fetchOptions;
};
prototype.setFetchOptions = function(fetchOptions) {
this.fetchOptions = fetchOptions;
};
prototype.getCode = function() {
return this.code;
};
prototype.setCode = function(code) {
this.code = code;
};
prototype.getLabel = function() {
return this.label;
};
prototype.setLabel = function(label) {
this.label = label;
};
prototype.getDescription = function() {
return this.description;
};
prototype.setDescription = function(description) {
this.description = description;
};
prototype.toString = function() {
return "CustomDSSService " + this.code;
};
}, {
fetchOptions : "CustomDSSServiceFetchOptions",
code: "CustomDSSServiceCode"
});
return CustomDSSService;
})