| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) OrderItem | OrderItem | ProductModule | ZeppelinFlight |
| (2) Product | Product | ProductModule | ZeppelinFlight |
| 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 |
| OrderItem | ProductModule | ZeppelinFlight |
| Property | Type | Entity | Reference | Module |
| (1) Currency | STRING | OrderItem | ||
| (2) CustomerOrder | INT | OrderItem | ||
| (3) Product | INT | OrderItem | Product | ProductModule |
| (4) Quantity | INT | OrderItem | ||
| (5) UnitPrice | STRING | OrderItem |
Example:
final OrderItem orderitem = (OrderItem) invokeModule(PRODUCT_MODULE + "/orderitem/" + id, OrderItem.class);| Product | ProductModule | ZeppelinFlight |
| Property | Type | Entity | Reference | Module |
| (1) Category | STRING | Product | ||
| (2) Currency | STRING | Product | ||
| (3) Description | STRING | Product | ||
| (4) IsPhysical | BOOL | Product | ||
| (5) Name | STRING | Product | ||
| (6) Price | STRING | Product |
Example:
final Product product = (Product) invokeModule(PRODUCT_MODULE + "/product/" + id, Product.class);| Contact | Donate | Imprint |