Implemented Registry pattern (#1543)

* #1310 Implemented registry pattern

* fixed parent pom version

* added empty line in registry.urm.puml

Co-authored-by: Subhrodip Mohanta <subhrodipmohanta@gmail.com>
This commit is contained in:
Vivek Singh
2020-12-08 10:34:42 +05:30
committed by GitHub
parent 428cbc1027
commit 14c4710435
9 changed files with 281 additions and 0 deletions

BIN
registry/etc/registry.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,21 @@
@startuml
package com.iluwatar.registry {
class App {
- LOGGER : Logger {static}
+ App()
+ main(args : String[]) {static}
}
class Customer {
- id : String
- name : String
+ getId() : String
+ getName() : String
+ toString() : String
}
class CustomerRegistry {
+ addCustomer(customer : Customer)
+ getCustomer(id : String)
}
}
Customer --> "-addCustomer" CustomerRegistry
@enduml