Overview

Summary

ContactDonateImprint


Appendix E-25: CITY (UI prompt)


CityRestaurantModuleLieferando

Properties (4)

PropertyTypeEntityReferenceModule
(1) CountrySTRINGCity
(2) NameSTRINGCity
(3) PostalCodeSTRINGCity
(4) RegionSTRINGCity


Module Interfaces (8)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /customeraddress/city/{id}findAllCustomerAddressOfCity(id)CustomerModuleGETCity CustomerAddress
(2) /deliveryarea/city/{id}findAllDeliveryAreaOfCity(id)MenuItemTagModuleGETCity DeliveryArea
(3) /restaurant/city/{id}findAllRestaurantOfCity(id)RestaurantModuleGETCity Restaurant
(4) /cityfindAllCity()RestaurantModuleGETCity
(5) /city/{id}updateCityById(city)RestaurantModulePUTCity
(6) /city/{id}findCityById(id)RestaurantModuleGETCity
(7) /city/{id}deleteCityById(id)RestaurantModuleDELETECity
(8) /cityinsertCity(city)RestaurantModulePOSTCity





Example:

final City city = (City) invokeModule(RESTAURANT_MODULE + "/city/" + id, City.class);
if (city != null) {
}
return city;


Overview

Summary

ContactDonateImprint