Overview

Summary

ContactDonateImprint


1. COUNTRY MODULE (UI prompt)



Module Entities (5)

EntityAliasModuleGlobal Schema
(1) CountryCountryCountryModuleZeppelinFlight
(2) CustomerCustomerCustomerModuleZeppelinFlight
(3) LocationLocationLocationModuleZeppelinFlight
(4) MilitaryBranchMilitaryBranchCountryModuleZeppelinFlight
(5) MissionMissionMissionModuleZeppelinFlight

Module Interfaces (11)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /militarybranch/{id}findMilitaryBranchById(id)CountryModuleGETMilitaryBranch
(2) /countryinsertCountry(country)CountryModulePOSTCountry
(3) /militarybranchinsertMilitaryBranch(militarybranch)CountryModulePOSTMilitaryBranch
(4) /militarybranchfindAllMilitaryBranch()CountryModuleGETMilitaryBranch
(5) /countryfindAllCountry()CountryModuleGETCountry
(6) /country/{id}findCountryById(id)CountryModuleGETCountry
(7) /militarybranch/country/{id}findAllMilitaryBranchOfCountry(id)CountryModuleGETCountry MilitaryBranch
(8) /country/{id}updateCountryById(country)CountryModulePUTCountry
(9) /militarybranch/{id}deleteMilitaryBranchById(id)CountryModuleDELETEMilitaryBranch
(10) /militarybranch/{id}updateMilitaryBranchById(militarybranch)CountryModulePUTMilitaryBranch
(11) /country/{id}deleteCountryById(id)CountryModuleDELETECountry






1.1 COUNTRY


CountryCountryModuleZeppelinFlight

Properties (2)

PropertyTypeEntityReferenceModule
(1) IsoCodeSTRINGCountry
(2) NameSTRINGCountry





Example:

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


1.2 MILITARY BRANCH


MilitaryBranchCountryModuleZeppelinFlight

Properties (3)

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





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