Table of content



AirportLogistics

Schema Name: AirportLogistics

Alias: AirportLogistics


Entity-Relationship diagram of schema AirportLogistics

Data Entities

Entity NameAlias NameMicroserviceData Schema
AirlineAirlineAirplaneServiceAirportLogistics
AirplaneAirplaneAirplaneServiceAirportLogistics
AirplaneEquipmentAirplaneEquipmentAirplaneServiceAirportLogistics
AirplaneProducerAirplaneProducerAirplaneServiceAirportLogistics
AirplaneTypeAirplaneTypeAirplaneServiceAirportLogistics
AirportAirportAirportServiceAirportLogistics
CargoCargoCargoServiceAirportLogistics
CargoBookingCargoBookingEmployeeServiceAirportLogistics
CargoCheckCargoCheckCargoServiceAirportLogistics
CargoTypeCargoTypeCargoServiceAirportLogistics
CityCityCountryServiceAirportLogistics
CountryCountryCountryServiceAirportLogistics
CustomerCustomerEmployeeServiceAirportLogistics
EmployeeEmployeeEmployeeServiceAirportLogistics
EmployeeTaskEmployeeTaskEmployeeServiceAirportLogistics
EquipmentTypeEquipmentTypeAirplaneServiceAirportLogistics
FlightFlightAirportServiceAirportLogistics
FlightRouteFlightRouteAirportServiceAirportLogistics
GateGateAirportServiceAirportLogistics
LuggageLuggageLuggageServiceAirportLogistics
LuggageCheckLuggageCheckLuggageServiceAirportLogistics
LuggageTypeLuggageTypeLuggageServiceAirportLogistics
PassengerPassengerPassengerBookingServiceAirportLogistics
PassengerBookingPassengerBookingPassengerBookingServiceAirportLogistics
SeatSeatPassengerBookingServiceAirportLogistics
SeatCategorySeatCategoryPassengerBookingServiceAirportLogistics
TaskTaskEmployeeServiceAirportLogistics
TerminalTerminalAirportServiceAirportLogistics



3.1. AirportService


Entity-Relationship-Model of AirportService

Schema Entities

Entity NameAlias NameMicroserviceData Schema
AirplaneAirplaneAirplaneServiceAirportLogistics
AirportAirportAirportServiceAirportLogistics
CargoBookingCargoBookingEmployeeServiceAirportLogistics
CityCityCountryServiceAirportLogistics
FlightFlightAirportServiceAirportLogistics
FlightRouteFlightRouteAirportServiceAirportLogistics
GateGateAirportServiceAirportLogistics
PassengerBookingPassengerBookingPassengerBookingServiceAirportLogistics
TerminalTerminalAirportServiceAirportLogistics

Service Interfaces

Relative mapping URLRequest MethodMethod NameMicroserviceInvolved Entities
/airport/city/{id}GETfindAllAirportOfCity(id)AirportServiceCity Airport
/flightGETfindAllFlight()AirportServiceFlight
/flightroute/{id}GETfindFlightRouteById(id)AirportServiceFlightRoute
/flightroute/destination/{id}GETfindAllFlightRouteOfDestination(id)AirportServiceAirport FlightRoute
/gate/{id}GETfindGateById(id)AirportServiceGate
/airportPOSTinsertAirport(airport)AirportServiceAirport
/flightrouteGETfindAllFlightRoute()AirportServiceFlightRoute
/flight/{id}DELETEdeleteFlightById(id)AirportServiceFlight
/gate/{id}DELETEdeleteGateById(id)AirportServiceGate
/flightroute/source/{id}GETfindAllFlightRouteOfSource(id)AirportServiceAirport FlightRoute
/flight/{id}PUTupdateFlightById(flight)AirportServiceFlight
/gate/terminal/{id}GETfindAllGateOfTerminal(id)AirportServiceTerminal Gate
/terminal/airport/{id}GETfindAllTerminalOfAirport(id)AirportServiceAirport Terminal
/gatePOSTinsertGate(gate)AirportServiceGate
/terminal/{id}DELETEdeleteTerminalById(id)AirportServiceTerminal
/terminalGETfindAllTerminal()AirportServiceTerminal
/terminal/{id}GETfindTerminalById(id)AirportServiceTerminal
/gateGETfindAllGate()AirportServiceGate
/terminalPOSTinsertTerminal(terminal)AirportServiceTerminal
/flight/flightroute/{id}GETfindAllFlightOfFlightRoute(id)AirportServiceFlightRoute Flight
/flightroute/{id}DELETEdeleteFlightRouteById(id)AirportServiceFlightRoute
/flightPOSTinsertFlight(flight)AirportServiceFlight
/airport/{id}DELETEdeleteAirportById(id)AirportServiceAirport
/terminal/{id}PUTupdateTerminalById(terminal)AirportServiceTerminal
/airport/{id}GETfindAirportById(id)AirportServiceAirport
/gate/{id}PUTupdateGateById(gate)AirportServiceGate
/flightroute/{id}PUTupdateFlightRouteById(flightroute)AirportServiceFlightRoute
/flight/departuregate/{id}GETfindAllFlightOfDepartureGate(id)AirportServiceGate Flight
/airportGETfindAllAirport()AirportServiceAirport
/flight/airplane/{id}GETfindAllFlightOfAirplane(id)AirportServiceAirplane Flight
/flightroutePOSTinsertFlightRoute(flightroute)AirportServiceFlightRoute
/airport/{id}PUTupdateAirportById(airport)AirportServiceAirport
/flight/{id}GETfindFlightById(id)AirportServiceFlight
/flight/arrivalgate/{id}GETfindAllFlightOfArrivalGate(id)AirportServiceGate Flight

AirportService inside the microservice architecture

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService


3.2. LuggageService


Entity-Relationship-Model of LuggageService

Schema Entities

Entity NameAlias NameMicroserviceData Schema
EmployeeEmployeeEmployeeServiceAirportLogistics
LuggageLuggageLuggageServiceAirportLogistics
LuggageCheckLuggageCheckLuggageServiceAirportLogistics
LuggageTypeLuggageTypeLuggageServiceAirportLogistics
PassengerBookingPassengerBookingPassengerBookingServiceAirportLogistics

Service Interfaces

Relative mapping URLRequest MethodMethod NameMicroserviceInvolved Entities
/luggagetype/{id}GETfindLuggageTypeById(id)LuggageServiceLuggageType
/luggagecheckPOSTinsertLuggageCheck(luggagecheck)LuggageServiceLuggageCheck
/luggagetypePOSTinsertLuggageType(luggagetype)LuggageServiceLuggageType
/luggagecheckGETfindAllLuggageCheck()LuggageServiceLuggageCheck
/luggage/{id}DELETEdeleteLuggageById(id)LuggageServiceLuggage
/luggagecheck/luggage/{id}GETfindAllLuggageCheckOfLuggage(id)LuggageServiceLuggage LuggageCheck
/luggage/{id}GETfindLuggageById(id)LuggageServiceLuggage
/luggagecheck/{id}DELETEdeleteLuggageCheckById(id)LuggageServiceLuggageCheck
/luggagetype/{id}DELETEdeleteLuggageTypeById(id)LuggageServiceLuggageType
/luggagetypeGETfindAllLuggageType()LuggageServiceLuggageType
/luggagecheck/{id}PUTupdateLuggageCheckById(luggagecheck)LuggageServiceLuggageCheck
/luggageGETfindAllLuggage()LuggageServiceLuggage
/luggagetype/{id}PUTupdateLuggageTypeById(luggagetype)LuggageServiceLuggageType
/luggage/luggagetype/{id}GETfindAllLuggageOfLuggageType(id)LuggageServiceLuggageType Luggage
/luggagecheck/checker/{id}GETfindAllLuggageCheckOfChecker(id)LuggageServiceEmployee LuggageCheck
/luggagecheck/{id}GETfindLuggageCheckById(id)LuggageServiceLuggageCheck
/luggage/{id}PUTupdateLuggageById(luggage)LuggageServiceLuggage
/luggagePOSTinsertLuggage(luggage)LuggageServiceLuggage
/luggage/flightbooking/{id}GETfindAllLuggageOfFlightBooking(id)LuggageServicePassengerBooking Luggage

LuggageService inside the microservice architecture

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService


3.3. PassengerBookingService


Entity-Relationship-Model of PassengerBookingService

Schema Entities

Entity NameAlias NameMicroserviceData Schema
AirplaneAirplaneAirplaneServiceAirportLogistics
CountryCountryCountryServiceAirportLogistics
FlightFlightAirportServiceAirportLogistics
LuggageLuggageLuggageServiceAirportLogistics
PassengerPassengerPassengerBookingServiceAirportLogistics
PassengerBookingPassengerBookingPassengerBookingServiceAirportLogistics
SeatSeatPassengerBookingServiceAirportLogistics
SeatCategorySeatCategoryPassengerBookingServiceAirportLogistics

Service Interfaces

Relative mapping URLRequest MethodMethod NameMicroserviceInvolved Entities
/seatcategoryGETfindAllSeatCategory()PassengerBookingServiceSeatCategory
/seatcategoryPOSTinsertSeatCategory(seatcategory)PassengerBookingServiceSeatCategory
/passengerbooking/{id}PUTupdatePassengerBookingById(passengerbooking)PassengerBookingServicePassengerBooking
/seat/airplane/{id}GETfindAllSeatOfAirplane(id)PassengerBookingServiceAirplane Seat
/passengerbooking/seat/{id}GETfindAllPassengerBookingOfSeat(id)PassengerBookingServiceSeat PassengerBooking
/passengerbookingPOSTinsertPassengerBooking(passengerbooking)PassengerBookingServicePassengerBooking
/passenger/nationality/{id}GETfindAllPassengerOfNationality(id)PassengerBookingServiceCountry Passenger
/seatcategory/{id}PUTupdateSeatCategoryById(seatcategory)PassengerBookingServiceSeatCategory
/passengerbooking/passenger/{id}GETfindAllPassengerBookingOfPassenger(id)PassengerBookingServicePassenger PassengerBooking
/seatcategory/{id}GETfindSeatCategoryById(id)PassengerBookingServiceSeatCategory
/passenger/{id}GETfindPassengerById(id)PassengerBookingServicePassenger
/passenger/{id}PUTupdatePassengerById(passenger)PassengerBookingServicePassenger
/passengerbookingGETfindAllPassengerBooking()PassengerBookingServicePassengerBooking
/seat/{id}GETfindSeatById(id)PassengerBookingServiceSeat
/seatcategory/{id}DELETEdeleteSeatCategoryById(id)PassengerBookingServiceSeatCategory
/seat/seatcategory/{id}GETfindAllSeatOfSeatCategory(id)PassengerBookingServiceSeatCategory Seat
/seatGETfindAllSeat()PassengerBookingServiceSeat
/seat/{id}DELETEdeleteSeatById(id)PassengerBookingServiceSeat
/passengerPOSTinsertPassenger(passenger)PassengerBookingServicePassenger
/passengerGETfindAllPassenger()PassengerBookingServicePassenger
/passengerbooking/flight/{id}GETfindAllPassengerBookingOfFlight(id)PassengerBookingServiceFlight PassengerBooking
/seatPOSTinsertSeat(seat)PassengerBookingServiceSeat
/passengerbooking/{id}DELETEdeletePassengerBookingById(id)PassengerBookingServicePassengerBooking
/passenger/{id}DELETEdeletePassengerById(id)PassengerBookingServicePassenger
/passengerbooking/{id}GETfindPassengerBookingById(id)PassengerBookingServicePassengerBooking
/seat/{id}PUTupdateSeatById(seat)PassengerBookingServiceSeat

PassengerBookingService inside the microservice architecture

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService


3.4. AirplaneService


Entity-Relationship-Model of AirplaneService

Schema Entities

Entity NameAlias NameMicroserviceData Schema
AirlineAirlineAirplaneServiceAirportLogistics
AirplaneAirplaneAirplaneServiceAirportLogistics
AirplaneEquipmentAirplaneEquipmentAirplaneServiceAirportLogistics
AirplaneProducerAirplaneProducerAirplaneServiceAirportLogistics
AirplaneTypeAirplaneTypeAirplaneServiceAirportLogistics
EmployeeEmployeeEmployeeServiceAirportLogistics
EquipmentTypeEquipmentTypeAirplaneServiceAirportLogistics
FlightFlightAirportServiceAirportLogistics
SeatSeatPassengerBookingServiceAirportLogistics

Service Interfaces

Relative mapping URLRequest MethodMethod NameMicroserviceInvolved Entities
/airplaneequipment/airplane/{id}GETfindAllAirplaneEquipmentOfAirplane(id)AirplaneServiceAirplane AirplaneEquipment
/airplane/airplanetype/{id}GETfindAllAirplaneOfAirplaneType(id)AirplaneServiceAirplaneType Airplane
/airlineGETfindAllAirline()AirplaneServiceAirline
/equipmenttype/{id}GETfindEquipmentTypeById(id)AirplaneServiceEquipmentType
/airplaneproducer/{id}DELETEdeleteAirplaneProducerById(id)AirplaneServiceAirplaneProducer
/airplaneproducer/{id}PUTupdateAirplaneProducerById(airplaneproducer)AirplaneServiceAirplaneProducer
/airplane/{id}PUTupdateAirplaneById(airplane)AirplaneServiceAirplane
/airplaneGETfindAllAirplane()AirplaneServiceAirplane
/airplanetype/{id}DELETEdeleteAirplaneTypeById(id)AirplaneServiceAirplaneType
/airplane/{id}DELETEdeleteAirplaneById(id)AirplaneServiceAirplane
/airplaneequipment/equipmenttype/{id}GETfindAllAirplaneEquipmentOfEquipmentType(id)AirplaneServiceEquipmentType AirplaneEquipment
/airplaneequipment/{id}PUTupdateAirplaneEquipmentById(airplaneequipment)AirplaneServiceAirplaneEquipment
/airplaneequipmentPOSTinsertAirplaneEquipment(airplaneequipment)AirplaneServiceAirplaneEquipment
/equipmenttypePOSTinsertEquipmentType(equipmenttype)AirplaneServiceEquipmentType
/airplaneproducerPOSTinsertAirplaneProducer(airplaneproducer)AirplaneServiceAirplaneProducer
/airplaneproducerGETfindAllAirplaneProducer()AirplaneServiceAirplaneProducer
/airplaneproducer/{id}GETfindAirplaneProducerById(id)AirplaneServiceAirplaneProducer
/airplanetypeGETfindAllAirplaneType()AirplaneServiceAirplaneType
/airplanetypePOSTinsertAirplaneType(airplanetype)AirplaneServiceAirplaneType
/airplanePOSTinsertAirplane(airplane)AirplaneServiceAirplane
/airplaneequipmentGETfindAllAirplaneEquipment()AirplaneServiceAirplaneEquipment
/airplanetype/{id}PUTupdateAirplaneTypeById(airplanetype)AirplaneServiceAirplaneType
/airline/{id}PUTupdateAirlineById(airline)AirplaneServiceAirline
/airlinePOSTinsertAirline(airline)AirplaneServiceAirline
/airline/{id}GETfindAirlineById(id)AirplaneServiceAirline
/equipmenttype/{id}DELETEdeleteEquipmentTypeById(id)AirplaneServiceEquipmentType
/equipmenttypeGETfindAllEquipmentType()AirplaneServiceEquipmentType
/airplanetype/airplaneproducer/{id}GETfindAllAirplaneTypeOfAirplaneProducer(id)AirplaneServiceAirplaneProducer AirplaneType
/airplanetype/{id}GETfindAirplaneTypeById(id)AirplaneServiceAirplaneType
/airline/{id}DELETEdeleteAirlineById(id)AirplaneServiceAirline
/airplaneequipment/{id}GETfindAirplaneEquipmentById(id)AirplaneServiceAirplaneEquipment
/airplane/{id}GETfindAirplaneById(id)AirplaneServiceAirplane
/airplane/airline/{id}GETfindAllAirplaneOfAirline(id)AirplaneServiceAirline Airplane
/equipmenttype/{id}PUTupdateEquipmentTypeById(equipmenttype)AirplaneServiceEquipmentType
/airplaneequipment/{id}DELETEdeleteAirplaneEquipmentById(id)AirplaneServiceAirplaneEquipment

AirplaneService inside the microservice architecture

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService


3.5. CountryService


Entity-Relationship-Model of CountryService

Schema Entities

Entity NameAlias NameMicroserviceData Schema
AirportAirportAirportServiceAirportLogistics
CityCityCountryServiceAirportLogistics
CountryCountryCountryServiceAirportLogistics
PassengerPassengerPassengerBookingServiceAirportLogistics

Service Interfaces

Relative mapping URLRequest MethodMethod NameMicroserviceInvolved Entities
/cityGETfindAllCity()CountryServiceCity
/city/country/{id}GETfindAllCityOfCountry(id)CountryServiceCountry City
/countryPOSTinsertCountry(country)CountryServiceCountry
/country/{id}GETfindCountryById(id)CountryServiceCountry
/city/{id}DELETEdeleteCityById(id)CountryServiceCity
/city/{id}PUTupdateCityById(city)CountryServiceCity
/country/{id}PUTupdateCountryById(country)CountryServiceCountry
/countryGETfindAllCountry()CountryServiceCountry
/city/{id}GETfindCityById(id)CountryServiceCity
/country/{id}DELETEdeleteCountryById(id)CountryServiceCountry
/cityPOSTinsertCity(city)CountryServiceCity

CountryService inside the microservice architecture

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService


3.6. EmployeeService


Entity-Relationship-Model of EmployeeService

Schema Entities

Entity NameAlias NameMicroserviceData Schema
AirlineAirlineAirplaneServiceAirportLogistics
CargoCargoCargoServiceAirportLogistics
CargoBookingCargoBookingEmployeeServiceAirportLogistics
CargoCheckCargoCheckCargoServiceAirportLogistics
CustomerCustomerEmployeeServiceAirportLogistics
EmployeeEmployeeEmployeeServiceAirportLogistics
EmployeeTaskEmployeeTaskEmployeeServiceAirportLogistics
FlightFlightAirportServiceAirportLogistics
LuggageCheckLuggageCheckLuggageServiceAirportLogistics
TaskTaskEmployeeServiceAirportLogistics

Service Interfaces

Relative mapping URLRequest MethodMethod NameMicroserviceInvolved Entities
/employeetask/{id}PUTupdateEmployeeTaskById(employeetask)EmployeeServiceEmployeeTask
/cargobooking/customer/{id}GETfindAllCargoBookingOfCustomer(id)EmployeeServiceCustomer CargoBooking
/taskPOSTinsertTask(task)EmployeeServiceTask
/cargobooking/flight/{id}GETfindAllCargoBookingOfFlight(id)EmployeeServiceFlight CargoBooking
/employeetaskGETfindAllEmployeeTask()EmployeeServiceEmployeeTask
/customerPOSTinsertCustomer(customer)EmployeeServiceCustomer
/employeePOSTinsertEmployee(employee)EmployeeServiceEmployee
/employeetask/{id}GETfindEmployeeTaskById(id)EmployeeServiceEmployeeTask
/employeeGETfindAllEmployee()EmployeeServiceEmployee
/customer/{id}GETfindCustomerById(id)EmployeeServiceCustomer
/customerGETfindAllCustomer()EmployeeServiceCustomer
/employeetask/{id}DELETEdeleteEmployeeTaskById(id)EmployeeServiceEmployeeTask
/cargobooking/employee/{id}GETfindAllCargoBookingOfEmployee(id)EmployeeServiceEmployee CargoBooking
/customer/{id}DELETEdeleteCustomerById(id)EmployeeServiceCustomer
/cargobookingGETfindAllCargoBooking()EmployeeServiceCargoBooking
/employeetask/task/{id}GETfindAllEmployeeTaskOfTask(id)EmployeeServiceTask EmployeeTask
/customer/{id}PUTupdateCustomerById(customer)EmployeeServiceCustomer
/cargobooking/{id}GETfindCargoBookingById(id)EmployeeServiceCargoBooking
/cargobooking/{id}DELETEdeleteCargoBookingById(id)EmployeeServiceCargoBooking
/taskGETfindAllTask()EmployeeServiceTask
/employee/airline/{id}GETfindAllEmployeeOfAirline(id)EmployeeServiceAirline Employee
/employeetask/employee/{id}GETfindAllEmployeeTaskOfEmployee(id)EmployeeServiceEmployee EmployeeTask
/task/{id}PUTupdateTaskById(task)EmployeeServiceTask
/employee/{id}GETfindEmployeeById(id)EmployeeServiceEmployee
/employeetaskPOSTinsertEmployeeTask(employeetask)EmployeeServiceEmployeeTask
/task/{id}DELETEdeleteTaskById(id)EmployeeServiceTask
/task/{id}GETfindTaskById(id)EmployeeServiceTask
/cargobooking/{id}PUTupdateCargoBookingById(cargobooking)EmployeeServiceCargoBooking
/cargobookingPOSTinsertCargoBooking(cargobooking)EmployeeServiceCargoBooking
/employee/{id}DELETEdeleteEmployeeById(id)EmployeeServiceEmployee
/employee/{id}PUTupdateEmployeeById(employee)EmployeeServiceEmployee

EmployeeService inside the microservice architecture

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService


3.7. CargoService


Entity-Relationship-Model of CargoService

Schema Entities

Entity NameAlias NameMicroserviceData Schema
CargoCargoCargoServiceAirportLogistics
CargoBookingCargoBookingEmployeeServiceAirportLogistics
CargoCheckCargoCheckCargoServiceAirportLogistics
CargoTypeCargoTypeCargoServiceAirportLogistics
EmployeeEmployeeEmployeeServiceAirportLogistics

Service Interfaces

Relative mapping URLRequest MethodMethod NameMicroserviceInvolved Entities
/cargocheck/{id}DELETEdeleteCargoCheckById(id)CargoServiceCargoCheck
/cargo/{id}PUTupdateCargoById(cargo)CargoServiceCargo
/cargocheck/{id}GETfindCargoCheckById(id)CargoServiceCargoCheck
/cargoPOSTinsertCargo(cargo)CargoServiceCargo
/cargotype/{id}DELETEdeleteCargoTypeById(id)CargoServiceCargoType
/cargocheckGETfindAllCargoCheck()CargoServiceCargoCheck
/cargotypePOSTinsertCargoType(cargotype)CargoServiceCargoType
/cargo/cargobooking/{id}GETfindAllCargoOfCargoBooking(id)CargoServiceCargoBooking Cargo
/cargo/{id}DELETEdeleteCargoById(id)CargoServiceCargo
/cargocheck/{id}PUTupdateCargoCheckById(cargocheck)CargoServiceCargoCheck
/cargocheckPOSTinsertCargoCheck(cargocheck)CargoServiceCargoCheck
/cargoGETfindAllCargo()CargoServiceCargo
/cargocheck/checker/{id}GETfindAllCargoCheckOfChecker(id)CargoServiceEmployee CargoCheck
/cargotype/{id}PUTupdateCargoTypeById(cargotype)CargoServiceCargoType
/cargo/{id}GETfindCargoById(id)CargoServiceCargo
/cargo/cargotype/{id}GETfindAllCargoOfCargoType(id)CargoServiceCargoType Cargo
/cargotype/{id}GETfindCargoTypeById(id)CargoServiceCargoType
/cargocheck/cargo/{id}GETfindAllCargoCheckOfCargo(id)CargoServiceCargo CargoCheck
/cargotypeGETfindAllCargoType()CargoServiceCargoType

CargoService inside the microservice architecture

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService





Appendix







Entity Name: CargoCheck

Data Schema: AirportLogistics

Master Service: CargoService


Dataflow of entity of CargoCheck

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
CargoLONGCargoCheckCargo
CheckerLONGCargoCheckEmployee
FromDateLONGCargoCheck
PrimaryKeyLONGCargoCheck
ReportSTRINGCargoCheck
ServerReplicationVersionLONGCargoCheck
ToDateLONGCargoCheck


Entity Name: CargoBooking

Data Schema: AirportLogistics

Master Service: EmployeeService


Dataflow of entity of CargoBooking

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
BookingDateLONGCargoBooking
CustomerLONGCargoBookingCustomer
EmployeeLONGCargoBookingEmployee
FlightLONGCargoBookingFlight
PrimaryKeyLONGCargoBooking
ServerReplicationVersionLONGCargoBooking


Entity Name: SeatCategory

Data Schema: AirportLogistics

Master Service: PassengerBookingService


Dataflow of entity of SeatCategory

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
CategoryNameSTRINGSeatCategory
DescriptionSTRINGSeatCategory
PrimaryKeyLONGSeatCategory
ServerReplicationVersionLONGSeatCategory


Entity Name: FlightRoute

Data Schema: AirportLogistics

Master Service: AirportService


Dataflow of entity of FlightRoute

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
DestinationLONGFlightRouteAirport
PrimaryKeyLONGFlightRoute
ServerReplicationVersionLONGFlightRoute
SourceLONGFlightRouteAirport


Entity Name: Cargo

Data Schema: AirportLogistics

Master Service: CargoService


Dataflow of entity of Cargo

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
CargoBookingLONGCargoCargoBooking
CargoTypeLONGCargoCargoType
PrimaryKeyLONGCargo
ServerReplicationVersionLONGCargo
WeightingDOUBLECargo


Entity Name: Airplane

Data Schema: AirportLogistics

Master Service: AirplaneService


Dataflow of entity of Airplane

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
AirlineLONGAirplaneAirline
AirplaneIDSTRINGAirplane
AirplaneTypeLONGAirplaneAirplaneType
PrimaryKeyLONGAirplane
ServerReplicationVersionLONGAirplane


Entity Name: AirplaneType

Data Schema: AirportLogistics

Master Service: AirplaneService


Dataflow of entity of AirplaneType

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
AirplaneProducerLONGAirplaneTypeAirplaneProducer
PrimaryKeyLONGAirplaneType
ServerReplicationVersionLONGAirplaneType
TypeNameSTRINGAirplaneType


Entity Name: EquipmentType

Data Schema: AirportLogistics

Master Service: AirplaneService


Dataflow of entity of EquipmentType

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
PrimaryKeyLONGEquipmentType
ServerReplicationVersionLONGEquipmentType
TypeNameSTRINGEquipmentType


Entity Name: LuggageCheck

Data Schema: AirportLogistics

Master Service: LuggageService


Dataflow of entity of LuggageCheck

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
CheckerLONGLuggageCheckEmployee
FromDateLONGLuggageCheck
LuggageLONGLuggageCheckLuggage
PrimaryKeyLONGLuggageCheck
ReportSTRINGLuggageCheck
ServerReplicationVersionLONGLuggageCheck
ToDateLONGLuggageCheck


Entity Name: Seat

Data Schema: AirportLogistics

Master Service: PassengerBookingService


Dataflow of entity of Seat

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
AirplaneLONGSeatAirplane
PrimaryKeyLONGSeat
SeatCategoryLONGSeatSeatCategory
SeatIDSTRINGSeat
ServerReplicationVersionLONGSeat


Entity Name: LuggageType

Data Schema: AirportLogistics

Master Service: LuggageService


Dataflow of entity of LuggageType

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
DescriptionSTRINGLuggageType
PrimaryKeyLONGLuggageType
ServerReplicationVersionLONGLuggageType
TypeNameSTRINGLuggageType


Entity Name: Customer

Data Schema: AirportLogistics

Master Service: EmployeeService


Dataflow of entity of Customer

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
CustomerNameSTRINGCustomer
PrimaryKeyLONGCustomer
ServerReplicationVersionLONGCustomer


Entity Name: Task

Data Schema: AirportLogistics

Master Service: EmployeeService


Dataflow of entity of Task

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
DescriptionSTRINGTask
PrimaryKeyLONGTask
ServerReplicationVersionLONGTask
TaskNameSTRINGTask


Entity Name: AirplaneEquipment

Data Schema: AirportLogistics

Master Service: AirplaneService


Dataflow of entity of AirplaneEquipment

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
AirplaneLONGAirplaneEquipmentAirplane
EquipmentTypeLONGAirplaneEquipmentEquipmentType
PrimaryKeyLONGAirplaneEquipment
ServerReplicationVersionLONGAirplaneEquipment


Entity Name: Luggage

Data Schema: AirportLogistics

Master Service: LuggageService


Dataflow of entity of Luggage

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
ContentSTRINGLuggage
FlightBookingLONGLuggagePassengerBooking
LuggageTypeLONGLuggageLuggageType
PrimaryKeyLONGLuggage
ServerReplicationVersionLONGLuggage
WeightingDOUBLELuggage


Entity Name: Gate

Data Schema: AirportLogistics

Master Service: AirportService


Dataflow of entity of Gate

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
GateNameSTRINGGate
PrimaryKeyLONGGate
ServerReplicationVersionLONGGate
TerminalLONGGateTerminal


Entity Name: Airline

Data Schema: AirportLogistics

Master Service: AirplaneService


Dataflow of entity of Airline

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
AirlineNameSTRINGAirline
PrimaryKeyLONGAirline
ServerReplicationVersionLONGAirline


Entity Name: Country

Data Schema: AirportLogistics

Master Service: CountryService


Dataflow of entity of Country

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
CountryNameSTRINGCountry
PrimaryKeyLONGCountry
ServerReplicationVersionLONGCountry


Entity Name: EmployeeTask

Data Schema: AirportLogistics

Master Service: EmployeeService


Dataflow of entity of EmployeeTask

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
EmployeeLONGEmployeeTaskEmployee
PrimaryKeyLONGEmployeeTask
ServerReplicationVersionLONGEmployeeTask
TaskLONGEmployeeTaskTask


Entity Name: Employee

Data Schema: AirportLogistics

Master Service: EmployeeService


Dataflow of entity of Employee

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
AirlineLONGEmployeeAirline
FirstNameSTRINGEmployee
LastNameSTRINGEmployee
PrimaryKeyLONGEmployee
ServerReplicationVersionLONGEmployee


Entity Name: Terminal

Data Schema: AirportLogistics

Master Service: AirportService


Dataflow of entity of Terminal

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
AirportLONGTerminalAirport
PrimaryKeyLONGTerminal
ServerReplicationVersionLONGTerminal
TerminalNameSTRINGTerminal


Entity Name: PassengerBooking

Data Schema: AirportLogistics

Master Service: PassengerBookingService


Dataflow of entity of PassengerBooking

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
BookingDateLONGPassengerBooking
FlightLONGPassengerBookingFlight
PassengerLONGPassengerBookingPassenger
PrimaryKeyLONGPassengerBooking
SeatLONGPassengerBookingSeat
ServerReplicationVersionLONGPassengerBooking


Entity Name: AirplaneProducer

Data Schema: AirportLogistics

Master Service: AirplaneService


Dataflow of entity of AirplaneProducer

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
PrimaryKeyLONGAirplaneProducer
ProducerNameSTRINGAirplaneProducer
ServerReplicationVersionLONGAirplaneProducer


Entity Name: Passenger

Data Schema: AirportLogistics

Master Service: PassengerBookingService


Dataflow of entity of Passenger

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
FirstNameSTRINGPassenger
LastNameSTRINGPassenger
NationalityLONGPassengerCountry
PrimaryKeyLONGPassenger
ServerReplicationVersionLONGPassenger


Entity Name: Airport

Data Schema: AirportLogistics

Master Service: AirportService


Dataflow of entity of Airport

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
AirportNameSTRINGAirport
CityLONGAirportCity
PrimaryKeyLONGAirport
ServerReplicationVersionLONGAirport


Entity Name: Flight

Data Schema: AirportLogistics

Master Service: AirportService


Dataflow of entity of Flight

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
AirplaneLONGFlightAirplane
ArrivalGateLONGFlightGate
DepartureGateLONGFlightGate
FlightNoSTRINGFlight
FlightRouteLONGFlightFlightRoute
FromDateLONGFlight
PrimaryKeyLONGFlight
ServerReplicationVersionLONGFlight
ToDateLONGFlight


Entity Name: City

Data Schema: AirportLogistics

Master Service: CountryService


Dataflow of entity of City

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
CityNameSTRINGCity
CountryLONGCityCountry
PrimaryKeyLONGCity
ServerReplicationVersionLONGCity


Entity Name: CargoType

Data Schema: AirportLogistics

Master Service: CargoService


Dataflow of entity of CargoType

Microservices

3.1 AirplaneService3.2 AirportService3.3 CargoService3.4 CountryService3.5 EmployeeService3.6 LuggageService
3.7 PassengerBookingService

Entity Properties

Property NameDatatypeData EntityReference Entity
DescriptionSTRINGCargoType
PrimaryKeyLONGCargoType
ServerReplicationVersionLONGCargoType
TypeNameSTRINGCargoType











/employeetask/{id}

Mapping URL: /employeetask/{id}

Description: updates the employeetask entity with the appended id

Microservice: EmployeeService


Methods

/employeetask/{id}


/cargobooking/customer/{id}

Mapping URL: /cargobooking/customer/{id}

Description: find the cargobooking entities of customer with the appended id

Microservice: EmployeeService


Methods

/cargobooking/customer/{id}


/seatcategory

Mapping URL: /seatcategory

Description: find all seatcategory entities

Microservice: PassengerBookingService


Methods

/seatcategory


/luggagetype/{id}

Mapping URL: /luggagetype/{id}

Description: get the luggagetype entity with the appended id

Microservice: LuggageService


Methods

/luggagetype/{id}


/airplaneequipment/airplane/{id}

Mapping URL: /airplaneequipment/airplane/{id}

Description: find the airplaneequipment entities of airplane with the appended id

Microservice: AirplaneService


Methods

/airplaneequipment/airplane/{id}


/airplane/airplanetype/{id}

Mapping URL: /airplane/airplanetype/{id}

Description: find the airplane entities of airplanetype with the appended id

Microservice: AirplaneService


Methods

/airplane/airplanetype/{id}


/task

Mapping URL: /task

Description: inserts the task entity

Microservice: EmployeeService


Methods

/task


/luggagecheck

Mapping URL: /luggagecheck

Description: inserts the luggagecheck entity

Microservice: LuggageService


Methods

/luggagecheck


/cargocheck/{id}

Mapping URL: /cargocheck/{id}

Description: delete the cargocheck entity with the appended id

Microservice: CargoService


Methods

/cargocheck/{id}


/seatcategory

Mapping URL: /seatcategory

Description: inserts the seatcategory entity

Microservice: PassengerBookingService


Methods

/seatcategory


/luggagetype

Mapping URL: /luggagetype

Description: inserts the luggagetype entity

Microservice: LuggageService


Methods

/luggagetype


/airport/city/{id}

Mapping URL: /airport/city/{id}

Description: find the airport entities of city with the appended id

Microservice: AirportService


Methods

/airport/city/{id}


/airline

Mapping URL: /airline

Description: find all airline entities

Microservice: AirplaneService


Methods

/airline


/cargobooking/flight/{id}

Mapping URL: /cargobooking/flight/{id}

Description: find the cargobooking entities of flight with the appended id

Microservice: EmployeeService


Methods

/cargobooking/flight/{id}


/employeetask

Mapping URL: /employeetask

Description: find all employeetask entities

Microservice: EmployeeService


Methods

/employeetask


/flight

Mapping URL: /flight

Description: find all flight entities

Microservice: AirportService


Methods

/flight


/equipmenttype/{id}

Mapping URL: /equipmenttype/{id}

Description: get the equipmenttype entity with the appended id

Microservice: AirplaneService


Methods

/equipmenttype/{id}


/cargo/{id}

Mapping URL: /cargo/{id}

Description: updates the cargo entity with the appended id

Microservice: CargoService


Methods

/cargo/{id}


/airplaneproducer/{id}

Mapping URL: /airplaneproducer/{id}

Description: delete the airplaneproducer entity with the appended id

Microservice: AirplaneService


Methods

/airplaneproducer/{id}


/flightroute/{id}

Mapping URL: /flightroute/{id}

Description: get the flightroute entity with the appended id

Microservice: AirportService


Methods

/flightroute/{id}


/luggagecheck

Mapping URL: /luggagecheck

Description: find all luggagecheck entities

Microservice: LuggageService


Methods

/luggagecheck


/flightroute/destination/{id}

Mapping URL: /flightroute/destination/{id}

Description: find the flightroute entities of destination with the appended id

Microservice: AirportService


Methods

/flightroute/destination/{id}


/luggage/{id}

Mapping URL: /luggage/{id}

Description: delete the luggage entity with the appended id

Microservice: LuggageService


Methods

/luggage/{id}


/airplaneproducer/{id}

Mapping URL: /airplaneproducer/{id}

Description: updates the airplaneproducer entity with the appended id

Microservice: AirplaneService


Methods

/airplaneproducer/{id}


/cargocheck/{id}

Mapping URL: /cargocheck/{id}

Description: get the cargocheck entity with the appended id

Microservice: CargoService


Methods

/cargocheck/{id}


/gate/{id}

Mapping URL: /gate/{id}

Description: get the gate entity with the appended id

Microservice: AirportService


Methods

/gate/{id}


/airplane/{id}

Mapping URL: /airplane/{id}

Description: updates the airplane entity with the appended id

Microservice: AirplaneService


Methods

/airplane/{id}


/cargo

Mapping URL: /cargo

Description: inserts the cargo entity

Microservice: CargoService


Methods

/cargo


/passengerbooking/{id}

Mapping URL: /passengerbooking/{id}

Description: updates the passengerbooking entity with the appended id

Microservice: PassengerBookingService


Methods

/passengerbooking/{id}


/customer

Mapping URL: /customer

Description: inserts the customer entity

Microservice: EmployeeService


Methods

/customer


/airport

Mapping URL: /airport

Description: inserts the airport entity

Microservice: AirportService


Methods

/airport


/seat/airplane/{id}

Mapping URL: /seat/airplane/{id}

Description: find the seat entities of airplane with the appended id

Microservice: PassengerBookingService


Methods

/seat/airplane/{id}


/passengerbooking/seat/{id}

Mapping URL: /passengerbooking/seat/{id}

Description: find the passengerbooking entities of seat with the appended id

Microservice: PassengerBookingService


Methods

/passengerbooking/seat/{id}


/employee

Mapping URL: /employee

Description: inserts the employee entity

Microservice: EmployeeService


Methods

/employee


/passengerbooking

Mapping URL: /passengerbooking

Description: inserts the passengerbooking entity

Microservice: PassengerBookingService


Methods

/passengerbooking


/airplane

Mapping URL: /airplane

Description: find all airplane entities

Microservice: AirplaneService


Methods

/airplane


/employeetask/{id}

Mapping URL: /employeetask/{id}

Description: get the employeetask entity with the appended id

Microservice: EmployeeService


Methods

/employeetask/{id}


/passenger/nationality/{id}

Mapping URL: /passenger/nationality/{id}

Description: find the passenger entities of nationality with the appended id

Microservice: PassengerBookingService


Methods

/passenger/nationality/{id}


/employee

Mapping URL: /employee

Description: find all employee entities

Microservice: EmployeeService


Methods

/employee


/airplanetype/{id}

Mapping URL: /airplanetype/{id}

Description: delete the airplanetype entity with the appended id

Microservice: AirplaneService


Methods

/airplanetype/{id}


/flightroute

Mapping URL: /flightroute

Description: find all flightroute entities

Microservice: AirportService


Methods

/flightroute


/seatcategory/{id}

Mapping URL: /seatcategory/{id}

Description: updates the seatcategory entity with the appended id

Microservice: PassengerBookingService


Methods

/seatcategory/{id}


/passengerbooking/passenger/{id}

Mapping URL: /passengerbooking/passenger/{id}

Description: find the passengerbooking entities of passenger with the appended id

Microservice: PassengerBookingService


Methods

/passengerbooking/passenger/{id}


/airplane/{id}

Mapping URL: /airplane/{id}

Description: delete the airplane entity with the appended id

Microservice: AirplaneService


Methods

/airplane/{id}


/flight/{id}

Mapping URL: /flight/{id}

Description: delete the flight entity with the appended id

Microservice: AirportService


Methods

/flight/{id}


/luggagecheck/luggage/{id}

Mapping URL: /luggagecheck/luggage/{id}

Description: find the luggagecheck entities of luggage with the appended id

Microservice: LuggageService


Methods

/luggagecheck/luggage/{id}


/gate/{id}

Mapping URL: /gate/{id}

Description: delete the gate entity with the appended id

Microservice: AirportService


Methods

/gate/{id}


/luggage/{id}

Mapping URL: /luggage/{id}

Description: get the luggage entity with the appended id

Microservice: LuggageService


Methods

/luggage/{id}


/seatcategory/{id}

Mapping URL: /seatcategory/{id}

Description: get the seatcategory entity with the appended id

Microservice: PassengerBookingService


Methods

/seatcategory/{id}


/customer/{id}

Mapping URL: /customer/{id}

Description: get the customer entity with the appended id

Microservice: EmployeeService


Methods

/customer/{id}


/flightroute/source/{id}

Mapping URL: /flightroute/source/{id}

Description: find the flightroute entities of source with the appended id

Microservice: AirportService


Methods

/flightroute/source/{id}


/luggagecheck/{id}

Mapping URL: /luggagecheck/{id}

Description: delete the luggagecheck entity with the appended id

Microservice: LuggageService


Methods

/luggagecheck/{id}


/passenger/{id}

Mapping URL: /passenger/{id}

Description: get the passenger entity with the appended id

Microservice: PassengerBookingService


Methods

/passenger/{id}


/passenger/{id}

Mapping URL: /passenger/{id}

Description: updates the passenger entity with the appended id

Microservice: PassengerBookingService


Methods

/passenger/{id}


/airplaneequipment/equipmenttype/{id}

Mapping URL: /airplaneequipment/equipmenttype/{id}

Description: find the airplaneequipment entities of equipmenttype with the appended id

Microservice: AirplaneService


Methods

/airplaneequipment/equipmenttype/{id}


/flight/{id}

Mapping URL: /flight/{id}

Description: updates the flight entity with the appended id

Microservice: AirportService


Methods

/flight/{id}


/passengerbooking

Mapping URL: /passengerbooking

Description: find all passengerbooking entities

Microservice: PassengerBookingService


Methods

/passengerbooking


/airplaneequipment/{id}

Mapping URL: /airplaneequipment/{id}

Description: updates the airplaneequipment entity with the appended id

Microservice: AirplaneService


Methods

/airplaneequipment/{id}


/city

Mapping URL: /city

Description: find all city entities

Microservice: CountryService


Methods

/city


/airplaneequipment

Mapping URL: /airplaneequipment

Description: inserts the airplaneequipment entity

Microservice: AirplaneService


Methods

/airplaneequipment


/equipmenttype

Mapping URL: /equipmenttype

Description: inserts the equipmenttype entity

Microservice: AirplaneService


Methods

/equipmenttype


/seat/{id}

Mapping URL: /seat/{id}

Description: get the seat entity with the appended id

Microservice: PassengerBookingService


Methods

/seat/{id}


/seatcategory/{id}

Mapping URL: /seatcategory/{id}

Description: delete the seatcategory entity with the appended id

Microservice: PassengerBookingService


Methods

/seatcategory/{id}


/cargotype/{id}

Mapping URL: /cargotype/{id}

Description: delete the cargotype entity with the appended id

Microservice: CargoService


Methods

/cargotype/{id}


/luggagetype/{id}

Mapping URL: /luggagetype/{id}

Description: delete the luggagetype entity with the appended id

Microservice: LuggageService


Methods

/luggagetype/{id}


/city/country/{id}

Mapping URL: /city/country/{id}

Description: find the city entities of country with the appended id

Microservice: CountryService


Methods

/city/country/{id}


/cargocheck

Mapping URL: /cargocheck

Description: find all cargocheck entities

Microservice: CargoService


Methods

/cargocheck


/gate/terminal/{id}

Mapping URL: /gate/terminal/{id}

Description: find the gate entities of terminal with the appended id

Microservice: AirportService


Methods

/gate/terminal/{id}


/country

Mapping URL: /country

Description: inserts the country entity

Microservice: CountryService


Methods

/country


/airplaneproducer

Mapping URL: /airplaneproducer

Description: inserts the airplaneproducer entity

Microservice: AirplaneService


Methods

/airplaneproducer


/terminal/airport/{id}

Mapping URL: /terminal/airport/{id}

Description: find the terminal entities of airport with the appended id

Microservice: AirportService


Methods

/terminal/airport/{id}


/gate

Mapping URL: /gate

Description: inserts the gate entity

Microservice: AirportService


Methods

/gate


/country/{id}

Mapping URL: /country/{id}

Description: get the country entity with the appended id

Microservice: CountryService


Methods

/country/{id}


/customer

Mapping URL: /customer

Description: find all customer entities

Microservice: EmployeeService


Methods

/customer


/employeetask/{id}

Mapping URL: /employeetask/{id}

Description: delete the employeetask entity with the appended id

Microservice: EmployeeService


Methods

/employeetask/{id}


/terminal/{id}

Mapping URL: /terminal/{id}

Description: delete the terminal entity with the appended id

Microservice: AirportService


Methods

/terminal/{id}


/cargobooking/employee/{id}

Mapping URL: /cargobooking/employee/{id}

Description: find the cargobooking entities of employee with the appended id

Microservice: EmployeeService


Methods

/cargobooking/employee/{id}


/cargotype

Mapping URL: /cargotype

Description: inserts the cargotype entity

Microservice: CargoService


Methods

/cargotype


/terminal

Mapping URL: /terminal

Description: find all terminal entities

Microservice: AirportService


Methods

/terminal


/terminal/{id}

Mapping URL: /terminal/{id}

Description: get the terminal entity with the appended id

Microservice: AirportService


Methods

/terminal/{id}


/seat/seatcategory/{id}

Mapping URL: /seat/seatcategory/{id}

Description: find the seat entities of seatcategory with the appended id

Microservice: PassengerBookingService


Methods

/seat/seatcategory/{id}


/airplaneproducer

Mapping URL: /airplaneproducer

Description: find all airplaneproducer entities

Microservice: AirplaneService


Methods

/airplaneproducer


/airplaneproducer/{id}

Mapping URL: /airplaneproducer/{id}

Description: get the airplaneproducer entity with the appended id

Microservice: AirplaneService


Methods

/airplaneproducer/{id}


/city/{id}

Mapping URL: /city/{id}

Description: delete the city entity with the appended id

Microservice: CountryService


Methods

/city/{id}


/cargo/cargobooking/{id}

Mapping URL: /cargo/cargobooking/{id}

Description: find the cargo entities of cargobooking with the appended id

Microservice: CargoService


Methods

/cargo/cargobooking/{id}


/customer/{id}

Mapping URL: /customer/{id}

Description: delete the customer entity with the appended id

Microservice: EmployeeService


Methods

/customer/{id}


/luggagetype

Mapping URL: /luggagetype

Description: find all luggagetype entities

Microservice: LuggageService


Methods

/luggagetype


/airplanetype

Mapping URL: /airplanetype

Description: find all airplanetype entities

Microservice: AirplaneService


Methods

/airplanetype


/cargo/{id}

Mapping URL: /cargo/{id}

Description: delete the cargo entity with the appended id

Microservice: CargoService


Methods

/cargo/{id}


/cargocheck/{id}

Mapping URL: /cargocheck/{id}

Description: updates the cargocheck entity with the appended id

Microservice: CargoService


Methods

/cargocheck/{id}


/airplanetype

Mapping URL: /airplanetype

Description: inserts the airplanetype entity

Microservice: AirplaneService


Methods

/airplanetype


/airplane

Mapping URL: /airplane

Description: inserts the airplane entity

Microservice: AirplaneService


Methods

/airplane


/city/{id}

Mapping URL: /city/{id}

Description: updates the city entity with the appended id

Microservice: CountryService


Methods

/city/{id}


/luggagecheck/{id}

Mapping URL: /luggagecheck/{id}

Description: updates the luggagecheck entity with the appended id

Microservice: LuggageService


Methods

/luggagecheck/{id}


/cargobooking

Mapping URL: /cargobooking

Description: find all cargobooking entities

Microservice: EmployeeService


Methods

/cargobooking


/employeetask/task/{id}

Mapping URL: /employeetask/task/{id}

Description: find the employeetask entities of task with the appended id

Microservice: EmployeeService


Methods

/employeetask/task/{id}


/gate

Mapping URL: /gate

Description: find all gate entities

Microservice: AirportService


Methods

/gate


/customer/{id}

Mapping URL: /customer/{id}

Description: updates the customer entity with the appended id

Microservice: EmployeeService


Methods

/customer/{id}


/terminal

Mapping URL: /terminal

Description: inserts the terminal entity

Microservice: AirportService


Methods

/terminal


/flight/flightroute/{id}

Mapping URL: /flight/flightroute/{id}

Description: find the flight entities of flightroute with the appended id

Microservice: AirportService


Methods

/flight/flightroute/{id}


/seat

Mapping URL: /seat

Description: find all seat entities

Microservice: PassengerBookingService


Methods

/seat


/airplaneequipment

Mapping URL: /airplaneequipment

Description: find all airplaneequipment entities

Microservice: AirplaneService


Methods

/airplaneequipment


/airplanetype/{id}

Mapping URL: /airplanetype/{id}

Description: updates the airplanetype entity with the appended id

Microservice: AirplaneService


Methods

/airplanetype/{id}


/cargocheck

Mapping URL: /cargocheck

Description: inserts the cargocheck entity

Microservice: CargoService


Methods

/cargocheck


/country/{id}

Mapping URL: /country/{id}

Description: updates the country entity with the appended id

Microservice: CountryService


Methods

/country/{id}


/cargo

Mapping URL: /cargo

Description: find all cargo entities

Microservice: CargoService


Methods

/cargo


/cargocheck/checker/{id}

Mapping URL: /cargocheck/checker/{id}

Description: find the cargocheck entities of checker with the appended id

Microservice: CargoService


Methods

/cargocheck/checker/{id}


/luggage

Mapping URL: /luggage

Description: find all luggage entities

Microservice: LuggageService


Methods

/luggage


/airline/{id}

Mapping URL: /airline/{id}

Description: updates the airline entity with the appended id

Microservice: AirplaneService


Methods

/airline/{id}


/seat/{id}

Mapping URL: /seat/{id}

Description: delete the seat entity with the appended id

Microservice: PassengerBookingService


Methods

/seat/{id}


/cargobooking/{id}

Mapping URL: /cargobooking/{id}

Description: get the cargobooking entity with the appended id

Microservice: EmployeeService


Methods

/cargobooking/{id}


/airline

Mapping URL: /airline

Description: inserts the airline entity

Microservice: AirplaneService


Methods

/airline


/cargotype/{id}

Mapping URL: /cargotype/{id}

Description: updates the cargotype entity with the appended id

Microservice: CargoService


Methods

/cargotype/{id}


/cargo/{id}

Mapping URL: /cargo/{id}

Description: get the cargo entity with the appended id

Microservice: CargoService


Methods

/cargo/{id}


/luggagetype/{id}

Mapping URL: /luggagetype/{id}

Description: updates the luggagetype entity with the appended id

Microservice: LuggageService


Methods

/luggagetype/{id}


/airline/{id}

Mapping URL: /airline/{id}

Description: get the airline entity with the appended id

Microservice: AirplaneService


Methods

/airline/{id}


/flightroute/{id}

Mapping URL: /flightroute/{id}

Description: delete the flightroute entity with the appended id

Microservice: AirportService


Methods

/flightroute/{id}


/equipmenttype/{id}

Mapping URL: /equipmenttype/{id}

Description: delete the equipmenttype entity with the appended id

Microservice: AirplaneService


Methods

/equipmenttype/{id}


/cargobooking/{id}

Mapping URL: /cargobooking/{id}

Description: delete the cargobooking entity with the appended id

Microservice: EmployeeService


Methods

/cargobooking/{id}


/passenger

Mapping URL: /passenger

Description: inserts the passenger entity

Microservice: PassengerBookingService


Methods

/passenger


/country

Mapping URL: /country

Description: find all country entities

Microservice: CountryService


Methods

/country


/city/{id}

Mapping URL: /city/{id}

Description: get the city entity with the appended id

Microservice: CountryService


Methods

/city/{id}


/equipmenttype

Mapping URL: /equipmenttype

Description: find all equipmenttype entities

Microservice: AirplaneService


Methods

/equipmenttype


/airplanetype/airplaneproducer/{id}

Mapping URL: /airplanetype/airplaneproducer/{id}

Description: find the airplanetype entities of airplaneproducer with the appended id

Microservice: AirplaneService


Methods

/airplanetype/airplaneproducer/{id}


/flight

Mapping URL: /flight

Description: inserts the flight entity

Microservice: AirportService


Methods

/flight


/cargo/cargotype/{id}

Mapping URL: /cargo/cargotype/{id}

Description: find the cargo entities of cargotype with the appended id

Microservice: CargoService


Methods

/cargo/cargotype/{id}


/task

Mapping URL: /task

Description: find all task entities

Microservice: EmployeeService


Methods

/task


/cargotype/{id}

Mapping URL: /cargotype/{id}

Description: get the cargotype entity with the appended id

Microservice: CargoService


Methods

/cargotype/{id}


/airport/{id}

Mapping URL: /airport/{id}

Description: delete the airport entity with the appended id

Microservice: AirportService


Methods

/airport/{id}


/passenger

Mapping URL: /passenger

Description: find all passenger entities

Microservice: PassengerBookingService


Methods

/passenger


/employee/airline/{id}

Mapping URL: /employee/airline/{id}

Description: find the employee entities of airline with the appended id

Microservice: EmployeeService


Methods

/employee/airline/{id}


/terminal/{id}

Mapping URL: /terminal/{id}

Description: updates the terminal entity with the appended id

Microservice: AirportService


Methods

/terminal/{id}


/airport/{id}

Mapping URL: /airport/{id}

Description: get the airport entity with the appended id

Microservice: AirportService


Methods

/airport/{id}


/gate/{id}

Mapping URL: /gate/{id}

Description: updates the gate entity with the appended id

Microservice: AirportService


Methods

/gate/{id}


/flightroute/{id}

Mapping URL: /flightroute/{id}

Description: updates the flightroute entity with the appended id

Microservice: AirportService


Methods

/flightroute/{id}


/luggage/luggagetype/{id}

Mapping URL: /luggage/luggagetype/{id}

Description: find the luggage entities of luggagetype with the appended id

Microservice: LuggageService


Methods

/luggage/luggagetype/{id}


/employeetask/employee/{id}

Mapping URL: /employeetask/employee/{id}

Description: find the employeetask entities of employee with the appended id

Microservice: EmployeeService


Methods

/employeetask/employee/{id}


/task/{id}

Mapping URL: /task/{id}

Description: updates the task entity with the appended id

Microservice: EmployeeService


Methods

/task/{id}


/airplanetype/{id}

Mapping URL: /airplanetype/{id}

Description: get the airplanetype entity with the appended id

Microservice: AirplaneService


Methods

/airplanetype/{id}


/luggagecheck/checker/{id}

Mapping URL: /luggagecheck/checker/{id}

Description: find the luggagecheck entities of checker with the appended id

Microservice: LuggageService


Methods

/luggagecheck/checker/{id}


/cargocheck/cargo/{id}

Mapping URL: /cargocheck/cargo/{id}

Description: find the cargocheck entities of cargo with the appended id

Microservice: CargoService


Methods

/cargocheck/cargo/{id}


/employee/{id}

Mapping URL: /employee/{id}

Description: get the employee entity with the appended id

Microservice: EmployeeService


Methods

/employee/{id}


/employeetask

Mapping URL: /employeetask

Description: inserts the employeetask entity

Microservice: EmployeeService


Methods

/employeetask


/passengerbooking/flight/{id}

Mapping URL: /passengerbooking/flight/{id}

Description: find the passengerbooking entities of flight with the appended id

Microservice: PassengerBookingService


Methods

/passengerbooking/flight/{id}


/seat

Mapping URL: /seat

Description: inserts the seat entity

Microservice: PassengerBookingService


Methods

/seat


/task/{id}

Mapping URL: /task/{id}

Description: delete the task entity with the appended id

Microservice: EmployeeService


Methods

/task/{id}


/luggagecheck/{id}

Mapping URL: /luggagecheck/{id}

Description: get the luggagecheck entity with the appended id

Microservice: LuggageService


Methods

/luggagecheck/{id}


/cargotype

Mapping URL: /cargotype

Description: find all cargotype entities

Microservice: CargoService


Methods

/cargotype


/luggage/{id}

Mapping URL: /luggage/{id}

Description: updates the luggage entity with the appended id

Microservice: LuggageService


Methods

/luggage/{id}


/flight/departuregate/{id}

Mapping URL: /flight/departuregate/{id}

Description: find the flight entities of departuregate with the appended id

Microservice: AirportService


Methods

/flight/departuregate/{id}


/airport

Mapping URL: /airport

Description: find all airport entities

Microservice: AirportService


Methods

/airport


/airline/{id}

Mapping URL: /airline/{id}

Description: delete the airline entity with the appended id

Microservice: AirplaneService


Methods

/airline/{id}


/task/{id}

Mapping URL: /task/{id}

Description: get the task entity with the appended id

Microservice: EmployeeService


Methods

/task/{id}


/passengerbooking/{id}

Mapping URL: /passengerbooking/{id}

Description: delete the passengerbooking entity with the appended id

Microservice: PassengerBookingService


Methods

/passengerbooking/{id}


/airplaneequipment/{id}

Mapping URL: /airplaneequipment/{id}

Description: get the airplaneequipment entity with the appended id

Microservice: AirplaneService


Methods

/airplaneequipment/{id}


/country/{id}

Mapping URL: /country/{id}

Description: delete the country entity with the appended id

Microservice: CountryService


Methods

/country/{id}


/airplane/{id}

Mapping URL: /airplane/{id}

Description: get the airplane entity with the appended id

Microservice: AirplaneService


Methods

/airplane/{id}


/cargobooking/{id}

Mapping URL: /cargobooking/{id}

Description: updates the cargobooking entity with the appended id

Microservice: EmployeeService


Methods

/cargobooking/{id}


/passenger/{id}

Mapping URL: /passenger/{id}

Description: delete the passenger entity with the appended id

Microservice: PassengerBookingService


Methods

/passenger/{id}


/passengerbooking/{id}

Mapping URL: /passengerbooking/{id}

Description: get the passengerbooking entity with the appended id

Microservice: PassengerBookingService


Methods

/passengerbooking/{id}


/cargobooking

Mapping URL: /cargobooking

Description: inserts the cargobooking entity

Microservice: EmployeeService


Methods

/cargobooking


/luggage

Mapping URL: /luggage

Description: inserts the luggage entity

Microservice: LuggageService


Methods

/luggage


/luggage/flightbooking/{id}

Mapping URL: /luggage/flightbooking/{id}

Description: find the luggage entities of flightbooking with the appended id

Microservice: LuggageService


Methods

/luggage/flightbooking/{id}


/seat/{id}

Mapping URL: /seat/{id}

Description: updates the seat entity with the appended id

Microservice: PassengerBookingService


Methods

/seat/{id}


/airplane/airline/{id}

Mapping URL: /airplane/airline/{id}

Description: find the airplane entities of airline with the appended id

Microservice: AirplaneService


Methods

/airplane/airline/{id}


/flight/airplane/{id}

Mapping URL: /flight/airplane/{id}

Description: find the flight entities of airplane with the appended id

Microservice: AirportService


Methods

/flight/airplane/{id}


/flightroute

Mapping URL: /flightroute

Description: inserts the flightroute entity

Microservice: AirportService


Methods

/flightroute


/equipmenttype/{id}

Mapping URL: /equipmenttype/{id}

Description: updates the equipmenttype entity with the appended id

Microservice: AirplaneService


Methods

/equipmenttype/{id}


/city

Mapping URL: /city

Description: inserts the city entity

Microservice: CountryService


Methods

/city


/airplaneequipment/{id}

Mapping URL: /airplaneequipment/{id}

Description: delete the airplaneequipment entity with the appended id

Microservice: AirplaneService


Methods

/airplaneequipment/{id}


/airport/{id}

Mapping URL: /airport/{id}

Description: updates the airport entity with the appended id

Microservice: AirportService


Methods

/airport/{id}


/flight/{id}

Mapping URL: /flight/{id}

Description: get the flight entity with the appended id

Microservice: AirportService


Methods

/flight/{id}


/flight/arrivalgate/{id}

Mapping URL: /flight/arrivalgate/{id}

Description: find the flight entities of arrivalgate with the appended id

Microservice: AirportService


Methods

/flight/arrivalgate/{id}


/employee/{id}

Mapping URL: /employee/{id}

Description: delete the employee entity with the appended id

Microservice: EmployeeService


Methods

/employee/{id}


/employee/{id}

Mapping URL: /employee/{id}

Description: updates the employee entity with the appended id

Microservice: EmployeeService


Methods

/employee/{id}





/luggage/{id}

Mapping URL: /luggage/{id}

Description: LuggageService

Name: findLuggageById(id)

Request Method: GET

Service Interface: /luggage/{id}

Service Entity: Luggage



/passengerbooking/passenger/{id}

Mapping URL: /passengerbooking/passenger/{id}

Description: PassengerService

Name: findAllPassengerBookingOfPassenger(id)

Request Method: GET

Service Interface: /passengerbooking/passenger/{id}

Service Entity: Passenger



/airplane/airline/{id}

Mapping URL: /airplane/airline/{id}

Description: AirlineService

Name: findAllAirplaneOfAirline(id)

Request Method: GET

Service Interface: /airplane/airline/{id}

Service Entity: Airline



/city/{id}

Mapping URL: /city/{id}

Description: CityService

Name: deleteCityById(id)

Request Method: DELETE

Service Interface: /city/{id}

Service Entity: City



/flight/airplane/{id}

Mapping URL: /flight/airplane/{id}

Description: AirplaneService

Name: findAllFlightOfAirplane(id)

Request Method: GET

Service Interface: /flight/airplane/{id}

Service Entity: Airplane



/airplaneproducer/{id}

Mapping URL: /airplaneproducer/{id}

Description: AirplaneProducerService

Name: updateAirplaneProducerById(airplaneproducer)

Request Method: PUT

Service Interface: /airplaneproducer/{id}

Service Entity: AirplaneProducer



/gate/{id}

Mapping URL: /gate/{id}

Description: GateService

Name: updateGateById(gate)

Request Method: PUT

Service Interface: /gate/{id}

Service Entity: Gate



/flight/flightroute/{id}

Mapping URL: /flight/flightroute/{id}

Description: FlightRouteService

Name: findAllFlightOfFlightRoute(id)

Request Method: GET

Service Interface: /flight/flightroute/{id}

Service Entity: FlightRoute



/country

Mapping URL: /country

Description: CountryService

Name: findAllCountry()

Request Method: GET

Service Interface: /country

Service Entity: Country



/flight/{id}

Mapping URL: /flight/{id}

Description: FlightService

Name: findFlightById(id)

Request Method: GET

Service Interface: /flight/{id}

Service Entity: Flight



/passengerbooking/{id}

Mapping URL: /passengerbooking/{id}

Description: PassengerBookingService

Name: findPassengerBookingById(id)

Request Method: GET

Service Interface: /passengerbooking/{id}

Service Entity: PassengerBooking



/cargotype

Mapping URL: /cargotype

Description: CargoTypeService

Name: findAllCargoType()

Request Method: GET

Service Interface: /cargotype

Service Entity: CargoType



/employeetask/{id}

Mapping URL: /employeetask/{id}

Description: EmployeeTaskService

Name: findEmployeeTaskById(id)

Request Method: GET

Service Interface: /employeetask/{id}

Service Entity: EmployeeTask



/passengerbooking

Mapping URL: /passengerbooking

Description: PassengerBookingService

Name: insertPassengerBooking(passengerbooking)

Request Method: POST

Service Interface: /passengerbooking

Service Entity: PassengerBooking



/seatcategory/{id}

Mapping URL: /seatcategory/{id}

Description: SeatCategoryService

Name: updateSeatCategoryById(seatcategory)

Request Method: PUT

Service Interface: /seatcategory/{id}

Service Entity: SeatCategory



/equipmenttype/{id}

Mapping URL: /equipmenttype/{id}

Description: EquipmentTypeService

Name: updateEquipmentTypeById(equipmenttype)

Request Method: PUT

Service Interface: /equipmenttype/{id}

Service Entity: EquipmentType



/cargo/{id}

Mapping URL: /cargo/{id}

Description: CargoService

Name: findCargoById(id)

Request Method: GET

Service Interface: /cargo/{id}

Service Entity: Cargo



/cargotype/{id}

Mapping URL: /cargotype/{id}

Description: CargoTypeService

Name: deleteCargoTypeById(id)

Request Method: DELETE

Service Interface: /cargotype/{id}

Service Entity: CargoType



/airplaneproducer

Mapping URL: /airplaneproducer

Description: AirplaneProducerService

Name: findAllAirplaneProducer()

Request Method: GET

Service Interface: /airplaneproducer

Service Entity: AirplaneProducer



/airline

Mapping URL: /airline

Description: AirlineService

Name: insertAirline(airline)

Request Method: POST

Service Interface: /airline

Service Entity: Airline



/cargo/cargobooking/{id}

Mapping URL: /cargo/cargobooking/{id}

Description: CargoBookingService

Name: findAllCargoOfCargoBooking(id)

Request Method: GET

Service Interface: /cargo/cargobooking/{id}

Service Entity: CargoBooking



/employeetask/{id}

Mapping URL: /employeetask/{id}

Description: EmployeeTaskService

Name: deleteEmployeeTaskById(id)

Request Method: DELETE

Service Interface: /employeetask/{id}

Service Entity: EmployeeTask



/airline/{id}

Mapping URL: /airline/{id}

Description: AirlineService

Name: deleteAirlineById(id)

Request Method: DELETE

Service Interface: /airline/{id}

Service Entity: Airline



/flightroute/{id}

Mapping URL: /flightroute/{id}

Description: FlightRouteService

Name: updateFlightRouteById(flightroute)

Request Method: PUT

Service Interface: /flightroute/{id}

Service Entity: FlightRoute



/cargo/{id}

Mapping URL: /cargo/{id}

Description: CargoService

Name: updateCargoById(cargo)

Request Method: PUT

Service Interface: /cargo/{id}

Service Entity: Cargo



/seatcategory

Mapping URL: /seatcategory

Description: SeatCategoryService

Name: insertSeatCategory(seatcategory)

Request Method: POST

Service Interface: /seatcategory

Service Entity: SeatCategory



/airplane/{id}

Mapping URL: /airplane/{id}

Description: AirplaneService

Name: findAirplaneById(id)

Request Method: GET

Service Interface: /airplane/{id}

Service Entity: Airplane



/task

Mapping URL: /task

Description: TaskService

Name: insertTask(task)

Request Method: POST

Service Interface: /task

Service Entity: Task



/luggagecheck/luggage/{id}

Mapping URL: /luggagecheck/luggage/{id}

Description: LuggageService

Name: findAllLuggageCheckOfLuggage(id)

Request Method: GET

Service Interface: /luggagecheck/luggage/{id}

Service Entity: Luggage



/task

Mapping URL: /task

Description: TaskService

Name: findAllTask()

Request Method: GET

Service Interface: /task

Service Entity: Task



/cargocheck

Mapping URL: /cargocheck

Description: CargoCheckService

Name: insertCargoCheck(cargocheck)

Request Method: POST

Service Interface: /cargocheck

Service Entity: CargoCheck



/terminal/{id}

Mapping URL: /terminal/{id}

Description: TerminalService

Name: findTerminalById(id)

Request Method: GET

Service Interface: /terminal/{id}

Service Entity: Terminal



/customer/{id}

Mapping URL: /customer/{id}

Description: CustomerService

Name: findCustomerById(id)

Request Method: GET

Service Interface: /customer/{id}

Service Entity: Customer



/flightroute/{id}

Mapping URL: /flightroute/{id}

Description: FlightRouteService

Name: findFlightRouteById(id)

Request Method: GET

Service Interface: /flightroute/{id}

Service Entity: FlightRoute



/luggagecheck

Mapping URL: /luggagecheck

Description: LuggageCheckService

Name: insertLuggageCheck(luggagecheck)

Request Method: POST

Service Interface: /luggagecheck

Service Entity: LuggageCheck



/cargobooking/flight/{id}

Mapping URL: /cargobooking/flight/{id}

Description: FlightService

Name: findAllCargoBookingOfFlight(id)

Request Method: GET

Service Interface: /cargobooking/flight/{id}

Service Entity: Flight



/luggagetype/{id}

Mapping URL: /luggagetype/{id}

Description: LuggageTypeService

Name: findLuggageTypeById(id)

Request Method: GET

Service Interface: /luggagetype/{id}

Service Entity: LuggageType



/airport/{id}

Mapping URL: /airport/{id}

Description: AirportService

Name: findAirportById(id)

Request Method: GET

Service Interface: /airport/{id}

Service Entity: Airport



/luggagecheck

Mapping URL: /luggagecheck

Description: LuggageCheckService

Name: findAllLuggageCheck()

Request Method: GET

Service Interface: /luggagecheck

Service Entity: LuggageCheck



/airplanetype/{id}

Mapping URL: /airplanetype/{id}

Description: AirplaneTypeService

Name: findAirplaneTypeById(id)

Request Method: GET

Service Interface: /airplanetype/{id}

Service Entity: AirplaneType



/luggagetype

Mapping URL: /luggagetype

Description: LuggageTypeService

Name: insertLuggageType(luggagetype)

Request Method: POST

Service Interface: /luggagetype

Service Entity: LuggageType



/cargobooking/employee/{id}

Mapping URL: /cargobooking/employee/{id}

Description: EmployeeService

Name: findAllCargoBookingOfEmployee(id)

Request Method: GET

Service Interface: /cargobooking/employee/{id}

Service Entity: Employee



/customer

Mapping URL: /customer

Description: CustomerService

Name: insertCustomer(customer)

Request Method: POST

Service Interface: /customer

Service Entity: Customer



/task/{id}

Mapping URL: /task/{id}

Description: TaskService

Name: findTaskById(id)

Request Method: GET

Service Interface: /task/{id}

Service Entity: Task



/country

Mapping URL: /country

Description: CountryService

Name: insertCountry(country)

Request Method: POST

Service Interface: /country

Service Entity: Country



/city/{id}

Mapping URL: /city/{id}

Description: CityService

Name: updateCityById(city)

Request Method: PUT

Service Interface: /city/{id}

Service Entity: City



/seat

Mapping URL: /seat

Description: SeatService

Name: insertSeat(seat)

Request Method: POST

Service Interface: /seat

Service Entity: Seat



/cargobooking

Mapping URL: /cargobooking

Description: CargoBookingService

Name: findAllCargoBooking()

Request Method: GET

Service Interface: /cargobooking

Service Entity: CargoBooking



/flight/{id}

Mapping URL: /flight/{id}

Description: FlightService

Name: deleteFlightById(id)

Request Method: DELETE

Service Interface: /flight/{id}

Service Entity: Flight



/city

Mapping URL: /city

Description: CityService

Name: findAllCity()

Request Method: GET

Service Interface: /city

Service Entity: City



/airline/{id}

Mapping URL: /airline/{id}

Description: AirlineService

Name: updateAirlineById(airline)

Request Method: PUT

Service Interface: /airline/{id}

Service Entity: Airline



/passengerbooking/{id}

Mapping URL: /passengerbooking/{id}

Description: PassengerBookingService

Name: deletePassengerBookingById(id)

Request Method: DELETE

Service Interface: /passengerbooking/{id}

Service Entity: PassengerBooking



/seat

Mapping URL: /seat

Description: SeatService

Name: findAllSeat()

Request Method: GET

Service Interface: /seat

Service Entity: Seat



/airplane/{id}

Mapping URL: /airplane/{id}

Description: AirplaneService

Name: deleteAirplaneById(id)

Request Method: DELETE

Service Interface: /airplane/{id}

Service Entity: Airplane



/luggagecheck/{id}

Mapping URL: /luggagecheck/{id}

Description: LuggageCheckService

Name: deleteLuggageCheckById(id)

Request Method: DELETE

Service Interface: /luggagecheck/{id}

Service Entity: LuggageCheck



/gate

Mapping URL: /gate

Description: GateService

Name: findAllGate()

Request Method: GET

Service Interface: /gate

Service Entity: Gate



/employeetask/employee/{id}

Mapping URL: /employeetask/employee/{id}

Description: EmployeeService

Name: findAllEmployeeTaskOfEmployee(id)

Request Method: GET

Service Interface: /employeetask/employee/{id}

Service Entity: Employee



/flight

Mapping URL: /flight

Description: FlightService

Name: insertFlight(flight)

Request Method: POST

Service Interface: /flight

Service Entity: Flight



/gate

Mapping URL: /gate

Description: GateService

Name: insertGate(gate)

Request Method: POST

Service Interface: /gate

Service Entity: Gate



/flightroute/{id}

Mapping URL: /flightroute/{id}

Description: FlightRouteService

Name: deleteFlightRouteById(id)

Request Method: DELETE

Service Interface: /flightroute/{id}

Service Entity: FlightRoute



/luggagecheck/{id}

Mapping URL: /luggagecheck/{id}

Description: LuggageCheckService

Name: updateLuggageCheckById(luggagecheck)

Request Method: PUT

Service Interface: /luggagecheck/{id}

Service Entity: LuggageCheck



/customer/{id}

Mapping URL: /customer/{id}

Description: CustomerService

Name: updateCustomerById(customer)

Request Method: PUT

Service Interface: /customer/{id}

Service Entity: Customer



/airport/{id}

Mapping URL: /airport/{id}

Description: AirportService

Name: updateAirportById(airport)

Request Method: PUT

Service Interface: /airport/{id}

Service Entity: Airport



/city/{id}

Mapping URL: /city/{id}

Description: CityService

Name: findCityById(id)

Request Method: GET

Service Interface: /city/{id}

Service Entity: City



/gate/{id}

Mapping URL: /gate/{id}

Description: GateService

Name: findGateById(id)

Request Method: GET

Service Interface: /gate/{id}

Service Entity: Gate



/passenger/nationality/{id}

Mapping URL: /passenger/nationality/{id}

Description: CountryService

Name: findAllPassengerOfNationality(id)

Request Method: GET

Service Interface: /passenger/nationality/{id}

Service Entity: Country



/airplane/{id}

Mapping URL: /airplane/{id}

Description: AirplaneService

Name: updateAirplaneById(airplane)

Request Method: PUT

Service Interface: /airplane/{id}

Service Entity: Airplane



/luggage/flightbooking/{id}

Mapping URL: /luggage/flightbooking/{id}

Description: PassengerBookingService

Name: findAllLuggageOfFlightBooking(id)

Request Method: GET

Service Interface: /luggage/flightbooking/{id}

Service Entity: PassengerBooking



/equipmenttype

Mapping URL: /equipmenttype

Description: EquipmentTypeService

Name: insertEquipmentType(equipmenttype)

Request Method: POST

Service Interface: /equipmenttype

Service Entity: EquipmentType



/airplaneproducer

Mapping URL: /airplaneproducer

Description: AirplaneProducerService

Name: insertAirplaneProducer(airplaneproducer)

Request Method: POST

Service Interface: /airplaneproducer

Service Entity: AirplaneProducer



/cargobooking/{id}

Mapping URL: /cargobooking/{id}

Description: CargoBookingService

Name: findCargoBookingById(id)

Request Method: GET

Service Interface: /cargobooking/{id}

Service Entity: CargoBooking



/employee

Mapping URL: /employee

Description: EmployeeService

Name: insertEmployee(employee)

Request Method: POST

Service Interface: /employee

Service Entity: Employee



/cargocheck/{id}

Mapping URL: /cargocheck/{id}

Description: CargoCheckService

Name: updateCargoCheckById(cargocheck)

Request Method: PUT

Service Interface: /cargocheck/{id}

Service Entity: CargoCheck



/airport/{id}

Mapping URL: /airport/{id}

Description: AirportService

Name: deleteAirportById(id)

Request Method: DELETE

Service Interface: /airport/{id}

Service Entity: Airport



/airplaneequipment/airplane/{id}

Mapping URL: /airplaneequipment/airplane/{id}

Description: AirplaneService

Name: findAllAirplaneEquipmentOfAirplane(id)

Request Method: GET

Service Interface: /airplaneequipment/airplane/{id}

Service Entity: Airplane



/employee/airline/{id}

Mapping URL: /employee/airline/{id}

Description: AirlineService

Name: findAllEmployeeOfAirline(id)

Request Method: GET

Service Interface: /employee/airline/{id}

Service Entity: Airline



/employeetask

Mapping URL: /employeetask

Description: EmployeeTaskService

Name: findAllEmployeeTask()

Request Method: GET

Service Interface: /employeetask

Service Entity: EmployeeTask



/airplane

Mapping URL: /airplane

Description: AirplaneService

Name: insertAirplane(airplane)

Request Method: POST

Service Interface: /airplane

Service Entity: Airplane



/flight/departuregate/{id}

Mapping URL: /flight/departuregate/{id}

Description: GateService

Name: findAllFlightOfDepartureGate(id)

Request Method: GET

Service Interface: /flight/departuregate/{id}

Service Entity: Gate



/airplanetype

Mapping URL: /airplanetype

Description: AirplaneTypeService

Name: insertAirplaneType(airplanetype)

Request Method: POST

Service Interface: /airplanetype

Service Entity: AirplaneType



/cargo/cargotype/{id}

Mapping URL: /cargo/cargotype/{id}

Description: CargoTypeService

Name: findAllCargoOfCargoType(id)

Request Method: GET

Service Interface: /cargo/cargotype/{id}

Service Entity: CargoType



/airplane

Mapping URL: /airplane

Description: AirplaneService

Name: findAllAirplane()

Request Method: GET

Service Interface: /airplane

Service Entity: Airplane



/cargotype/{id}

Mapping URL: /cargotype/{id}

Description: CargoTypeService

Name: updateCargoTypeById(cargotype)

Request Method: PUT

Service Interface: /cargotype/{id}

Service Entity: CargoType



/cargocheck/cargo/{id}

Mapping URL: /cargocheck/cargo/{id}

Description: CargoService

Name: findAllCargoCheckOfCargo(id)

Request Method: GET

Service Interface: /cargocheck/cargo/{id}

Service Entity: Cargo



/airline/{id}

Mapping URL: /airline/{id}

Description: AirlineService

Name: findAirlineById(id)

Request Method: GET

Service Interface: /airline/{id}

Service Entity: Airline



/cargobooking/{id}

Mapping URL: /cargobooking/{id}

Description: CargoBookingService

Name: deleteCargoBookingById(id)

Request Method: DELETE

Service Interface: /cargobooking/{id}

Service Entity: CargoBooking



/task/{id}

Mapping URL: /task/{id}

Description: TaskService

Name: updateTaskById(task)

Request Method: PUT

Service Interface: /task/{id}

Service Entity: Task



/terminal/{id}

Mapping URL: /terminal/{id}

Description: TerminalService

Name: deleteTerminalById(id)

Request Method: DELETE

Service Interface: /terminal/{id}

Service Entity: Terminal



/seat/{id}

Mapping URL: /seat/{id}

Description: SeatService

Name: deleteSeatById(id)

Request Method: DELETE

Service Interface: /seat/{id}

Service Entity: Seat



/terminal/airport/{id}

Mapping URL: /terminal/airport/{id}

Description: AirportService

Name: findAllTerminalOfAirport(id)

Request Method: GET

Service Interface: /terminal/airport/{id}

Service Entity: Airport



/cargobooking

Mapping URL: /cargobooking

Description: CargoBookingService

Name: insertCargoBooking(cargobooking)

Request Method: POST

Service Interface: /cargobooking

Service Entity: CargoBooking



/cargocheck/{id}

Mapping URL: /cargocheck/{id}

Description: CargoCheckService

Name: findCargoCheckById(id)

Request Method: GET

Service Interface: /cargocheck/{id}

Service Entity: CargoCheck



/flightroute/destination/{id}

Mapping URL: /flightroute/destination/{id}

Description: AirportService

Name: findAllFlightRouteOfDestination(id)

Request Method: GET

Service Interface: /flightroute/destination/{id}

Service Entity: Airport



/cargotype

Mapping URL: /cargotype

Description: CargoTypeService

Name: insertCargoType(cargotype)

Request Method: POST

Service Interface: /cargotype

Service Entity: CargoType



/terminal/{id}

Mapping URL: /terminal/{id}

Description: TerminalService

Name: updateTerminalById(terminal)

Request Method: PUT

Service Interface: /terminal/{id}

Service Entity: Terminal



/airplane/airplanetype/{id}

Mapping URL: /airplane/airplanetype/{id}

Description: AirplaneTypeService

Name: findAllAirplaneOfAirplaneType(id)

Request Method: GET

Service Interface: /airplane/airplanetype/{id}

Service Entity: AirplaneType



/gate/terminal/{id}

Mapping URL: /gate/terminal/{id}

Description: TerminalService

Name: findAllGateOfTerminal(id)

Request Method: GET

Service Interface: /gate/terminal/{id}

Service Entity: Terminal



/seat/seatcategory/{id}

Mapping URL: /seat/seatcategory/{id}

Description: SeatCategoryService

Name: findAllSeatOfSeatCategory(id)

Request Method: GET

Service Interface: /seat/seatcategory/{id}

Service Entity: SeatCategory



/flightroute/source/{id}

Mapping URL: /flightroute/source/{id}

Description: AirportService

Name: findAllFlightRouteOfSource(id)

Request Method: GET

Service Interface: /flightroute/source/{id}

Service Entity: Airport



/airplaneequipment

Mapping URL: /airplaneequipment

Description: AirplaneEquipmentService

Name: findAllAirplaneEquipment()

Request Method: GET

Service Interface: /airplaneequipment

Service Entity: AirplaneEquipment



/airport/city/{id}

Mapping URL: /airport/city/{id}

Description: CityService

Name: findAllAirportOfCity(id)

Request Method: GET

Service Interface: /airport/city/{id}

Service Entity: City



/cargocheck/{id}

Mapping URL: /cargocheck/{id}

Description: CargoCheckService

Name: deleteCargoCheckById(id)

Request Method: DELETE

Service Interface: /cargocheck/{id}

Service Entity: CargoCheck



/seatcategory/{id}

Mapping URL: /seatcategory/{id}

Description: SeatCategoryService

Name: findSeatCategoryById(id)

Request Method: GET

Service Interface: /seatcategory/{id}

Service Entity: SeatCategory



/airplanetype/airplaneproducer/{id}

Mapping URL: /airplanetype/airplaneproducer/{id}

Description: AirplaneProducerService

Name: findAllAirplaneTypeOfAirplaneProducer(id)

Request Method: GET

Service Interface: /airplanetype/airplaneproducer/{id}

Service Entity: AirplaneProducer



/city

Mapping URL: /city

Description: CityService

Name: insertCity(city)

Request Method: POST

Service Interface: /city

Service Entity: City



/flight

Mapping URL: /flight

Description: FlightService

Name: findAllFlight()

Request Method: GET

Service Interface: /flight

Service Entity: Flight



/cargobooking/{id}

Mapping URL: /cargobooking/{id}

Description: CargoBookingService

Name: updateCargoBookingById(cargobooking)

Request Method: PUT

Service Interface: /cargobooking/{id}

Service Entity: CargoBooking



/airplaneequipment/{id}

Mapping URL: /airplaneequipment/{id}

Description: AirplaneEquipmentService

Name: findAirplaneEquipmentById(id)

Request Method: GET

Service Interface: /airplaneequipment/{id}

Service Entity: AirplaneEquipment



/city/country/{id}

Mapping URL: /city/country/{id}

Description: CountryService

Name: findAllCityOfCountry(id)

Request Method: GET

Service Interface: /city/country/{id}

Service Entity: Country



/employeetask/{id}

Mapping URL: /employeetask/{id}

Description: EmployeeTaskService

Name: updateEmployeeTaskById(employeetask)

Request Method: PUT

Service Interface: /employeetask/{id}

Service Entity: EmployeeTask



/seatcategory

Mapping URL: /seatcategory

Description: SeatCategoryService

Name: findAllSeatCategory()

Request Method: GET

Service Interface: /seatcategory

Service Entity: SeatCategory



/passenger/{id}

Mapping URL: /passenger/{id}

Description: PassengerService

Name: findPassengerById(id)

Request Method: GET

Service Interface: /passenger/{id}

Service Entity: Passenger



/employee/{id}

Mapping URL: /employee/{id}

Description: EmployeeService

Name: findEmployeeById(id)

Request Method: GET

Service Interface: /employee/{id}

Service Entity: Employee



/passenger/{id}

Mapping URL: /passenger/{id}

Description: PassengerService

Name: updatePassengerById(passenger)

Request Method: PUT

Service Interface: /passenger/{id}

Service Entity: Passenger



/task/{id}

Mapping URL: /task/{id}

Description: TaskService

Name: deleteTaskById(id)

Request Method: DELETE

Service Interface: /task/{id}

Service Entity: Task



/cargo

Mapping URL: /cargo

Description: CargoService

Name: insertCargo(cargo)

Request Method: POST

Service Interface: /cargo

Service Entity: Cargo



/seat/airplane/{id}

Mapping URL: /seat/airplane/{id}

Description: AirplaneService

Name: findAllSeatOfAirplane(id)

Request Method: GET

Service Interface: /seat/airplane/{id}

Service Entity: Airplane



/equipmenttype/{id}

Mapping URL: /equipmenttype/{id}

Description: EquipmentTypeService

Name: findEquipmentTypeById(id)

Request Method: GET

Service Interface: /equipmenttype/{id}

Service Entity: EquipmentType



/country/{id}

Mapping URL: /country/{id}

Description: CountryService

Name: updateCountryById(country)

Request Method: PUT

Service Interface: /country/{id}

Service Entity: Country



/luggage

Mapping URL: /luggage

Description: LuggageService

Name: insertLuggage(luggage)

Request Method: POST

Service Interface: /luggage

Service Entity: Luggage



/country/{id}

Mapping URL: /country/{id}

Description: CountryService

Name: deleteCountryById(id)

Request Method: DELETE

Service Interface: /country/{id}

Service Entity: Country



/flight/{id}

Mapping URL: /flight/{id}

Description: FlightService

Name: updateFlightById(flight)

Request Method: PUT

Service Interface: /flight/{id}

Service Entity: Flight



/flight/arrivalgate/{id}

Mapping URL: /flight/arrivalgate/{id}

Description: GateService

Name: findAllFlightOfArrivalGate(id)

Request Method: GET

Service Interface: /flight/arrivalgate/{id}

Service Entity: Gate



/airplanetype/{id}

Mapping URL: /airplanetype/{id}

Description: AirplaneTypeService

Name: updateAirplaneTypeById(airplanetype)

Request Method: PUT

Service Interface: /airplanetype/{id}

Service Entity: AirplaneType



/luggagetype

Mapping URL: /luggagetype

Description: LuggageTypeService

Name: findAllLuggageType()

Request Method: GET

Service Interface: /luggagetype

Service Entity: LuggageType



/airplaneequipment/equipmenttype/{id}

Mapping URL: /airplaneequipment/equipmenttype/{id}

Description: EquipmentTypeService

Name: findAllAirplaneEquipmentOfEquipmentType(id)

Request Method: GET

Service Interface: /airplaneequipment/equipmenttype/{id}

Service Entity: EquipmentType



/airport

Mapping URL: /airport

Description: AirportService

Name: insertAirport(airport)

Request Method: POST

Service Interface: /airport

Service Entity: Airport



/passengerbooking/flight/{id}

Mapping URL: /passengerbooking/flight/{id}

Description: FlightService

Name: findAllPassengerBookingOfFlight(id)

Request Method: GET

Service Interface: /passengerbooking/flight/{id}

Service Entity: Flight



/luggage/{id}

Mapping URL: /luggage/{id}

Description: LuggageService

Name: deleteLuggageById(id)

Request Method: DELETE

Service Interface: /luggage/{id}

Service Entity: Luggage



/passenger

Mapping URL: /passenger

Description: PassengerService

Name: findAllPassenger()

Request Method: GET

Service Interface: /passenger

Service Entity: Passenger



/customer

Mapping URL: /customer

Description: CustomerService

Name: findAllCustomer()

Request Method: GET

Service Interface: /customer

Service Entity: Customer



/passengerbooking/seat/{id}

Mapping URL: /passengerbooking/seat/{id}

Description: SeatService

Name: findAllPassengerBookingOfSeat(id)

Request Method: GET

Service Interface: /passengerbooking/seat/{id}

Service Entity: Seat



/flightroute

Mapping URL: /flightroute

Description: FlightRouteService

Name: findAllFlightRoute()

Request Method: GET

Service Interface: /flightroute

Service Entity: FlightRoute



/cargocheck/checker/{id}

Mapping URL: /cargocheck/checker/{id}

Description: EmployeeService

Name: findAllCargoCheckOfChecker(id)

Request Method: GET

Service Interface: /cargocheck/checker/{id}

Service Entity: Employee



/luggage/luggagetype/{id}

Mapping URL: /luggage/luggagetype/{id}

Description: LuggageTypeService

Name: findAllLuggageOfLuggageType(id)

Request Method: GET

Service Interface: /luggage/luggagetype/{id}

Service Entity: LuggageType



/luggage

Mapping URL: /luggage

Description: LuggageService

Name: findAllLuggage()

Request Method: GET

Service Interface: /luggage

Service Entity: Luggage



/employee

Mapping URL: /employee

Description: EmployeeService

Name: findAllEmployee()

Request Method: GET

Service Interface: /employee

Service Entity: Employee



/airplaneproducer/{id}

Mapping URL: /airplaneproducer/{id}

Description: AirplaneProducerService

Name: deleteAirplaneProducerById(id)

Request Method: DELETE

Service Interface: /airplaneproducer/{id}

Service Entity: AirplaneProducer



/airline

Mapping URL: /airline

Description: AirlineService

Name: findAllAirline()

Request Method: GET

Service Interface: /airline

Service Entity: Airline



/airport

Mapping URL: /airport

Description: AirportService

Name: findAllAirport()

Request Method: GET

Service Interface: /airport

Service Entity: Airport



/terminal

Mapping URL: /terminal

Description: TerminalService

Name: findAllTerminal()

Request Method: GET

Service Interface: /terminal

Service Entity: Terminal



/flightroute

Mapping URL: /flightroute

Description: FlightRouteService

Name: insertFlightRoute(flightroute)

Request Method: POST

Service Interface: /flightroute

Service Entity: FlightRoute



/passenger

Mapping URL: /passenger

Description: PassengerService

Name: insertPassenger(passenger)

Request Method: POST

Service Interface: /passenger

Service Entity: Passenger



/cargotype/{id}

Mapping URL: /cargotype/{id}

Description: CargoTypeService

Name: findCargoTypeById(id)

Request Method: GET

Service Interface: /cargotype/{id}

Service Entity: CargoType



/airplaneproducer/{id}

Mapping URL: /airplaneproducer/{id}

Description: AirplaneProducerService

Name: findAirplaneProducerById(id)

Request Method: GET

Service Interface: /airplaneproducer/{id}

Service Entity: AirplaneProducer



/cargo

Mapping URL: /cargo

Description: CargoService

Name: findAllCargo()

Request Method: GET

Service Interface: /cargo

Service Entity: Cargo



/seatcategory/{id}

Mapping URL: /seatcategory/{id}

Description: SeatCategoryService

Name: deleteSeatCategoryById(id)

Request Method: DELETE

Service Interface: /seatcategory/{id}

Service Entity: SeatCategory



/country/{id}

Mapping URL: /country/{id}

Description: CountryService

Name: findCountryById(id)

Request Method: GET

Service Interface: /country/{id}

Service Entity: Country



/employeetask

Mapping URL: /employeetask

Description: EmployeeTaskService

Name: insertEmployeeTask(employeetask)

Request Method: POST

Service Interface: /employeetask

Service Entity: EmployeeTask



/gate/{id}

Mapping URL: /gate/{id}

Description: GateService

Name: deleteGateById(id)

Request Method: DELETE

Service Interface: /gate/{id}

Service Entity: Gate



/passenger/{id}

Mapping URL: /passenger/{id}

Description: PassengerService

Name: deletePassengerById(id)

Request Method: DELETE

Service Interface: /passenger/{id}

Service Entity: Passenger



/terminal

Mapping URL: /terminal

Description: TerminalService

Name: insertTerminal(terminal)

Request Method: POST

Service Interface: /terminal

Service Entity: Terminal



/airplanetype/{id}

Mapping URL: /airplanetype/{id}

Description: AirplaneTypeService

Name: deleteAirplaneTypeById(id)

Request Method: DELETE

Service Interface: /airplanetype/{id}

Service Entity: AirplaneType



/luggagecheck/{id}

Mapping URL: /luggagecheck/{id}

Description: LuggageCheckService

Name: findLuggageCheckById(id)

Request Method: GET

Service Interface: /luggagecheck/{id}

Service Entity: LuggageCheck



/passengerbooking/{id}

Mapping URL: /passengerbooking/{id}

Description: PassengerBookingService

Name: updatePassengerBookingById(passengerbooking)

Request Method: PUT

Service Interface: /passengerbooking/{id}

Service Entity: PassengerBooking



/cargocheck

Mapping URL: /cargocheck

Description: CargoCheckService

Name: findAllCargoCheck()

Request Method: GET

Service Interface: /cargocheck

Service Entity: CargoCheck



/cargobooking/customer/{id}

Mapping URL: /cargobooking/customer/{id}

Description: CustomerService

Name: findAllCargoBookingOfCustomer(id)

Request Method: GET

Service Interface: /cargobooking/customer/{id}

Service Entity: Customer



/airplaneequipment/{id}

Mapping URL: /airplaneequipment/{id}

Description: AirplaneEquipmentService

Name: deleteAirplaneEquipmentById(id)

Request Method: DELETE

Service Interface: /airplaneequipment/{id}

Service Entity: AirplaneEquipment



/equipmenttype/{id}

Mapping URL: /equipmenttype/{id}

Description: EquipmentTypeService

Name: deleteEquipmentTypeById(id)

Request Method: DELETE

Service Interface: /equipmenttype/{id}

Service Entity: EquipmentType



/airplanetype

Mapping URL: /airplanetype

Description: AirplaneTypeService

Name: findAllAirplaneType()

Request Method: GET

Service Interface: /airplanetype

Service Entity: AirplaneType



/airplaneequipment/{id}

Mapping URL: /airplaneequipment/{id}

Description: AirplaneEquipmentService

Name: updateAirplaneEquipmentById(airplaneequipment)

Request Method: PUT

Service Interface: /airplaneequipment/{id}

Service Entity: AirplaneEquipment



/seat/{id}

Mapping URL: /seat/{id}

Description: SeatService

Name: updateSeatById(seat)

Request Method: PUT

Service Interface: /seat/{id}

Service Entity: Seat



/luggagetype/{id}

Mapping URL: /luggagetype/{id}

Description: LuggageTypeService

Name: updateLuggageTypeById(luggagetype)

Request Method: PUT

Service Interface: /luggagetype/{id}

Service Entity: LuggageType



/luggage/{id}

Mapping URL: /luggage/{id}

Description: LuggageService

Name: updateLuggageById(luggage)

Request Method: PUT

Service Interface: /luggage/{id}

Service Entity: Luggage



/customer/{id}

Mapping URL: /customer/{id}

Description: CustomerService

Name: deleteCustomerById(id)

Request Method: DELETE

Service Interface: /customer/{id}

Service Entity: Customer



/luggagecheck/checker/{id}

Mapping URL: /luggagecheck/checker/{id}

Description: EmployeeService

Name: findAllLuggageCheckOfChecker(id)

Request Method: GET

Service Interface: /luggagecheck/checker/{id}

Service Entity: Employee



/airplaneequipment

Mapping URL: /airplaneequipment

Description: AirplaneEquipmentService

Name: insertAirplaneEquipment(airplaneequipment)

Request Method: POST

Service Interface: /airplaneequipment

Service Entity: AirplaneEquipment



/luggagetype/{id}

Mapping URL: /luggagetype/{id}

Description: LuggageTypeService

Name: deleteLuggageTypeById(id)

Request Method: DELETE

Service Interface: /luggagetype/{id}

Service Entity: LuggageType



/employeetask/task/{id}

Mapping URL: /employeetask/task/{id}

Description: TaskService

Name: findAllEmployeeTaskOfTask(id)

Request Method: GET

Service Interface: /employeetask/task/{id}

Service Entity: Task



/cargo/{id}

Mapping URL: /cargo/{id}

Description: CargoService

Name: deleteCargoById(id)

Request Method: DELETE

Service Interface: /cargo/{id}

Service Entity: Cargo



/seat/{id}

Mapping URL: /seat/{id}

Description: SeatService

Name: findSeatById(id)

Request Method: GET

Service Interface: /seat/{id}

Service Entity: Seat



/equipmenttype

Mapping URL: /equipmenttype

Description: EquipmentTypeService

Name: findAllEquipmentType()

Request Method: GET

Service Interface: /equipmenttype

Service Entity: EquipmentType



/passengerbooking

Mapping URL: /passengerbooking

Description: PassengerBookingService

Name: findAllPassengerBooking()

Request Method: GET

Service Interface: /passengerbooking

Service Entity: PassengerBooking



/employee/{id}

Mapping URL: /employee/{id}

Description: EmployeeService

Name: deleteEmployeeById(id)

Request Method: DELETE

Service Interface: /employee/{id}

Service Entity: Employee



/employee/{id}

Mapping URL: /employee/{id}

Description: EmployeeService

Name: updateEmployeeById(employee)

Request Method: PUT

Service Interface: /employee/{id}

Service Entity: Employee






AirplaneService - 1.0.0

Microservice: AirplaneService

Build Name: b23

Readme:




PassengerBookingService - 1.0.0

Microservice: PassengerBookingService

Build Name: b23

Readme:




EmployeeService - 1.0.0

Microservice: EmployeeService

Build Name: b23

Readme:




LuggageService - 1.0.0

Microservice: LuggageService

Build Name: b23

Readme:




CountryService - 1.0.0

Microservice: CountryService

Build Name: b23

Readme:




CargoService - 1.0.0

Microservice: CargoService

Build Name: b23

Readme:




AirportService - 1.0.0

Microservice: AirportService

Build Name: b23

Readme:


















Table of content