Overview

Summary

ContactDonateImprint


Appendix E-17: REGULATORY LICENSE (UI prompt)


RegulatoryLicenseRegionModulePayPal

Properties (8)

PropertyTypeEntityReferenceModule
(1) AuthorityNameSTRINGRegulatoryLicense
(2) CountryLONGRegulatoryLicenseCountryCountryModule
(3) ExpiresAtDATERegulatoryLicense
(4) IssuedAtDATERegulatoryLicense
(5) LicenseNumberSTRINGRegulatoryLicense
(6) LicenseTypeSTRINGRegulatoryLicense
(7) RegionLONGRegulatoryLicenseRegionRegionModule
(8) StatusSTRINGRegulatoryLicense


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /regulatorylicenseinsertRegulatoryLicense(regulatorylicense)RegionModulePOSTRegulatoryLicense
(2) /regulatorylicense/{id}deleteRegulatoryLicenseById(id)RegionModuleDELETERegulatoryLicense
(3) /regulatorylicense/region/{id}findAllRegulatoryLicenseOfRegion(id)RegionModuleGETRegion RegulatoryLicense
(4) /regulatorylicensefindAllRegulatoryLicense()RegionModuleGETRegulatoryLicense
(5) /regulatorylicense/country/{id}findAllRegulatoryLicenseOfCountry(id)RegionModuleGETCountry RegulatoryLicense
(6) /regulatorylicense/{id}findRegulatoryLicenseById(id)RegionModuleGETRegulatoryLicense
(7) /regulatorylicense/{id}updateRegulatoryLicenseById(regulatorylicense)RegionModulePUTRegulatoryLicense





Example:

final RegulatoryLicense regulatorylicense = (RegulatoryLicense) invokeModule(REGION_MODULE + "/regulatorylicense/" + id, RegulatoryLicense.class);
if (regulatorylicense != null) {
    final Region region1 = (Region) invokeModule(REGION_MODULE + "/region/" + regulatorylicense.getRegion().getId(), Region.class);
    if (region1 != null) {
    }
    final Country country2 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + regulatorylicense.getCountry().getId(), Country.class);
    if (country2 != null) {
        final Region region3 = (Region) invokeModule(REGION_MODULE + "/region/" + country2.getRegion().getId(), Region.class);
        if (region3 != null) {
        }
    }
}
return regulatorylicense;


Overview

Summary

ContactDonateImprint