Overview

Summary

ContactDonateImprint


Appendix E-4: MERCHANT BUSINESS INFO (UI prompt)


MerchantBusinessInfoMerchantModulePayPal

Properties (5)

PropertyTypeEntityReferenceModule
(1) EstablishedAtDATEMerchantBusinessInfo
(2) IndustryCodeSTRINGMerchantBusinessInfo
(3) MerchantLONGMerchantBusinessInfoMerchantMerchantModule
(4) RegistrationNumberSTRINGMerchantBusinessInfo
(5) TaxNumberSTRINGMerchantBusinessInfo


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /merchantbusinessinfofindAllMerchantBusinessInfo()MerchantModuleGETMerchantBusinessInfo
(2) /merchantbusinessinfo/{id}updateMerchantBusinessInfoById(merchantbusinessinfo)MerchantModulePUTMerchantBusinessInfo
(3) /merchantbusinessinfo/merchant/{id}findAllMerchantBusinessInfoOfMerchant(id)MerchantModuleGETMerchant MerchantBusinessInfo
(4) /merchantbusinessinfoinsertMerchantBusinessInfo(merchantbusinessinfo)MerchantModulePOSTMerchantBusinessInfo
(5) /merchantbusinessinfo/{id}deleteMerchantBusinessInfoById(id)MerchantModuleDELETEMerchantBusinessInfo
(6) /merchantbusinessinfo/{id}findMerchantBusinessInfoById(id)MerchantModuleGETMerchantBusinessInfo





Example:

final MerchantBusinessInfo merchantbusinessinfo = (MerchantBusinessInfo) invokeModule(MERCHANT_MODULE + "/merchantbusinessinfo/" + id, MerchantBusinessInfo.class);
if (merchantbusinessinfo != null) {
    final Merchant merchant1 = (Merchant) invokeModule(MERCHANT_MODULE + "/merchant/" + merchantbusinessinfo.getMerchant().getId(), Merchant.class);
    if (merchant1 != null) {
        final UserAccount useraccount2 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + merchant1.getUserAccount().getId(), UserAccount.class);
        if (useraccount2 != null) {
        }
    }
}
return merchantbusinessinfo;


Overview

Summary

ContactDonateImprint