| Contact | Donate | Imprint |
| Seat | ZeppelinModule | ZeppelinFlight |
| Property | Type | Entity | Reference | Module |
| (1) SeatClass | STRING | Seat | ||
| (2) SeatNumber | STRING | Seat | ||
| (3) Zeppelin | INT | Seat | Zeppelin | ZeppelinModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /flightseat/seat/{id} | findAllFlightSeatOfSeat(id) | FlightModule | GET | Seat FlightSeat |
| (2) /seat/{id} | deleteSeatById(id) | ZeppelinModule | DELETE | Seat |
| (3) /seat | findAllSeat() | ZeppelinModule | GET | Seat |
| (4) /seat/zeppelin/{id} | findAllSeatOfZeppelin(id) | ZeppelinModule | GET | Zeppelin Seat |
| (5) /seat/{id} | updateSeatById(seat) | ZeppelinModule | PUT | Seat |
| (6) /seat | insertSeat(seat) | ZeppelinModule | POST | Seat |
| (7) /seat/{id} | findSeatById(id) | ZeppelinModule | GET | Seat |
Example:
final Seat seat = (Seat) invokeModule(ZEPPELIN_MODULE + "/seat/" + id, Seat.class);| Contact | Donate | Imprint |