Overview

Summary

ContactDonateImprint


Appendix E-16: FIXED PRICE OFFER (UI prompt)


FixedPriceOfferListingModuleEbay

Properties (6)

PropertyTypeEntityReferenceModule
(1) BuyerUserAccountLONGFixedPriceOfferUserAccountUserAccountModule
(2) CurrencySTRINGFixedPriceOffer
(3) ListingLONGFixedPriceOfferListingListingModule
(4) OfferDateDATEFixedPriceOffer
(5) OfferedPriceSTRINGFixedPriceOffer
(6) StatusSTRINGFixedPriceOffer


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /fixedpriceoffer/{id}findFixedPriceOfferById(id)ListingModuleGETFixedPriceOffer
(2) /fixedpriceofferinsertFixedPriceOffer(fixedpriceoffer)ListingModulePOSTFixedPriceOffer
(3) /fixedpriceofferfindAllFixedPriceOffer()ListingModuleGETFixedPriceOffer
(4) /fixedpriceoffer/{id}updateFixedPriceOfferById(fixedpriceoffer)ListingModulePUTFixedPriceOffer
(5) /fixedpriceoffer/{id}deleteFixedPriceOfferById(id)ListingModuleDELETEFixedPriceOffer
(6) /fixedpriceoffer/listing/{id}findAllFixedPriceOfferOfListing(id)ListingModuleGETListing FixedPriceOffer
(7) /fixedpriceoffer/buyeruseraccount/{id}findAllFixedPriceOfferOfBuyerUserAccount(id)ListingModuleGETUserAccount FixedPriceOffer





Example:

final FixedPriceOffer fixedpriceoffer = (FixedPriceOffer) invokeModule(LISTING_MODULE + "/fixedpriceoffer/" + id, FixedPriceOffer.class);
if (fixedpriceoffer != null) {
    final UserAccount buyeruseraccount1 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + fixedpriceoffer.getBuyerUserAccount().getId(), UserAccount.class);
    if (buyeruseraccount1 != null) {
    }
    final Listing listing2 = (Listing) invokeModule(LISTING_MODULE + "/listing/" + fixedpriceoffer.getListing().getId(), Listing.class);
    if (listing2 != null) {
        final UserAccount selleruseraccount3 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + listing2.getSellerUserAccount().getId(), UserAccount.class);
        if (selleruseraccount3 != null) {
        }
        final Category category4 = (Category) invokeModule(LISTING_MODULE + "/category/" + listing2.getCategory().getId(), Category.class);
        if (category4 != null) {
        }
    }
}
return fixedpriceoffer;


Overview

Summary

ContactDonateImprint