/* Liste */ GET http://dev-sli.fr/RestAPI_Ex2/list/ http://dev-sli.fr/RestAPI_Ex2/list/2/ /* Create */ POST http://dev-sli.fr/RestAPI_Ex2/create/ {"name":"aname","model":"amodel","color":"acolor"} /* Update */ POST http://dev-sli.fr/RestAPI_Ex2/update/ {"id":"5","name":"bname","model":"bmodel","color":"bcolor"} POST http://dev-sli.fr/RestAPI_Ex2/update/5/ {"name":"cname","model":"cmodel","color":"ccolor"} /* Delete */ DELETE http://dev-sli.fr/RestAPI_Ex2/delete/5/ Fin