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 +----------------- +
| 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. |