chessgame

RESTful chessgame developed with kotlin

View on GitHub

htwdd.chessgame.server.controller / PlayerController / getPlayerById

getPlayerById

@GetMapping(["application/json", "application/xml"], ["/{id}"]) @ResponseBody fun getPlayerById(@PathVariable id: Int, response: HttpServletResponse): ResponseEntity<Player>

Handle the GET request for URI /matches/{id}

Parameters

id - Identifier for a single match

Author Felix Dimmel

Return Single match by an id

Since 1.0.0