Advertisement
Guest User

Untitled

a guest
Dec 16th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. @startuml
  2.  
  3. scale 1.3
  4. hide footbox
  5.  
  6. skinparam padding 6
  7.  
  8. skinparam shadowing false
  9.  
  10. skinparam component {
  11. BackgroundColor white
  12. ArrowColor black
  13. BorderColor black
  14. }
  15.  
  16. skinparam database {
  17. BackgroundColor lightblue
  18. ArrowColor SeaGreen
  19. BorderColor black
  20. }
  21.  
  22. skinparam sequence {
  23.  
  24. LifeLineBackgroundColor white
  25. ArrowColor black
  26. BorderColor black
  27. ParticipantBackgroundColor lightblue
  28. ParticipantBorderColor black
  29. LifeLineBorderColor BLACK
  30. ParticipantFontSize 12
  31.  
  32. }
  33.  
  34. skinparam actor {
  35. BackgroundColor lightblue
  36. ArrowColor SeaGreen
  37. BorderColor black
  38. }
  39.  
  40. Actor Utilizador
  41.  
  42. Utilizador -> MáquinaVirtual : Regista-se/Inicia Sessão
  43.  
  44. MáquinaVirtual -> AngularJS : inicia um request
  45.  
  46. group SicCatalogo
  47. AngularJS -> DotNet : HttpRequest()
  48. database SQLServer
  49. DotNet -> SQLServer: fetchData
  50. DotNet -> AngularJS : JSON response
  51. end
  52.  
  53. group SicEncomendas
  54. AngularJS -> NodeJS : HttpRequest()
  55. database MongoDB
  56. NodeJS -> MongoDB : fetchData
  57. NodeJS -> AngularJS : JSON response
  58.  
  59. end
  60.  
  61.  
  62. @enduml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement