Overview

Summary

ContactDonateImprint


Appendix E-7: MILITARY BRANCH (UI prompt)


MilitaryBranchCountryModuleZeppelinFlight

Properties (3)

PropertyTypeEntityReferenceModule
(1) BranchTypeSTRINGMilitaryBranch
(2) CountryINTMilitaryBranchCountryCountryModule
(3) NameSTRINGMilitaryBranch


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /militarybranch/country/{id}findAllMilitaryBranchOfCountry(id)CountryModuleGETCountry MilitaryBranch
(2) /militarybranch/{id}updateMilitaryBranchById(militarybranch)CountryModulePUTMilitaryBranch
(3) /militarybranch/{id}findMilitaryBranchById(id)CountryModuleGETMilitaryBranch
(4) /militarybranchinsertMilitaryBranch(militarybranch)CountryModulePOSTMilitaryBranch
(5) /militarybranchfindAllMilitaryBranch()CountryModuleGETMilitaryBranch
(6) /militarybranch/{id}deleteMilitaryBranchById(id)CountryModuleDELETEMilitaryBranch
(7) /mission/militarybranch/{id}findAllMissionOfMilitaryBranch(id)MissionModuleGETMilitaryBranch Mission





Example:

final MilitaryBranch militarybranch = (MilitaryBranch) invokeModule(COUNTRY_MODULE + "/militarybranch/" + id, MilitaryBranch.class);
if (militarybranch != null) {
    final Country country1 = (Country) invokeModule(COUNTRY_MODULE + "/country/" + militarybranch.getCountry().getId(), Country.class);
    if (country1 != null) {
    }
}
return militarybranch;


Overview

Summary

ContactDonateImprint