Overview

Summary

ContactDonateImprint


Appendix E-23: RESTAURANT CATEGORY LINK (UI prompt)


RestaurantCategoryLinkRestaurantCategoryModuleLieferando

Properties (2)

PropertyTypeEntityReferenceModule
(1) RestaurantLONGRestaurantCategoryLinkRestaurantRestaurantModule
(2) RestaurantCategoryLONGRestaurantCategoryLinkRestaurantCategoryRestaurantCategoryModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /restaurantcategorylink/restaurantcategory/{id}findAllRestaurantCategoryLinkOfRestaurantCategory(id)RestaurantCategoryModuleGETRestaurantCategory RestaurantCategoryLink
(2) /restaurantcategorylink/{id}findRestaurantCategoryLinkById(id)RestaurantCategoryModuleGETRestaurantCategoryLink
(3) /restaurantcategorylink/restaurant/{id}findAllRestaurantCategoryLinkOfRestaurant(id)RestaurantCategoryModuleGETRestaurant RestaurantCategoryLink
(4) /restaurantcategorylinkinsertRestaurantCategoryLink(restaurantcategorylink)RestaurantCategoryModulePOSTRestaurantCategoryLink
(5) /restaurantcategorylinkfindAllRestaurantCategoryLink()RestaurantCategoryModuleGETRestaurantCategoryLink
(6) /restaurantcategorylink/{id}updateRestaurantCategoryLinkById(restaurantcategorylink)RestaurantCategoryModulePUTRestaurantCategoryLink
(7) /restaurantcategorylink/{id}deleteRestaurantCategoryLinkById(id)RestaurantCategoryModuleDELETERestaurantCategoryLink





Example:

final RestaurantCategoryLink restaurantcategorylink = (RestaurantCategoryLink) invokeModule(RESTAURANT_CATEGORY_MODULE + "/restaurantcategorylink/" + id, RestaurantCategoryLink.class);
if (restaurantcategorylink != null) {
    final RestaurantCategory restaurantcategory1 = (RestaurantCategory) invokeModule(RESTAURANT_CATEGORY_MODULE + "/restaurantcategory/" + restaurantcategorylink.getRestaurantCategory().getId(), RestaurantCategory.class);
    if (restaurantcategory1 != null) {
    }
    final Restaurant restaurant2 = (Restaurant) invokeModule(RESTAURANT_MODULE + "/restaurant/" + restaurantcategorylink.getRestaurant().getId(), Restaurant.class);
    if (restaurant2 != null) {
        final City city3 = (City) invokeModule(RESTAURANT_MODULE + "/city/" + restaurant2.getCity().getId(), City.class);
        if (city3 != null) {
        }
    }
}
return restaurantcategorylink;


Overview

Summary

ContactDonateImprint