Overview

Summary

ContactDonateImprint


Appendix E-37: JURISDICTION (UI prompt)


JurisdictionJurisdictionModuleAirbnb

Properties (4)

PropertyTypeEntityReferenceModule
(1) CountryLONGJurisdictionCountryCountryModule
(2) LevelSTRINGJurisdiction
(3) NameSTRINGJurisdiction
(4) NotesSTRINGJurisdiction


Module Interfaces (9)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /taxcase/jurisdiction/{id}findAllTaxCaseOfJurisdiction(id)BookingModuleGETJurisdiction TaxCase
(2) /regulation/jurisdiction/{id}findAllRegulationOfJurisdiction(id)JurisdictionModuleGETJurisdiction Regulation
(3) /fine/jurisdiction/{id}findAllFineOfJurisdiction(id)JurisdictionModuleGETJurisdiction Fine
(4) /jurisdictioninsertJurisdiction(jurisdiction)JurisdictionModulePOSTJurisdiction
(5) /jurisdiction/{id}updateJurisdictionById(jurisdiction)JurisdictionModulePUTJurisdiction
(6) /jurisdiction/{id}deleteJurisdictionById(id)JurisdictionModuleDELETEJurisdiction
(7) /jurisdictionfindAllJurisdiction()JurisdictionModuleGETJurisdiction
(8) /jurisdiction/country/{id}findAllJurisdictionOfCountry(id)JurisdictionModuleGETCountry Jurisdiction
(9) /jurisdiction/{id}findJurisdictionById(id)JurisdictionModuleGETJurisdiction





Example:

final Jurisdiction jurisdiction = (Jurisdiction) invokeModule(JURISDICTION_MODULE + "/jurisdiction/" + id, Jurisdiction.class);
if (jurisdiction != null) {
    final Country country1 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + jurisdiction.getCountry().getId(), Country.class);
    if (country1 != null) {
    }
}
return jurisdiction;


Overview

Summary

ContactDonateImprint