GettinDatFoShow / capstone-dsu-fall-2017-Rose-Rob-inventory-project

capstone-dsu-fall-2017-Rose-Rob-inventory-project
0 stars 0 forks source link

REST endpoints #5

Open GettinDatFoShow opened 7 years ago

GettinDatFoShow commented 7 years ago

REST endpoints are a written in the java/spring part of the application. These endpoints will intercept the http request from the front end, and respond accordingly. example being, the front end makes a request for, lets say in our case, it provides a json object in the form of a room, and would like a list of the items contained there in.

GettinDatFoShow commented 7 years ago

Room get request - item list response Building get request - Room list response Item get request - item info response item post request - database room update item info post request - db info update Room item list update post request - db room list update (possible this could be done by just updating the item info to be a part of that room) (includes a mapping to it) various other queries could include, getting a room by nfc code, getting or adding an item via qr or bar code.

if you think of more please update the comments here, but these need to be broken into their own issues and created one at a time on their own branches and merged together, so may be grouped into one project issue if that is easier.