Method
getMove
(String sessionId, String gameId, String moveId)
Source from the content-addressed store, hash-verified
| 76 | } |
| 77 | |
| 78 | public Move getMove(String sessionId, String gameId, String moveId) throws SessionNotFoundException, MoveNotFoundException { |
| 79 | return moveModel.loadMove(moveId); |
| 80 | } |
| 81 | |
| 82 | public List<Move> getMoves(String sessionId, String gameId) throws SessionNotFoundException, GameNotFoundException { |
| 83 | return moveModel.loadMoves(sessionId, gameId); |
Callers
nothing calls this directly
Tested by
no test coverage detected