Use case overview

The three flow diagrams present on this page display the relation between use cases. This relation is based on which use cases can be triggered by a given use case, therefore giving a representation on which flows a user can have between various use cases. For readability the relations between the various use cases are divided into 3 diagrams, one showing the use case flow for opening and onboarding the app, the second displays the use case flow from the app dashboard, and the third showing the use case flow from viewing the app menu.



Opening and onboarding use case flow

        flowchart LR
INTRODUCE["<a href='use-cases/UC1.1_IntroduceTheApp.html'>1.1 Introduce the app</a>"]
OPEN["<a href='use-cases/UC1.2_OpenTheApp.html'>1.2 Open the app</a>"]

SETUP_PIN["<a href='use-cases/UC2.1_SetupRemotePinAndBiometricsUnlock.html'>2.1 Setup PIN & biometrics</a>"]
UNLOCK["<a href='use-cases/UC2.3_UnlockTheApp.html'>2.3 Unlock the app</a>"]

OBTAIN_PID["<a href='use-cases/UC3.1_ObtainPidFromProvider.html'>3.1 Obtain PID</a>"]

ALL_CARDS["<a href='use-cases/UC7.1_ShowAllAvailableCards.html'>7.1 Show all cards</a>"]

APP_INFO["<a href='use-cases/UC9.2_GetAppInformation.html'>9.2 Get app info</a>"]
WIPE["<a href='use-cases/UC9.4_WipeAllAppData.html'>9.4 Wipe app data</a>"]

OPEN --> UNLOCK
OPEN --> INTRODUCE

UNLOCK --> ALL_CARDS
UNLOCK --> OBTAIN_PID
UNLOCK --> APP_INFO
UNLOCK --> WIPE

INTRODUCE --> SETUP_PIN

OBTAIN_PID --> ALL_CARDS

WIPE --> INTRODUCE

SETUP_PIN --> OBTAIN_PID
SETUP_PIN --> APP_INFO

    




Dashboard use case flow

The two circle nodes in the flow diagram underneath depict the same point in the flow. When user reaches the second circle node the user will start again at the first circle node.

        flowchart LR
START((" "))
END((" "))
APP_TOUR["<a href='use-cases/UC1.3_AppTour.html'>1.3 Watch explainer videos</a>"]

OBTAIN_CARDS["<a href='use-cases/UC4.1_ObtainCardsFromEAAIssuer.html'>4.1 Obtain EAA</a>"]

SHARE["<a href='use-cases/UC5.1_ShareDataWithRP.html'>5.1 Share data with RP</a>"]
LOGIN["<a href='use-cases/UC5.2_LoginToApplicationOfRP.html'>5.2 Log in to RP</a>"]

ALL_HISTORY["<a href='use-cases/UC6.1_ShowCompleteUsageAndManagementHistory.html'>6.1 Browse app activity</a>"]
CARD_HISTORY["<a href='use-cases/UC6.2_ShowUsageAndManagementHistoryOfCard.html'>6.2 Browse card activity</a>"]
HISTORY_EVENT["<a href='use-cases/UC6.3_ShowHistoryEvent.html'>6.3 View activity details</a>"]

ALL_CARDS["<a href='use-cases/UC7.1_ShowAllAvailableCards.html'>7.1 Show all cards</a>"]
CARD["<a href='use-cases/UC7.2_ShowCardDetails.html'>7.2 View card Details</a>"]

MENU["<a href='use-cases/UC9.1_ShowAppMenu.html'>9.1 View app menu</a>"]
APP_INFO["<a href='use-cases/UC9.2_GetAppInformation.html'>9.2 Get app info</a>"]
QR["<a href='use-cases/UC9.9_ScanQR.html'>9.9 Scan QR</a>"]

START --> ALL_CARDS

ALL_CARDS --> APP_TOUR
ALL_CARDS --> MENU
ALL_CARDS --> QR
ALL_CARDS --> ALL_HISTORY
ALL_CARDS --> CARD
ALL_CARDS --> APP_INFO

OBTAIN_CARDS --> END

SHARE --> END

LOGIN --> END

QR --> OBTAIN_CARDS
QR --> SHARE
QR --> LOGIN

ALL_HISTORY --> HISTORY_EVENT

CARD_HISTORY --> HISTORY_EVENT

CARD --> CARD_HISTORY