Blame view

doc/uml/activities/routine_manager/import_request_act.txt 357 Bytes
164eebbd   haribo   UML and comments
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@startuml

(*) --> "Get path to the file to import"
	--> if "File exists and is valid XML"
		--> [Yes] "Unserialize file"
		--> if "Error of name, type or order during unserialization"
			--> [Yes] "Display error message"
		else
			--> [No] "Create related objects in DB"
			--> (*)
		endif
	else
		--> [No] "Display error message"
		--> (*)
	endif

@enduml