* #1310 Implemented registry pattern * fixed parent pom version * added empty line in registry.urm.puml Co-authored-by: Subhrodip Mohanta <subhrodipmohanta@gmail.com>
22 lines
431 B
Plaintext
22 lines
431 B
Plaintext
@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
|