Newer
Older
/**
* represents an abstract communication which groups multiple CommunicationInstances
* @class Communication
*/
/**
* name of the technology used for communication
* @property technology
* @type String
*/
* id of the receiving ServiceInstance
* @property targetId
/**
* The amount of workload. Shows how many requests where sent via this connection
* @property workload
* @type Number
*/
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
Model.reopenClass({
FIXTURES: [
{
"type":"communication",
"id":"test-system123-communication-1",
"changelogSequence":0,
"lastUpdate":"2016-06-20T12:46:29.818+02:00",
"revisionNumber":0,
"systemId":"system123",
"sourceId":"test-system123-service-1",
"targetId":"test-system123-service-2",
"technology":"REST"
},
{
"type":"communication",
"id":"test-system123-communication-2",
"changelogSequence":0,
"lastUpdate":"2016-06-20T12:46:29.818+02:00",
"revisionNumber":0,
"systemId":"system123",
"sourceId":"test-system123-service-2",
"targetId":"test-system123-service-3",
"technology":"TCP/IP"
},
{
"type":"communication",
"id":"test-system123-communication-3",
"changelogSequence":0,
"lastUpdate":"2016-06-20T12:46:29.818+02:00",
"revisionNumber":0,
"systemId":"system123",
"sourceId":"test-system123-service-3",
"targetId":"test-system123-service-4",
"technology":"TCP/IP"
},
{
"type":"communication",
"id":"test-system123-communication-4",
"changelogSequence":0,
"lastUpdate":"2016-06-20T12:46:29.818+02:00",
"revisionNumber":0,
"systemId":"system123",
"sourceId":"test-system123-service-3",
"targetId":"test-system123-service-5",
"technology":"TCP/IP"
},
{
"type":"communication",
"id":"test-system123-communication-5",
"changelogSequence":0,
"lastUpdate":"2016-06-20T12:46:29.818+02:00",
"revisionNumber":0,
"systemId":"system123",
"sourceId":"test-system123-service-4",
"targetId":"test-system123-service-5",
"technology":"TCP/IP"
},
{
"type":"communication",
"id":"test-system123-communication-6",
"changelogSequence":0,
"lastUpdate":"2016-06-20T12:46:29.818+02:00",
"revisionNumber":0,
"systemId":"system123",
"sourceId":"test-system123-service-5",
"targetId":"test-system123-service-6",
"technology":"TCP/IP"
}
]
});
export default Model;