java-design-patterns/eip-aggregator/etc/eip-aggregator.urm.puml

14 lines
322 B
Plaintext
Raw Normal View History

2019-12-07 18:03:49 +02:00
@startuml
package com.iluwatar.eip.aggregator {
class App {
+ App()
+ main(args : String[]) {static}
}
}
package com.iluwatar.eip.aggregator.routes {
class MessageAggregationStrategy {
+ MessageAggregationStrategy()
+ aggregate(oldExchange : Exchange, newExchange : Exchange) : Exchange
}
}
@enduml