Overview

Summary

ContactDonateImprint


Appendix E-2: REGULATORY ACTION (UI prompt)


RegulatoryActionRoleModuleTesla

Properties (7)

PropertyTypeEntityReferenceModule
(1) ActionDateDATERegulatoryAction
(2) ActionTypeSTRINGRegulatoryAction
(3) AuthorityNameSTRINGRegulatoryAction
(4) CompanyLONGRegulatoryActionCompanyCompanyModule
(5) CountrySTRINGRegulatoryAction
(6) DescriptionSTRINGRegulatoryAction
(7) PenaltyMillionUsdDOUBLERegulatoryAction


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /regulatoryactioninsertRegulatoryAction(regulatoryaction)RoleModulePOSTRegulatoryAction
(2) /regulatoryaction/{id}findRegulatoryActionById(id)RoleModuleGETRegulatoryAction
(3) /regulatoryaction/{id}deleteRegulatoryActionById(id)RoleModuleDELETERegulatoryAction
(4) /regulatoryaction/company/{id}findAllRegulatoryActionOfCompany(id)RoleModuleGETCompany RegulatoryAction
(5) /regulatoryaction/{id}updateRegulatoryActionById(regulatoryaction)RoleModulePUTRegulatoryAction
(6) /regulatoryactionfindAllRegulatoryAction()RoleModuleGETRegulatoryAction





Example:

final RegulatoryAction regulatoryaction = (RegulatoryAction) invokeModule(ROLE_MODULE + "/regulatoryaction/" + id, RegulatoryAction.class);
if (regulatoryaction != null) {
    final Company company1 = (Company) invokeModule(COMPANY_MODULE + "/company/" + regulatoryaction.getCompany().getId(), Company.class);
    if (company1 != null) {
    }
}
return regulatoryaction;


Overview

Summary

ContactDonateImprint