Overview

Summary

ContactDonateImprint


Appendix E-44: BRAND (UI prompt)


BrandModuleAmazonPrimeVideo

Properties (5)

PropertyTypeEntityReferenceModule
(1) EndDateDATEBrand
(2) LogoUrlSTRINGBrand
(3) NameSTRINGBrand
(4) ServiceLONGBrandServiceModule
(5) StartDateDATEBrand


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /brand/service/{id}findAllBrandOfService(id)ModuleGETService Brand
(2) /brand/{id}deleteBrandById(id)ModuleDELETEBrand
(3) /brand/{id}updateBrandById(brand)ModulePUTBrand
(4) /brand/{id}findBrandById(id)ModuleGETBrand
(5) /brandfindAllBrand()ModuleGETBrand
(6) /brandinsertBrand(brand)ModulePOSTBrand





Example:

final Brand brand = (Brand) invokeModule(MODULE + "/brand/" + id, Brand.class);
if (brand != null) {
    final Service service1 = (Service) invokeModule(MODULE + "/service/" + brand.getService().getId(), Service.class);
    if (service1 != null) {
        final Company ownercompany2 = (Company) invokeModule(COMPANY_MODULE + "/company/" + service1.getOwnerCompany().getId(), Company.class);
        if (ownercompany2 != null) {
        }
    }
}
return brand;


Overview

Summary

ContactDonateImprint