| Contact | Donate | Imprint |
| Hangar | LocationModule | ZeppelinFlight |
| Property | Type | Entity | Reference | Module |
| (1) BuiltYear | INT | Hangar | ||
| (2) Capacity | INT | Hangar | ||
| (3) HeightMeters | STRING | Hangar | ||
| (4) LengthMeters | STRING | Hangar | ||
| (5) Location | INT | Hangar | Location | LocationModule |
| (6) Name | STRING | Hangar | ||
| (7) WidthMeters | STRING | Hangar |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /hangar | insertHangar(hangar) | LocationModule | POST | Hangar |
| (2) /hangar/{id} | updateHangarById(hangar) | LocationModule | PUT | Hangar |
| (3) /hangar/{id} | deleteHangarById(id) | LocationModule | DELETE | Hangar |
| (4) /hangar/{id} | findHangarById(id) | LocationModule | GET | Hangar |
| (5) /hangar/location/{id} | findAllHangarOfLocation(id) | LocationModule | GET | Location Hangar |
| (6) /flightroute/defaulthangar/{id} | findAllFlightRouteOfDefaultHangar(id) | LocationModule | GET | Hangar FlightRoute |
| (7) /hangar | findAllHangar() | LocationModule | GET | Hangar |
| (8) /restaurant/relatedhangar/{id} | findAllRestaurantOfRelatedHangar(id) | RestaurantModule | GET | Hangar Restaurant |
Example:
final Hangar hangar = (Hangar) invokeModule(LOCATION_MODULE + "/hangar/" + id, Hangar.class);| Contact | Donate | Imprint |