Overview

Summary

ContactDonateImprint


Appendix E-18: REGULATORY AUTHORITY (UI prompt)


RegulatoryAuthorityCountryModuleLoons

Properties (3)

PropertyTypeEntityReferenceModule
(1) CountryINTRegulatoryAuthorityCountryCountryModule
(2) NameSTRINGRegulatoryAuthority
(3) WebsiteSTRINGRegulatoryAuthority


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /regulatoryauthority/{id}findRegulatoryAuthorityById(id)CountryModuleGETRegulatoryAuthority
(2) /regulatoryauthorityinsertRegulatoryAuthority(regulatoryauthority)CountryModulePOSTRegulatoryAuthority
(3) /regulatoryapproval/regulatoryauthority/{id}findAllRegulatoryApprovalOfRegulatoryAuthority(id)CountryModuleGETRegulatoryAuthority RegulatoryApproval
(4) /regulatoryauthority/{id}updateRegulatoryAuthorityById(regulatoryauthority)CountryModulePUTRegulatoryAuthority
(5) /regulatoryauthority/country/{id}findAllRegulatoryAuthorityOfCountry(id)CountryModuleGETCountry RegulatoryAuthority
(6) /regulatoryauthorityfindAllRegulatoryAuthority()CountryModuleGETRegulatoryAuthority
(7) /regulatoryauthority/{id}deleteRegulatoryAuthorityById(id)CountryModuleDELETERegulatoryAuthority





Example:

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


Overview

Summary

ContactDonateImprint