| Contact | Donate | Imprint |
| ShoppingCart | OfferModule | AmazonCom |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | ShoppingCart | ||
| (2) Customer | LONG | ShoppingCart | Customer | CustomerModule |
| (3) UpdatedAt | DATE | ShoppingCart |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /shoppingcart/{id} | deleteShoppingCartById(id) | OfferModule | DELETE | ShoppingCart |
| (2) /shoppingcartitem/shoppingcart/{id} | findAllShoppingCartItemOfShoppingCart(id) | OfferModule | GET | ShoppingCart ShoppingCartItem |
| (3) /shoppingcart/customer/{id} | findAllShoppingCartOfCustomer(id) | OfferModule | GET | Customer ShoppingCart |
| (4) /shoppingcart | findAllShoppingCart() | OfferModule | GET | ShoppingCart |
| (5) /shoppingcart/{id} | findShoppingCartById(id) | OfferModule | GET | ShoppingCart |
| (6) /shoppingcart | insertShoppingCart(shoppingcart) | OfferModule | POST | ShoppingCart |
| (7) /shoppingcart/{id} | updateShoppingCartById(shoppingcart) | OfferModule | PUT | ShoppingCart |
Example:
final ShoppingCart shoppingcart = (ShoppingCart) invokeModule(OFFER_MODULE + "/shoppingcart/" + id, ShoppingCart.class);| Contact | Donate | Imprint |