| Contact | Donate | Imprint |
| FlightSeat | FlightModule | ZeppelinFlight |
| Property | Type | Entity | Reference | Module |
| (1) Currency | STRING | FlightSeat | ||
| (2) Flight | INT | FlightSeat | Flight | FlightModule |
| (3) Price | STRING | FlightSeat | ||
| (4) Seat | INT | FlightSeat | Seat | ZeppelinModule |
| (5) SeatStatus | STRING | FlightSeat |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /flightseat/{id} | findFlightSeatById(id) | FlightModule | GET | FlightSeat |
| (2) /bookingseat/flightseat/{id} | findAllBookingSeatOfFlightSeat(id) | FlightModule | GET | FlightSeat BookingSeat |
| (3) /flightseat | insertFlightSeat(flightseat) | FlightModule | POST | FlightSeat |
| (4) /flightseat/seat/{id} | findAllFlightSeatOfSeat(id) | FlightModule | GET | Seat FlightSeat |
| (5) /flightseat/{id} | updateFlightSeatById(flightseat) | FlightModule | PUT | FlightSeat |
| (6) /flightseat/flight/{id} | findAllFlightSeatOfFlight(id) | FlightModule | GET | Flight FlightSeat |
| (7) /flightseat/{id} | deleteFlightSeatById(id) | FlightModule | DELETE | FlightSeat |
| (8) /flightseat | findAllFlightSeat() | FlightModule | GET | FlightSeat |
Example:
final FlightSeat flightseat = (FlightSeat) invokeModule(FLIGHT_MODULE + "/flightseat/" + id, FlightSeat.class);| Contact | Donate | Imprint |