Overview

Summary

ContactDonateImprint


Appendix E-17: GAME (UI prompt)


GameStoreModuleDiscord

Properties (7)

PropertyTypeEntityReferenceModule
(1) DeveloperSTRINGGame
(2) IsExclusiveBOOLGame
(3) PublisherSTRINGGame
(4) ReleaseDateDATEGame
(5) RevenueSharePercentDOUBLEGame
(6) StoreLONGGameStoreStoreModule
(7) TitleSTRINGGame


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /gamefindAllGame()StoreModuleGETGame
(2) /game/store/{id}findAllGameOfStore(id)StoreModuleGETStore Game
(3) /game/{id}deleteGameById(id)StoreModuleDELETEGame
(4) /game/{id}findGameById(id)StoreModuleGETGame
(5) /gameinsertGame(game)StoreModulePOSTGame
(6) /game/{id}updateGameById(game)StoreModulePUTGame





Example:

final Game game = (Game) invokeModule(STORE_MODULE + "/game/" + id, Game.class);
if (game != null) {
    final Store store1 = (Store) invokeModule(STORE_MODULE + "/store/" + game.getStore().getId(), Store.class);
    if (store1 != null) {
    }
}
return game;


Overview

Summary

ContactDonateImprint