mirror of
https://github.com/13hannes11/bachelor_thesis.git
synced 2024-09-04 01:11:00 +02:00
23 lines
385 B
Plaintext
23 lines
385 B
Plaintext
@startuml
|
|
|
|
|
|
skinparam activity {
|
|
BarColor Black
|
|
BackgroundColor White
|
|
BorderColor Black
|
|
}
|
|
|
|
|
|
(*) --> "Using MAUT create partial configuration based on preferences"
|
|
--> validate and repair configuration
|
|
--> "save in db"
|
|
|
|
if "has better configruation in db" then
|
|
-->"use best in db"
|
|
--> (*)
|
|
else
|
|
--> "use generated"
|
|
--> (*)
|
|
endif
|
|
|
|
@enduml |