-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspring-integration-get-graph-example.json
More file actions
68 lines (68 loc) · 2.2 KB
/
Copy pathspring-integration-get-graph-example.json
File metadata and controls
68 lines (68 loc) · 2.2 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"example": "Get Integration Graph",
"description": "Example response from GET /api/graph showing a Spring Integration message flow",
"request": {
"method": "GET",
"url": "http://localhost:8080/api/graph",
"headers": {
"Accept": "application/json"
}
},
"response": {
"status": 200,
"headers": {
"Content-Type": "application/json"
},
"body": {
"contentDescriptor": {
"providerVersion": "6.3.0",
"providerFormatVersion": 1.2,
"provider": "spring-integration"
},
"nodes": [
{
"nodeId": 1,
"name": "inputChannel",
"componentType": "org.springframework.integration.channel.DirectChannel",
"integrationPatternType": "channel",
"integrationPatternCategory": "messaging_channel"
},
{
"nodeId": 2,
"name": "transformingHandler",
"componentType": "org.springframework.integration.transformer.MessageTransformingHandler",
"integrationPatternType": "transformer",
"integrationPatternCategory": "message_transformation"
},
{
"nodeId": 3,
"name": "outputChannel",
"componentType": "org.springframework.integration.channel.DirectChannel",
"integrationPatternType": "channel",
"integrationPatternCategory": "messaging_channel"
},
{
"nodeId": 4,
"name": "fileInboundAdapter",
"componentType": "org.springframework.integration.file.FileReadingMessageSource",
"integrationPatternType": "inbound_channel_adapter",
"integrationPatternCategory": "messaging_endpoint",
"running": true
},
{
"nodeId": 5,
"name": "routerHandler",
"componentType": "org.springframework.integration.router.HeaderValueRouter",
"integrationPatternType": "router",
"integrationPatternCategory": "message_routing"
}
],
"links": [
{ "from": 4, "to": 1, "type": "output" },
{ "from": 1, "to": 2, "type": "input" },
{ "from": 2, "to": 3, "type": "output" },
{ "from": 3, "to": 5, "type": "input" }
]
}
}
}