Overview

Summary

ContactDonateImprint


Appendix E-28: HIDDEN CAMERA INCIDENT (UI prompt)


HiddenCameraIncidentCompanyModuleAirbnb

Properties (6)

PropertyTypeEntityReferenceModule
(1) DescriptionSTRINGHiddenCameraIncident
(2) InvolvedGuestsINTHiddenCameraIncident
(3) LawEnforcementContactedBOOLHiddenCameraIncident
(4) ListingLONGHiddenCameraIncidentListingListingModule
(5) ReportedAtDATEHiddenCameraIncident
(6) SettlementTypeSTRINGHiddenCameraIncident


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /hiddencameraincident/{id}deleteHiddenCameraIncidentById(id)CompanyModuleDELETEHiddenCameraIncident
(2) /hiddencameraincidentfindAllHiddenCameraIncident()CompanyModuleGETHiddenCameraIncident
(3) /hiddencameraincident/{id}findHiddenCameraIncidentById(id)CompanyModuleGETHiddenCameraIncident
(4) /hiddencameraincidentinsertHiddenCameraIncident(hiddencameraincident)CompanyModulePOSTHiddenCameraIncident
(5) /hiddencameraincident/listing/{id}findAllHiddenCameraIncidentOfListing(id)CompanyModuleGETListing HiddenCameraIncident
(6) /hiddencameraincident/{id}updateHiddenCameraIncidentById(hiddencameraincident)CompanyModulePUTHiddenCameraIncident





Example:

final HiddenCameraIncident hiddencameraincident = (HiddenCameraIncident) invokeModule(COMPANY_MODULE + "/hiddencameraincident/" + id, HiddenCameraIncident.class);
if (hiddencameraincident != null) {
    final Listing listing1 = (Listing) invokeModule(LISTING_MODULE + "/listing/" + hiddencameraincident.getListing().getId(), Listing.class);
    if (listing1 != null) {
        final Country country2 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + listing1.getCountry().getId(), Country.class);
        if (country2 != null) {
        }
        final City city3 = (City) invokeModule(LISTING_MODULE + "/city/" + listing1.getCity().getId(), City.class);
        if (city3 != null) {
            final Country country4 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + city3.getCountry().getId(), Country.class);
            if (country4 != null) {
            }
        }
        final HostProfile hostprofile5 = (HostProfile) invokeModule(HOST_PROFILE_MODULE + "/hostprofile/" + listing1.getHostProfile().getId(), HostProfile.class);
        if (hostprofile5 != null) {
            final PlatformUser platformuser6 = (PlatformUser) invokeModule(PLATFORM_USER_MODULE + "/platformuser/" + hostprofile5.getPlatformUser().getId(), PlatformUser.class);
            if (platformuser6 != null) {
                final City city7 = (City) invokeModule(LISTING_MODULE + "/city/" + platformuser6.getCity().getId(), City.class);
                if (city7 != null) {
                    final Country country8 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + city7.getCountry().getId(), Country.class);
                    if (country8 != null) {
                    }
                }
                final Country country9 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + platformuser6.getCountry().getId(), Country.class);
                if (country9 != null) {
                }
            }
        }
    }
}
return hiddencameraincident;


Overview

Summary

ContactDonateImprint