Overview

Summary

ContactDonateImprint


Appendix E-33: REGULATORY EVENT (UI prompt)


RegulatoryEventCompanyModuleNetflix

Properties (5)

PropertyTypeEntityReferenceModule
(1) CompanyLONGRegulatoryEventCompanyCompanyModule
(2) CountryLONGRegulatoryEventCountryCountryModule
(3) DescriptionSTRINGRegulatoryEvent
(4) EventDateDATERegulatoryEvent
(5) NameSTRINGRegulatoryEvent


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /regulatoryevent/country/{id}findAllRegulatoryEventOfCountry(id)CompanyModuleGETCountry RegulatoryEvent
(2) /regulatoryevent/{id}deleteRegulatoryEventById(id)CompanyModuleDELETERegulatoryEvent
(3) /regulatoryevent/{id}updateRegulatoryEventById(regulatoryevent)CompanyModulePUTRegulatoryEvent
(4) /regulatoryeventinsertRegulatoryEvent(regulatoryevent)CompanyModulePOSTRegulatoryEvent
(5) /regulatoryevent/{id}findRegulatoryEventById(id)CompanyModuleGETRegulatoryEvent
(6) /regulatoryeventfindAllRegulatoryEvent()CompanyModuleGETRegulatoryEvent
(7) /regulatoryevent/company/{id}findAllRegulatoryEventOfCompany(id)CompanyModuleGETCompany RegulatoryEvent





Example:

final RegulatoryEvent regulatoryevent = (RegulatoryEvent) invokeModule(COMPANY_MODULE + "/regulatoryevent/" + id, RegulatoryEvent.class);
if (regulatoryevent != null) {
    final Company company1 = (Company) invokeModule(COMPANY_MODULE + "/company/" + regulatoryevent.getCompany().getId(), Company.class);
    if (company1 != null) {
    }
    final Country country2 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + regulatoryevent.getCountry().getId(), Country.class);
    if (country2 != null) {
    }
}
return regulatoryevent;


Overview

Summary

ContactDonateImprint