| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Country | Country | CountryModule | ZeppelinFlight |
| (2) Customer | Customer | CustomerModule | ZeppelinFlight |
| (3) Location | Location | LocationModule | ZeppelinFlight |
| (4) MilitaryBranch | MilitaryBranch | CountryModule | ZeppelinFlight |
| (5) Mission | Mission | MissionModule | ZeppelinFlight |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /militarybranch/{id} | findMilitaryBranchById(id) | CountryModule | GET | MilitaryBranch |
| (2) /country | insertCountry(country) | CountryModule | POST | Country |
| (3) /militarybranch | insertMilitaryBranch(militarybranch) | CountryModule | POST | MilitaryBranch |
| (4) /militarybranch | findAllMilitaryBranch() | CountryModule | GET | MilitaryBranch |
| (5) /country | findAllCountry() | CountryModule | GET | Country |
| (6) /country/{id} | findCountryById(id) | CountryModule | GET | Country |
| (7) /militarybranch/country/{id} | findAllMilitaryBranchOfCountry(id) | CountryModule | GET | Country MilitaryBranch |
| (8) /country/{id} | updateCountryById(country) | CountryModule | PUT | Country |
| (9) /militarybranch/{id} | deleteMilitaryBranchById(id) | CountryModule | DELETE | MilitaryBranch |
| (10) /militarybranch/{id} | updateMilitaryBranchById(militarybranch) | CountryModule | PUT | MilitaryBranch |
| (11) /country/{id} | deleteCountryById(id) | CountryModule | DELETE | Country |
| Country | CountryModule | ZeppelinFlight |
| Property | Type | Entity | Reference | Module |
| (1) IsoCode | STRING | Country | ||
| (2) Name | STRING | Country |
Example:
final Country country = (Country) invokeModule(COUNTRY_MODULE + "/country/" + id, Country.class);| MilitaryBranch | CountryModule | ZeppelinFlight |
| Property | Type | Entity | Reference | Module |
| (1) BranchType | STRING | MilitaryBranch | ||
| (2) Country | INT | MilitaryBranch | Country | CountryModule |
| (3) Name | STRING | MilitaryBranch |
Example:
final MilitaryBranch militarybranch = (MilitaryBranch) invokeModule(COUNTRY_MODULE + "/militarybranch/" + id, MilitaryBranch.class);| Contact | Donate | Imprint |