| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Bundle | Bundle | BundleModule | AmazonPrimeVideo |
| (2) BundleService | BundleService | BundleModule | AmazonPrimeVideo |
| (3) Service | Service | Module | AmazonPrimeVideo |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /bundleservice/{id} | deleteBundleServiceById(id) | BundleModule | DELETE | BundleService |
| (2) /bundle | insertBundle(bundle) | BundleModule | POST | Bundle |
| (3) /bundleservice/bundle/{id} | findAllBundleServiceOfBundle(id) | BundleModule | GET | Bundle BundleService |
| (4) /bundleservice | findAllBundleService() | BundleModule | GET | BundleService |
| (5) /bundleservice/service/{id} | findAllBundleServiceOfService(id) | BundleModule | GET | Service BundleService |
| (6) /bundle/{id} | deleteBundleById(id) | BundleModule | DELETE | Bundle |
| (7) /bundle/{id} | findBundleById(id) | BundleModule | GET | Bundle |
| (8) /bundleservice/{id} | updateBundleServiceById(bundleservice) | BundleModule | PUT | BundleService |
| (9) /bundle/{id} | updateBundleById(bundle) | BundleModule | PUT | Bundle |
| (10) /bundleservice/{id} | findBundleServiceById(id) | BundleModule | GET | BundleService |
| (11) /bundle | findAllBundle() | BundleModule | GET | Bundle |
| (12) /bundleservice | insertBundleService(bundleservice) | BundleModule | POST | BundleService |
| Bundle | BundleModule | AmazonPrimeVideo |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | Bundle | ||
| (2) Name | STRING | Bundle |
Example:
final Bundle bundle = (Bundle) invokeModule(BUNDLE_MODULE + "/bundle/" + id, Bundle.class);| BundleService | BundleModule | AmazonPrimeVideo |
| Property | Type | Entity | Reference | Module |
| (1) Bundle | LONG | BundleService | Bundle | BundleModule |
| (2) Service | LONG | BundleService | Service | Module |
Example:
final BundleService bundleservice = (BundleService) invokeModule(BUNDLE_MODULE + "/bundleservice/" + id, BundleService.class);| Contact | Donate | Imprint |