You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Container(controller, "Controller", "Spring Boot API Controller", "Receives the request, uses Spring Boot functionality to route to the correct method, also validates incoming requests. Each method has a matching service. Also commonly known as a 'resource'.")
12
+
Container(controller, "Controller", "Spring Boot API Controller", "Receives the request, uses Spring Boot functionality to route to the correct method, also validates incoming requests. Each method has a matching service. Also commonly known as a 'resource'.")
13
13
Container(service, "Service", "Spring Boot Service Bean", "Responsible for deciding which gateways to call to get the necessary data, as well as consolidating responses from one or many gateways. Also commonly known as a 'use case'")
14
14
Container(gateway, "Gateway", "Spring Boot Component Bean", "Makes a request on upstream systems to return data to the calling service. Converts response data into domain models for the service.")
15
+
Container(model, "Model", "Kotlin Data Class", "Represents the response data of an upstream API and our API. Each data class includes a mapping function which transforms the relevant upstream API model into our HMPPS model.")
15
16
}
16
17
17
18
System_Ext(upstream, "Upstream Systems", "Integrated systems where data is retrieved from.")
18
19
19
-
20
20
Rel(consumer, controller, "Makes API calls to", "JSON/HTTPS")
21
21
Rel_Down(controller, service, "Uses")
22
22
Rel_Down(service, gateway, "Uses")
23
23
Rel_Down(gateway, upstream, "Makes API calls to", "JSON/HTTPS")
0 commit comments