From a70e75f729b7258cdba81781917025d77c8df15f Mon Sep 17 00:00:00 2001 From: jvelilla Date: Fri, 9 Dec 2011 11:41:58 -0200 Subject: [PATCH] Update examples/restbucksCRUD/readme.md --- examples/restbucksCRUD/readme.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/examples/restbucksCRUD/readme.md b/examples/restbucksCRUD/readme.md index 36079cef..95980042 100644 --- a/examples/restbucksCRUD/readme.md +++ b/examples/restbucksCRUD/readme.md @@ -1,7 +1,11 @@ Restbuck Eiffel Implementation based on the book of REST in Practice ==================================================================== -This is an implementation of CRUD pattern for manipulate resources, this is the first step to use +This is an ihmplementation of CRUD pattern for manipulate resources, this is the first step to use the HTTP protocol as an application protocol instead of a transport protocol. + +Restbuck Protocol +----------------- + @@ -10,6 +14,14 @@ the HTTP protocol as an application protocol instead of a transport protocol.
Verb URI or template Use
POST /order Create a new order, and upon success, receive a Locationheader specifying the new order's URI.
DELETE /order/{orderId} Logically remove the order identified by the given URI.
+Resource Represenation +---------------------- +The previous tables shows a contrat, the URI or URI template, allows us to indentify resources, now we will chose a +representacion, for this particular case we will use JSON. + +Note: _A resource can have multiple URIs_ + _A resource can have multuple Representations_ + RESTBUCKS_SERVER ---------------- This class implement the main entry of our REST CRUD service, we are using a default connector (Nino Connector,