Commit 603229b3 authored by Juraj Fiala's avatar Juraj Fiala
Browse files

fix: Standardize UML assotiations

parent 47ea1abc
Pipeline #122935 waiting for manual action with stage
......@@ -23,7 +23,6 @@ class Mission {
start: Date
duration: Time
objectives: string
materialResources: Resource[]
}
'k assignmentu
......@@ -71,14 +70,14 @@ enum WeaponCategory {
explosives
}
Mission o--> Country: targetCountry
Mission *-> AgentAssignment : includes >
AgentAssignment <-o Agent : has >
AgentAssignment *--> Report
AgentAssignment *--> PerformanceEvaluation
Agent "1" *--> "1..*" Skill : has >
Mission "1" --> "1..*" Resource
WeaponSkill o--> WeaponCategory : weaponCategory
LanguageSkill o--> LanguageCode : languageCode
Mission "1..*" o--> "1" Country : targetCountry
Mission "1..*" *-> "1" AgentAssignment : assignments
AgentAssignment "1..*" o-> "1" Agent : agent
AgentAssignment "1" *--> "1..*" Report : reports
AgentAssignment "1" *--> "1..*" PerformanceEvaluation : performanceEvaluations
Agent "1" *--> "1..*" Skill : skills
Mission "1" *--> "1..*" Resource : materialResources
WeaponSkill "1" o--> "1" WeaponCategory : weaponCategory
LanguageSkill "1" o--> "1" LanguageCode : languageCode
@enduml
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment