Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Le service est synchrone.

Il est sans état.

...

Séquence représentative de la médiation

Plantuml
actor Client

Client -> Médiation : une opération
activate Médiation
group Enrichissement
	boundary "Service d'enrichissement"
	Médiation -> "Service d'enrichissement"
end


Médiation -> Médiation : routage
group Règles
	Médiation -> "Moteur de règles" : règle
end

boundary "Service Final"
Médiation -> "Service Final" : opération
activate "Service Final"
"Service Final" --> Médiation
deactivate "Service Final"

Médiation --> Client : résultat
deactivate Médiation

...