diff --git a/examples/restbucksCRUD/readme.md b/examples/restbucksCRUD/readme.md index 0d11adbe..6de86931 100644 --- a/examples/restbucksCRUD/readme.md +++ b/examples/restbucksCRUD/readme.md @@ -1,13 +1,13 @@ Restbuck Eiffel Implementation based on the book of REST in Practice - -This is an implementation of CRUD web services as is presented in the book - -Verb URI or template Use -POST /order Create a new order, and upon success, receive a Locationheader specifying the new order’s URI. -GET /order/{orderId} Request the current state of the order specified by the URI. -PUT /order/{orderId} Update an order at the given URI with new information, providing the full representation. -DELETE /order/{orderId} Logically remove the order identified by the given URI. - +==================================================================== +This is an implementation of CRUD pattern for manipulate resources +
| Verb | URI or template | Use |
|---|---|---|
| POST | /order | Create a new order, and upon success, receive a Locationheader specifying the new order's URI. |
| GET | /order/{orderId} | Request the current state of the order specified by the URI. |
| PUT | /order/{orderId} | Update an order at the given URI with new information, providing the full representation. |
| DELETE | /order/{orderId} | Logically remove the order identified by the given URI. |