summaryrefslogtreecommitdiff
path: root/docs/oauth2/oauth2provider-legend.dot
diff options
context:
space:
mode:
authorJonathan Huot <JonathanHuot@users.noreply.github.com>2019-01-07 22:19:17 +0100
committerGitHub <noreply@github.com>2019-01-07 22:19:17 +0100
commit9dfa40c3bdab3aa788e711283afdf36c2fbdd1de (patch)
tree77690d2dcdd22050e04f45205ab6514a2cde72ff /docs/oauth2/oauth2provider-legend.dot
parentb79b5511b01c230037abee5b636f6f03378c93f1 (diff)
parentfa0b1549546d8c7dc1045ea637a8f8afd0d39a83 (diff)
downloadoauthlib-9dfa40c3bdab3aa788e711283afdf36c2fbdd1de.tar.gz
Merge pull request #639 from oauthlib/3-releasev3.0.0
3.0.0 ChangeLog release
Diffstat (limited to 'docs/oauth2/oauth2provider-legend.dot')
-rw-r--r--docs/oauth2/oauth2provider-legend.dot32
1 files changed, 32 insertions, 0 deletions
diff --git a/docs/oauth2/oauth2provider-legend.dot b/docs/oauth2/oauth2provider-legend.dot
new file mode 100644
index 0000000..746ac2b
--- /dev/null
+++ b/docs/oauth2/oauth2provider-legend.dot
@@ -0,0 +1,32 @@
+digraph oauthlib_legend {
+
+ subgraph cluster_legend {
+ label="Legend";
+
+ /*
+ method [ shape=record; label="{{RequestValidator\nmethod name|arguments}|return values}" ];
+ endpoint [ shape=record; label="{Endpoint name|{function name|arguments}|grant type}" ];
+ webframework [ shape=hexagon; label="Upstream functions" ];
+ */
+
+ flow_code_token [shape=none,label="Authorization Code\nAccess Token Request"];
+ flow_code_auth [shape=none,label="Authorization Code\nAuthorization Request"];
+ flow_implicit [shape=none,label="Implicit Grant"];
+ flow_password [shape=none,label="Resource Owner Password\nCredentials Grant"];
+ flow_clicreds [shape=none,label="Client Credentials Grant"];
+ flow_refresh [shape=none,label="Refresh Grant"];
+ flow_introspect [shape=none,label="Token Introspection"];
+ flow_revoke [shape=none,label="Token Revoke"];
+ flow_resource [shape=none,label="Resource Access"];
+ flow_code_token -> a [style=bold,color=green];
+ flow_code_auth -> b [style=bold,color=darkgreen];
+ flow_implicit -> c [style=bold,color=orange];
+ flow_password -> d [style=bold,color=red];
+ flow_clicreds -> e [style=bold,color=blue];
+ flow_refresh -> f [style=bold,color=brown];
+ flow_introspect -> g [style=bold,color=yellow];
+ flow_revoke -> h [style=bold,color=purple];
+ flow_resource -> i [style=bold,color=pink];
+ a, b, c, d, e, f, g, h, i [shape=none,label=""];
+ }
+}