Overview

Summary

ServicesContactDonateAboutImprint


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) /jurisdictionfindAllJurisdiction()JurisdictionModuleGETJurisdiction
(2) /taxcase/jurisdiction/{id}findAllTaxCaseOfJurisdiction(id)JurisdictionModuleGETJurisdiction TaxCase
(3) /jurisdiction/country/{id}findAllJurisdictionOfCountry(id)JurisdictionModuleGETCountry Jurisdiction
(4) /regulation/jurisdiction/{id}findAllRegulationOfJurisdiction(id)JurisdictionModuleGETJurisdiction Regulation
(5) /jurisdiction/{id}findJurisdictionById(id)JurisdictionModuleGETJurisdiction
(6) /jurisdictioninsertJurisdiction(jurisdiction)JurisdictionModulePOSTJurisdiction
(7) /jurisdiction/{id}updateJurisdictionById(jurisdiction)JurisdictionModulePUTJurisdiction
(8) /jurisdiction/{id}deleteJurisdictionById(id)JurisdictionModuleDELETEJurisdiction
(9) /fine/jurisdiction/{id}findAllFineOfJurisdiction(id)JurisdictionModuleGETJurisdiction Fine





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

ServicesContactDonateAboutImprint