Overview

Summary

ContactDonateImprint


Appendix E-10: COUNTRY (UI prompt)


CountryCityModuleTesla

Properties (2)

PropertyTypeEntityReferenceModule
(1) CountryNameSTRINGCountry
(2) IsoCodeSTRINGCountry


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /country/{id}deleteCountryById(id)CityModuleDELETECountry
(2) /countryinsertCountry(country)CityModulePOSTCountry
(3) /country/{id}updateCountryById(country)CityModulePUTCountry
(4) /country/{id}findCountryById(id)CityModuleGETCountry
(5) /countryfindAllCountry()CityModuleGETCountry
(6) /city/country/{id}findAllCityOfCountry(id)CityModuleGETCountry City





Example:

final Country country = (Country) invokeModule(CITY_MODULE + "/country/" + id, Country.class);
if (country != null) {
}
return country;


Overview

Summary

ContactDonateImprint