Overview

Summary

ContactDonateImprint


Appendix E-6: REGULATORY ACTION (UI prompt)


RegulatoryActionLegalCaseModuleEbay

Properties (6)

PropertyTypeEntityReferenceModule
(1) ActionDateDATERegulatoryAction
(2) AgencyNameSTRINGRegulatoryAction
(3) CountrySTRINGRegulatoryAction
(4) DescriptionSTRINGRegulatoryAction
(5) OutcomeSTRINGRegulatoryAction
(6) RelatedLegalCaseLONGRegulatoryActionLegalCaseLegalCaseModule


Module Interfaces (6)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /regulatoryaction/relatedlegalcase/{id}findAllRegulatoryActionOfRelatedLegalCase(id)LegalCaseModuleGETLegalCase RegulatoryAction
(2) /regulatoryaction/{id}findRegulatoryActionById(id)LegalCaseModuleGETRegulatoryAction
(3) /regulatoryaction/{id}updateRegulatoryActionById(regulatoryaction)LegalCaseModulePUTRegulatoryAction
(4) /regulatoryactionfindAllRegulatoryAction()LegalCaseModuleGETRegulatoryAction
(5) /regulatoryaction/{id}deleteRegulatoryActionById(id)LegalCaseModuleDELETERegulatoryAction
(6) /regulatoryactioninsertRegulatoryAction(regulatoryaction)LegalCaseModulePOSTRegulatoryAction





Example:

final RegulatoryAction regulatoryaction = (RegulatoryAction) invokeModule(LEGAL_CASE_MODULE + "/regulatoryaction/" + id, RegulatoryAction.class);
if (regulatoryaction != null) {
    final LegalCase relatedlegalcase1 = (LegalCase) invokeModule(LEGAL_CASE_MODULE + "/legalcase/" + regulatoryaction.getRelatedLegalCase().getId(), LegalCase.class);
    if (relatedlegalcase1 != null) {
    }
}
return regulatoryaction;


Overview

Summary

ContactDonateImprint