| Contact | Donate | Imprint |
| Store | StoreModule | Discord |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | Store | ||
| (2) LaunchDate | DATE | Store | ||
| (3) Name | STRING | Store | ||
| (4) ShutdownDate | DATE | Store |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /store/{id} | updateStoreById(store) | StoreModule | PUT | Store |
| (2) /store/{id} | deleteStoreById(id) | StoreModule | DELETE | Store |
| (3) /store | insertStore(store) | StoreModule | POST | Store |
| (4) /game/store/{id} | findAllGameOfStore(id) | StoreModule | GET | Store Game |
| (5) /store | findAllStore() | StoreModule | GET | Store |
| (6) /store/{id} | findStoreById(id) | StoreModule | GET | Store |
Example:
final Store store = (Store) invokeModule(STORE_MODULE + "/store/" + id, Store.class);| Contact | Donate | Imprint |