Overview

Summary

ContactDonateImprint


Appendix E-45: REVIEW SCORE (UI prompt)


ReviewScoreLanguageModuleBookingCom

Properties (3)

PropertyTypeEntityReferenceModule
(1) ReviewINTReviewScoreReviewLanguageModule
(2) ReviewAspectINTReviewScoreReviewAspectLanguageModule
(3) ScoreSTRINGReviewScore


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /reviewscore/reviewaspect/{id}findAllReviewScoreOfReviewAspect(id)LanguageModuleGETReviewAspect ReviewScore
(2) /reviewscorefindAllReviewScore()LanguageModuleGETReviewScore
(3) /reviewscore/{id}updateReviewScoreById(reviewscore)LanguageModulePUTReviewScore
(4) /reviewscore/{id}findReviewScoreById(id)LanguageModuleGETReviewScore
(5) /reviewscore/{id}deleteReviewScoreById(id)LanguageModuleDELETEReviewScore
(6) /reviewscoreinsertReviewScore(reviewscore)LanguageModulePOSTReviewScore
(7) /reviewscore/review/{id}findAllReviewScoreOfReview(id)LanguageModuleGETReview ReviewScore





Example:

final ReviewScore reviewscore = (ReviewScore) invokeModule(LANGUAGE_MODULE + "/reviewscore/" + id, ReviewScore.class);
if (reviewscore != null) {
    final ReviewAspect reviewaspect1 = (ReviewAspect) invokeModule(LANGUAGE_MODULE + "/reviewaspect/" + reviewscore.getReviewAspect().getId(), ReviewAspect.class);
    if (reviewaspect1 != null) {
    }
    final Review review2 = (Review) invokeModule(LANGUAGE_MODULE + "/review/" + reviewscore.getReview().getId(), Review.class);
    if (review2 != null) {
        final UserAccount useraccount3 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + review2.getUserAccount().getId(), UserAccount.class);
        if (useraccount3 != null) {
            final Currency defaultcurrency4 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + useraccount3.getDefaultCurrency().getId(), Currency.class);
            if (defaultcurrency4 != null) {
            }
            final Language defaultlanguage5 = (Language) invokeModule(LANGUAGE_MODULE + "/language/" + useraccount3.getDefaultLanguage().getId(), Language.class);
            if (defaultlanguage5 != null) {
            }
        }
        final Property property6 = (Property) invokeModule(PROPERTY_MODULE + "/property/" + review2.getProperty().getId(), Property.class);
        if (property6 != null) {
            final LocationCity locationcity7 = (LocationCity) invokeModule(LOCATION_CITY_MODULE + "/locationcity/" + property6.getLocationCity().getId(), LocationCity.class);
            if (locationcity7 != null) {
                final LocationRegion locationregion8 = (LocationRegion) invokeModule(LOCATION_CITY_MODULE + "/locationregion/" + locationcity7.getLocationRegion().getId(), LocationRegion.class);
                if (locationregion8 != null) {
                    final LocationCountry locationcountry9 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationregion8.getLocationCountry().getId(), LocationCountry.class);
                    if (locationcountry9 != null) {
                    }
                }
                final LocationCountry locationcountry10 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationcity7.getLocationCountry().getId(), LocationCountry.class);
                if (locationcountry10 != null) {
                }
            }
            final PropertyType propertytype11 = (PropertyType) invokeModule(PROPERTY_MODULE + "/propertytype/" + property6.getPropertyType().getId(), PropertyType.class);
            if (propertytype11 != null) {
            }
            final LocationDistrict locationdistrict12 = (LocationDistrict) invokeModule(PROPERTY_MODULE + "/locationdistrict/" + property6.getLocationDistrict().getId(), LocationDistrict.class);
            if (locationdistrict12 != null) {
                final LocationCity locationcity13 = (LocationCity) invokeModule(LOCATION_CITY_MODULE + "/locationcity/" + locationdistrict12.getLocationCity().getId(), LocationCity.class);
                if (locationcity13 != null) {
                    final LocationRegion locationregion14 = (LocationRegion) invokeModule(LOCATION_CITY_MODULE + "/locationregion/" + locationcity13.getLocationRegion().getId(), LocationRegion.class);
                    if (locationregion14 != null) {
                        final LocationCountry locationcountry15 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationregion14.getLocationCountry().getId(), LocationCountry.class);
                        if (locationcountry15 != null) {
                        }
                    }
                    final LocationCountry locationcountry16 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + locationcity13.getLocationCountry().getId(), LocationCountry.class);
                    if (locationcountry16 != null) {
                    }
                }
            }
            final LocationCountry locationcountry17 = (LocationCountry) invokeModule(LOCATION_CITY_MODULE + "/locationcountry/" + property6.getLocationCountry().getId(), LocationCountry.class);
            if (locationcountry17 != null) {
            }
            final PartnerAccount partneraccount18 = (PartnerAccount) invokeModule(PARTNER_ACCOUNT_MODULE + "/partneraccount/" + property6.getPartnerAccount().getId(), PartnerAccount.class);
            if (partneraccount18 != null) {
            }
        }
        final Booking booking19 = (Booking) invokeModule(BOOKING_MODULE + "/booking/" + review2.getBooking().getId(), Booking.class);
        if (booking19 != null) {
            final UserAccount useraccount20 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + booking19.getUserAccount().getId(), UserAccount.class);
            if (useraccount20 != null) {
                final Currency defaultcurrency21 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + useraccount20.getDefaultCurrency().getId(), Currency.class);
                if (defaultcurrency21 != null) {
                }
                final Language defaultlanguage22 = (Language) invokeModule(LANGUAGE_MODULE + "/language/" + useraccount20.getDefaultLanguage().getId(), Language.class);
                if (defaultlanguage22 != null) {
                }
            }
            final Currency currency23 = (Currency) invokeModule(CURRENCY_MODULE + "/currency/" + booking19.getCurrency().getId(), Currency.class);
            if (currency23 != null) {
            }
        }
        final Language language24 = (Language) invokeModule(LANGUAGE_MODULE + "/language/" + review2.getLanguage().getId(), Language.class);
        if (language24 != null) {
        }
    }
}
return reviewscore;


Overview

Summary

ContactDonateImprint