Account

From zooid Wiki
Revision as of 12:19, 8 April 2015 by DavidM (talk | contribs) (Created page with "<div class="seqdiag" style="height: 600px"> seqdiag { AccountApp; AccountActions; AccountStore; Service; AccountApp -> AccountApp [label = "render form"]; Acco...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

seqdiag {

 AccountApp;
 AccountActions;
 AccountStore;
 Service;


 AccountApp -> AccountApp [label =  "render form"];
 AccountApp -> AccountActions [label = "credentials changed"];
 AccountActions -> AccountStore [label = "credentials changed"];
 AccountStore -> AccountActions [label = "update credentials state"];
 AccountActions -> AccountApp [label = "update credentials state"];
 AccountApp -> AccountApp [label =  "render form"];
 AccountApp -> AccountActions [label = "submit credentials"];
 AccountActions -> AccountStore [label = "submit credentials"];
 AccountStore --> Service [label = "validate credentials"];
 Service --> AccountStore [label = "validation result"];
 AccountStore -> AccountActions [label = "validation result"];
 AccountActions -> AccountApp [label ="validation result"];

}