| Contact | Donate | Imprint |
| AirportService | CityModule | Waymo |
| Property | Type | Entity | Reference | Module |
| (1) Airport | INT | AirportService | Airport | CityModule |
| (2) LaunchDate | DATE | AirportService | ||
| (3) RobotaxiService | INT | AirportService | RobotaxiService | CompanyModule |
| (4) Status | STRING | AirportService |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /airportservice/airport/{id} | findAllAirportServiceOfAirport(id) | CityModule | GET | Airport AirportService |
| (2) /airportservice/{id} | updateAirportServiceById(airportservice) | CityModule | PUT | AirportService |
| (3) /airportservice/{id} | findAirportServiceById(id) | CityModule | GET | AirportService |
| (4) /airportservice | findAllAirportService() | CityModule | GET | AirportService |
| (5) /airportservice/{id} | deleteAirportServiceById(id) | CityModule | DELETE | AirportService |
| (6) /airportservice/robotaxiservice/{id} | findAllAirportServiceOfRobotaxiService(id) | CityModule | GET | RobotaxiService AirportService |
| (7) /airportservice | insertAirportService(airportservice) | CityModule | POST | AirportService |
Example:
final AirportService airportservice = (AirportService) invokeModule(CITY_MODULE + "/airportservice/" + id, AirportService.class);| Contact | Donate | Imprint |