Created
April 3, 2018 00:03
-
-
Save arnaudbos/3395143e7aee4b50990254b85c603502 to your computer and use it in GitHub Desktop.
MKP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml | |
(*) --> if "MonkeyPatchable?" then | |
-right->[YES] "Contact téléphonique" | |
-right-> if "Match?" then | |
-right-> [YES] "Entretien contact" as e1 | |
else | |
-left-> [NO] (*) | |
endif | |
else | |
-left->[NO] "No Go" | |
if "Candidature?" then | |
--> [YES] "Refus téléphonique" as niet | |
--> (*) | |
else | |
--> [NO] (*) | |
endif | |
endif | |
e1 -right-> if "" then | |
-right->[OK] "Test technique" | |
--> "Peer review" | |
--> "Entretien technique" as e2 | |
else | |
-->[NOK] "No Go" as nogo | |
--> niet | |
endif | |
e2 --> if "" then | |
-->[OK] if "Derniers doutes?" then | |
-->[YES] "Entretien complémentaire" as e2bis | |
else | |
-->[NO] "Entretien d'embauche" as e3 | |
endif | |
else | |
-->[NOK] nogo | |
endif | |
e2bis --> if "" then | |
-->[OK] e3 | |
else | |
-->[NOK] nogo | |
endif | |
e3 --> if "Offre acceptée?" then | |
-->[YES] "Monkey!" | |
else | |
-->[NO] (*) | |
endif | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment