Overview

Summary

ContactDonateImprint


Appendix E-30: MERCHANT WEBSITE (UI prompt)


MerchantWebsiteMerchantModulePayPal

Properties (4)

PropertyTypeEntityReferenceModule
(1) MerchantLONGMerchantWebsiteMerchantMerchantModule
(2) StatusSTRINGMerchantWebsite
(3) UrlSTRINGMerchantWebsite
(4) VerifiedAtDATEMerchantWebsite


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /merchantwebsitefindAllMerchantWebsite()MerchantModuleGETMerchantWebsite
(2) /merchantwebsite/{id}findMerchantWebsiteById(id)MerchantModuleGETMerchantWebsite
(3) /merchantwebsiteinsertMerchantWebsite(merchantwebsite)MerchantModulePOSTMerchantWebsite
(4) /merchantwebsite/merchant/{id}findAllMerchantWebsiteOfMerchant(id)MerchantModuleGETMerchant MerchantWebsite
(5) /merchantwebsite/{id}updateMerchantWebsiteById(merchantwebsite)MerchantModulePUTMerchantWebsite
(6) /merchantwebsite/{id}deleteMerchantWebsiteById(id)MerchantModuleDELETEMerchantWebsite





Example:

final MerchantWebsite merchantwebsite = (MerchantWebsite) invokeModule(MERCHANT_MODULE + "/merchantwebsite/" + id, MerchantWebsite.class);
if (merchantwebsite != null) {
    final Merchant merchant1 = (Merchant) invokeModule(MERCHANT_MODULE + "/merchant/" + merchantwebsite.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 merchantwebsite;


Overview

Summary

ContactDonateImprint