| Contact | Donate | Imprint |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /militarybranch/{id} | findMilitaryBranchById(id) | CountryModule | GET | MilitaryBranch |
| (2) /country | insertCountry(country) | CountryModule | POST | Country |
| (3) /militarybranch | insertMilitaryBranch(militarybranch) | CountryModule | POST | MilitaryBranch |
| (4) /militarybranch | findAllMilitaryBranch() | CountryModule | GET | MilitaryBranch |
| (5) /country | findAllCountry() | CountryModule | GET | Country |
| (6) /country/{id} | findCountryById(id) | CountryModule | GET | Country |
| (7) /militarybranch/country/{id} | findAllMilitaryBranchOfCountry(id) | CountryModule | GET | Country MilitaryBranch |
| (8) /country/{id} | updateCountryById(country) | CountryModule | PUT | Country |
| (9) /militarybranch/{id} | deleteMilitaryBranchById(id) | CountryModule | DELETE | MilitaryBranch |
| (10) /militarybranch/{id} | updateMilitaryBranchById(militarybranch) | CountryModule | PUT | MilitaryBranch |
| (11) /country/{id} | deleteCountryById(id) | CountryModule | DELETE | Country |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /product/{id} | updateProductById(product) | ProductModule | PUT | Product |
| (2) /product | insertProduct(product) | ProductModule | POST | Product |
| (3) /orderitem | findAllOrderItem() | ProductModule | GET | OrderItem |
| (4) /orderitem/{id} | updateOrderItemById(orderitem) | ProductModule | PUT | OrderItem |
| (5) /orderitem/{id} | findOrderItemById(id) | ProductModule | GET | OrderItem |
| (6) /orderitem | insertOrderItem(orderitem) | ProductModule | POST | OrderItem |
| (7) /product/{id} | deleteProductById(id) | ProductModule | DELETE | Product |
| (8) /product/{id} | findProductById(id) | ProductModule | GET | Product |
| (9) /product | findAllProduct() | ProductModule | GET | Product |
| (10) /orderitem/product/{id} | findAllOrderItemOfProduct(id) | ProductModule | GET | Product OrderItem |
| (11) /orderitem/{id} | deleteOrderItemById(id) | ProductModule | DELETE | OrderItem |
| Contact | Donate | Imprint |