Overview

Summary

ContactDonateImprint


Appendix E-19: INVESTIGATION (UI prompt)


InvestigationCompanyModuleWaymo

Properties (7)

PropertyTypeEntityReferenceModule
(1) AgencyNameSTRINGInvestigation
(2) CompanyINTInvestigationCompanyCompanyModule
(3) EndDateDATEInvestigation
(4) NotesSTRINGInvestigation
(5) OutcomeSTRINGInvestigation
(6) StartDateDATEInvestigation
(7) TopicSTRINGInvestigation


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /accidentinvestigation/investigation/{id}findAllAccidentInvestigationOfInvestigation(id)AccidentModuleGETInvestigation AccidentInvestigation
(2) /investigation/{id}deleteInvestigationById(id)CompanyModuleDELETEInvestigation
(3) /investigationfindAllInvestigation()CompanyModuleGETInvestigation
(4) /investigation/{id}findInvestigationById(id)CompanyModuleGETInvestigation
(5) /investigationinsertInvestigation(investigation)CompanyModulePOSTInvestigation
(6) /investigation/company/{id}findAllInvestigationOfCompany(id)CompanyModuleGETCompany Investigation
(7) /investigation/{id}updateInvestigationById(investigation)CompanyModulePUTInvestigation





Example:

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


Overview

Summary

ContactDonateImprint