https://github.com/matmoore/board-game-cupboard-api
Project to learn JAX-RS
https://github.com/matmoore/board-game-cupboard-api
Last synced: about 1 year ago
JSON representation
Project to learn JAX-RS
- Host: GitHub
- URL: https://github.com/matmoore/board-game-cupboard-api
- Owner: MatMoore
- Created: 2018-09-07T14:53:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-07T14:54:15.000Z (over 7 years ago)
- Last Synced: 2025-02-08T13:09:45.337Z (over 1 year ago)
- Language: Java
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Board game cupboard API
This is a project I'm using to learn JAX-RS in Java. It's not a fantastic example of how to design an API.
Code follows the examples from the [Javabrains course](https://javabrains.io/courses/javaee_jaxrs/lessons/Returning-Xml-Response/)
## API
### GET /games
```
[{
"estimatePlaytimeMinutes": 0,
"lastAddedDate": "2018-09-07",
"maxNumberOfPlayers": 0,
"minNumberOfPlayers": 0,
"name": "Terraforming Mars",
"owner": "Mat"
}]
```