Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 KB | None | 0 0
  1. We can see that some contexts are connected by a line, and each connection line contains an *u* and a *d*. This letters have meanings:
  2.  
  3. - **u**, short from *up*, means that that end of the connection is sharing information;
  4. - **d**, short from *down*, means that that end of the connection is receiving information;
  5.  
  6. All this connections between contexts can be justified:
  7.  
  8. | **Receiver** | **Sender** | **Justification** |
  9. |:------------------:|:------------------:|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|
  10. | **Items** | **Authentication** | Some item related actions require authentication, to ensure that it is a trust-worthy user executing them |
  11. | | **Meals** | Some item related actions require meal information (i.e.: show item ingredients, allergens and nutritional values) |
  12. | | **POS** | Some item related actions require POS information (i.e.: indicate where the item currently is available) |
  13. | **Logs** | **Authentication** | Some logs related actions require authentication information, to record who authenticates in the application, and when |
  14. | | **Items** | Some logs related actions require items information, to record who creates new items (or updates them), and when |
  15. | | **Meals** | Some logs related actions require meals information, to record who creates new meals (or updates them), and when |
  16. | **Meals** | **Authentication** | Some meal related actions require authentication, to ensure that it is a trust-worthy user executing them |
  17. | **Points of Sale** | **Authentication** | Some POS related actions require authentication, to ensure that it is a trust-worthy user executing them |
  18. | **Purchases** | **Authentication** | Some purchase related actions require authentication, to ensure that it is a trust-worthy user executing them. Also, some actions also need the logged in user information to be recorded |
  19. | | **Items** | Some purchase related actions need items information, in order to record which item is purchased (or to view which item was sold) |
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement