Skip to content

Commit caec832

Browse files
authoredOct 12, 2023
Update component diagram to include models (#275)
* Update component diagram to include models * Exported .PUML PlantUML diagrams to .SVG
1 parent 1482b28 commit caec832

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
 

‎docs/diagrams/component-overview.puml

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,19 @@ title [Component Overview] HMPPS Integration API
99
System_Ext(consumer, "Consumer Application", "An authenticated consumer of the Integration API.")
1010

1111
Boundary(spring_boot_api, "HMPPS Integration REST API", "Spring Boot Kotlin API"){
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'.")
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'.")
1313
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'")
1414
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.")
1516
}
1617

1718
System_Ext(upstream, "Upstream Systems", "Integrated systems where data is retrieved from.")
1819

19-
2020
Rel(consumer, controller, "Makes API calls to", "JSON/HTTPS")
2121
Rel_Down(controller, service, "Uses")
2222
Rel_Down(service, gateway, "Uses")
2323
Rel_Down(gateway, upstream, "Makes API calls to", "JSON/HTTPS")
24+
Rel_Right(gateway, model, "Uses")
2425

2526
SHOW_DYNAMIC_LEGEND()
2627

0 commit comments

Comments
 (0)