summaryrefslogtreecommitdiff
path: root/uml/api.dot
diff options
context:
space:
mode:
authorFrancois Perrad <francois.perrad@gadz.org>2010-10-19 11:56:42 +0200
committerFrancois Perrad <francois.perrad@gadz.org>2010-10-19 11:56:42 +0200
commit14b93483f15062a3ac3ff2b096561a744a7ac1f2 (patch)
tree5a2b9841faa6fb5ecd0948585240b1db4bad6a10 /uml/api.dot
parentremove max_redirect, add expected_status (diff)
downloadspore-specifications-14b93483f15062a3ac3ff2b096561a744a7ac1f2.tar.gz
UML: remove lua, and improve dot
Diffstat (limited to 'uml/api.dot')
-rw-r--r--uml/api.dot11
1 files changed, 6 insertions, 5 deletions
diff --git a/uml/api.dot b/uml/api.dot
index 1b81647..d5ade1d 100644
--- a/uml/api.dot
+++ b/uml/api.dot
@@ -2,12 +2,13 @@ digraph {
node [shape=record];
- "Method"
- [label="{\N|authentication : boolean\lbase_url : string\ldescription : string\lexpected_status : table&lt;number&gt;\lformats : table&lt;string&gt;\lmethod : string\loptional_params : table&lt;string&gt;\lpath : string\lrequired_params : table&lt;string&gt;\l}"];
-
"API"
- [label="{\N|authentication : boolean\lauthority : string\lbase_url : string\ldescription : string\lformats : table&lt;string&gt;\lmeta : table&lt;string,string&gt;\lmethods : table&lt;string,Method&gt;\lname : string\lversion : string\l}"];
- "API" -> "Method" // attr isa table<string,Method>
+ [label="{\N|methods : map&lt;string,Method&gt;\lname : string\l\lauthentication : boolean\lauthority : string\lbase_url : string\ldescription : string\lformats : array&lt;string&gt;\lmeta : map&lt;string,string&gt;\lversion : string\l}"];
+
+ "API" -> "Method"
[label = "methods", arrowhead = none, arrowtail = odiamond];
+ "Method"
+ [label="{\N|method : string\lpath : string\l\lauthentication : boolean\lbase_url : string\ldescription : string\lexpected_status : array&lt;number&gt;\lformats : array&lt;string&gt;\loptional_params : array&lt;string&gt;\lrequired_params : array&lt;string&gt;\l}"];
+
}