Overview

Summary

ContactDonateImprint


6. RESTAURANT CATEGORY MODULE (UI prompt)



Module Entities (3)

EntityAliasModuleGlobal Schema
(1) RestaurantRestaurantRestaurantModuleLieferando
(2) RestaurantCategoryRestaurantCategoryRestaurantCategoryModuleLieferando
(3) RestaurantCategoryLinkRestaurantCategoryLinkRestaurantCategoryModuleLieferando

Module Interfaces (12)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /restaurantcategorylinkinsertRestaurantCategoryLink(restaurantcategorylink)RestaurantCategoryModulePOSTRestaurantCategoryLink
(2) /restaurantcategorylink/{id}updateRestaurantCategoryLinkById(restaurantcategorylink)RestaurantCategoryModulePUTRestaurantCategoryLink
(3) /restaurantcategoryinsertRestaurantCategory(restaurantcategory)RestaurantCategoryModulePOSTRestaurantCategory
(4) /restaurantcategory/{id}updateRestaurantCategoryById(restaurantcategory)RestaurantCategoryModulePUTRestaurantCategory
(5) /restaurantcategorylink/{id}findRestaurantCategoryLinkById(id)RestaurantCategoryModuleGETRestaurantCategoryLink
(6) /restaurantcategorylinkfindAllRestaurantCategoryLink()RestaurantCategoryModuleGETRestaurantCategoryLink
(7) /restaurantcategorylink/restaurantcategory/{id}findAllRestaurantCategoryLinkOfRestaurantCategory(id)RestaurantCategoryModuleGETRestaurantCategory RestaurantCategoryLink
(8) /restaurantcategorylink/{id}deleteRestaurantCategoryLinkById(id)RestaurantCategoryModuleDELETERestaurantCategoryLink
(9) /restaurantcategory/{id}deleteRestaurantCategoryById(id)RestaurantCategoryModuleDELETERestaurantCategory
(10) /restaurantcategory/{id}findRestaurantCategoryById(id)RestaurantCategoryModuleGETRestaurantCategory
(11) /restaurantcategoryfindAllRestaurantCategory()RestaurantCategoryModuleGETRestaurantCategory
(12) /restaurantcategorylink/restaurant/{id}findAllRestaurantCategoryLinkOfRestaurant(id)RestaurantCategoryModuleGETRestaurant RestaurantCategoryLink






6.1 RESTAURANT CATEGORY


RestaurantCategoryRestaurantCategoryModuleLieferando

Properties (2)

PropertyTypeEntityReferenceModule
(1) DescriptionSTRINGRestaurantCategory
(2) NameSTRINGRestaurantCategory





Example:

final RestaurantCategory restaurantcategory = (RestaurantCategory) invokeModule(RESTAURANT_CATEGORY_MODULE + "/restaurantcategory/" + id, RestaurantCategory.class);
if (restaurantcategory != null) {
}
return restaurantcategory;



RestaurantCategoryLinkRestaurantCategoryModuleLieferando

Properties (2)

PropertyTypeEntityReferenceModule
(1) RestaurantLONGRestaurantCategoryLinkRestaurantRestaurantModule
(2) RestaurantCategoryLONGRestaurantCategoryLinkRestaurantCategoryRestaurantCategoryModule





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