Updated documentation

This commit is contained in:
jvelilla
2011-12-08 20:04:39 -02:00
parent d961544b8b
commit 0dd2812574

View File

@@ -1,13 +1,13 @@
Restbuck Eiffel Implementation based on the book of REST in Practice 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 This is an implementation of CRUD pattern for manipulate resources
<table>
Verb URI or template Use <TR><TH>Verb</TH> <TH>URI or template</TH> <TH>Use</TH></TR>
POST /order Create a new order, and upon success, receive a Locationheader specifying the new order<EFBFBD>s URI. <TR><TD>POST</TD> <TD>/order</TD> <TD>Create a new order, and upon success, receive a Locationheader specifying the new order's URI.</TD></TR>
GET /order/{orderId} Request the current state of the order specified by the URI. <TR><TD>GET</TD> <TD>/order/{orderId}</TD> <TD>Request the current state of the order specified by the URI.</TD></TR>
PUT /order/{orderId} Update an order at the given URI with new information, providing the full representation. <TR><TD>PUT</TD> <TD>/order/{orderId}</TD> <TD>Update an order at the given URI with new information, providing the full representation.</TD></TR>
DELETE /order/{orderId} Logically remove the order identified by the given URI. <TR><TD>DELETE</TD> <TD>/order/{orderId}</TD> <TD>Logically remove the order identified by the given URI.</TD></TR>
</table>
How to Create an order How to Create an order