Uses of Class
org.powertac.visualizer.domain.Game
-
Packages that use Game Package Description org.powertac.visualizer.repository Spring Data JPA repositories.org.powertac.visualizer.service Service layer beans.org.powertac.visualizer.service_ptac org.powertac.visualizer.web.rest Spring MVC REST controllers. -
-
Uses of Game in org.powertac.visualizer.repository
Methods in org.powertac.visualizer.repository that return types with arguments of type Game Modifier and Type Method Description List<Game>
GameRepository. findByAssociatedFile(File file)
List<Game>
GameRepository. findByNameAndType(String login, String name, GameType type)
List<Game>
GameRepository. findByNameAndType(String name, GameType type)
List<Game>
GameRepository. findByOwnerIsCurrentUser()
List<Game>
GameRepository. findByOwnerIsCurrentUserOrShared()
List<Game>
GameRepository. findByOwnerIsCurrentUserOrShared(String login)
-
Uses of Game in org.powertac.visualizer.service
Methods in org.powertac.visualizer.service that return Game Modifier and Type Method Description Game
GameService. save(Game game)
Save a game.Methods in org.powertac.visualizer.service that return types with arguments of type Game Modifier and Type Method Description org.springframework.data.domain.Page<Game>
GameService. findAll(org.springframework.data.domain.Pageable pageable)
Get all the games.List<Game>
GameService. findByAssociatedFile(File file)
List<Game>
GameService. findByNameAndType(String login, String name, GameType type)
Get one game by login, name and type.List<Game>
GameService. findByOwnerIsCurrentUserOrShared(String login)
Get all the games owned by this user, plus all shared games.Optional<Game>
GameService. findOne(Long id)
Get one game by id.Methods in org.powertac.visualizer.service with parameters of type Game Modifier and Type Method Description void
GameService. delete(Game game)
Delete the game.Game
GameService. save(Game game)
Save a game. -
Uses of Game in org.powertac.visualizer.service_ptac
Methods in org.powertac.visualizer.service_ptac with parameters of type Game Modifier and Type Method Description String
EmbeddedService. runBootGame(Game game, User user)
String
EmbeddedService. runSimGame(Game game, User user)
-
Uses of Game in org.powertac.visualizer.web.rest
Methods in org.powertac.visualizer.web.rest that return types with arguments of type Game Modifier and Type Method Description org.springframework.http.ResponseEntity<Game>
GameResource. bootGame(@Valid Game game, @Valid @NotNull Boolean overwrite)
org.springframework.http.ResponseEntity<Game>
GameResource. createGame(@Valid Game game)
POST /games : Create a new game.org.springframework.http.ResponseEntity<List<Game>>
GameResource. getAllGames(org.springframework.data.domain.Pageable pageable)
GET /games : get all the games.org.springframework.http.ResponseEntity<Game>
GameResource. getGame(Long id)
GET /games/:id : get the "id" game.org.springframework.http.ResponseEntity<List<Game>>
GameResource. getMyGames()
Get all games owned by logged in user, plus all shared files.org.springframework.http.ResponseEntity<Game>
GameResource. simGame(@Valid Game game, @Valid @NotNull Boolean overwrite)
org.springframework.http.ResponseEntity<Game>
GameResource. updateGame(@Valid Game game)
PUT /games : Updates an existing game.Methods in org.powertac.visualizer.web.rest with parameters of type Game Modifier and Type Method Description org.springframework.http.ResponseEntity<Game>
GameResource. bootGame(@Valid Game game, @Valid @NotNull Boolean overwrite)
org.springframework.http.ResponseEntity<Game>
GameResource. createGame(@Valid Game game)
POST /games : Create a new game.org.springframework.http.ResponseEntity<Game>
GameResource. simGame(@Valid Game game, @Valid @NotNull Boolean overwrite)
org.springframework.http.ResponseEntity<Game>
GameResource. updateGame(@Valid Game game)
PUT /games : Updates an existing game.
-