| Services | Contact | Donate | About | Imprint |
| BaggageItem | AirportModule | Airlines |
| Property | Type | Entity | Reference | Module |
| (1) BookingPassenger | LONG | BaggageItem | BookingPassenger | AirportModule |
| (2) CheckedInAirport | LONG | BaggageItem | Airport | AirportModule |
| (3) FinalAirport | LONG | BaggageItem | Airport | AirportModule |
| (4) Status | STRING | BaggageItem | ||
| (5) TagNumber | STRING | BaggageItem | ||
| (6) WeightKg | STRING | BaggageItem |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /baggageitem/checkedinairport/{id} | findAllBaggageItemOfCheckedInAirport(id) | AirportModule | GET | Airport BaggageItem |
| (2) /baggageitem | insertBaggageItem(baggageitem) | AirportModule | POST | BaggageItem |
| (3) /baggageitem/finalairport/{id} | findAllBaggageItemOfFinalAirport(id) | AirportModule | GET | Airport BaggageItem |
| (4) /baggageitem/{id} | updateBaggageItemById(baggageitem) | AirportModule | PUT | BaggageItem |
| (5) /baggageitem | findAllBaggageItem() | AirportModule | GET | BaggageItem |
| (6) /baggageitem/{id} | deleteBaggageItemById(id) | AirportModule | DELETE | BaggageItem |
| (7) /baggageitem/bookingpassenger/{id} | findAllBaggageItemOfBookingPassenger(id) | AirportModule | GET | BookingPassenger BaggageItem |
| (8) /baggageitem/{id} | findBaggageItemById(id) | AirportModule | GET | BaggageItem |
Example:
final BaggageItem baggageitem = (BaggageItem) invokeModule(AIRPORT_MODULE + "/baggageitem/" + id, BaggageItem.class);| Services | Contact | Donate | About | Imprint |