Notes From CS Undergrad Courses FSU
This project is maintained by awa03
Services are reusable components that are independent and are loosely coupled
Name | Definition |
---|---|
Post | Create a new resource on the server. The client sends data to the server, and the server creates a new resource based on that data. |
Get | Read a value of resource and return that to requestor |
Put | Update a resource on the server. The client sends data to the server, and the server updates the resource based on that data. If the resource does not exist, it may be created. |
Delete | Remove a resource from the server. The client sends a request to the server, and the server deletes the specified resource. |