| Contact | Donate | Imprint |
| ProductReview | ProductModule |
| Property | Type | Entity | Reference | Module |
| (1) Body | STRING | ProductReview | ||
| (2) CreatedAt | DATE | ProductReview | ||
| (3) IsVerifiedBuyer | BOOL | ProductReview | ||
| (4) Product | LONG | ProductReview | Product | ProductModule |
| (5) Rating | INT | ProductReview | ||
| (6) ReviewerUser | LONG | ProductReview | UserAccount | UserAccountModule |
| (7) Title | STRING | ProductReview |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /productreview/{id} | findProductReviewById(id) | ProductModule | GET | ProductReview |
| (2) /productreview/revieweruser/{id} | findAllProductReviewOfReviewerUser(id) | ProductModule | GET | UserAccount ProductReview |
| (3) /productreview/{id} | updateProductReviewById(productreview) | ProductModule | PUT | ProductReview |
| (4) /productreview/{id} | deleteProductReviewById(id) | ProductModule | DELETE | ProductReview |
| (5) /productreview | insertProductReview(productreview) | ProductModule | POST | ProductReview |
| (6) /productreview/product/{id} | findAllProductReviewOfProduct(id) | ProductModule | GET | Product ProductReview |
| (7) /productreview | findAllProductReview() | ProductModule | GET | ProductReview |
Example:
final ProductReview productreview = (ProductReview) invokeModule(PRODUCT_MODULE + "/productreview/" + id, ProductReview.class);| Contact | Donate | Imprint |