MCPcopy Index your code
hub / github.com/aws-samples/eb-java-scorekeep / getMove

Method getMove

src/main/java/scorekeep/MoveFactory.java:78–80  ·  view source on GitHub ↗
(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

Calls 1

loadMoveMethod · 0.80

Tested by

no test coverage detected