| Contact | Donate | Imprint |
| UserFavorite | DeviceModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | UserFavorite | ||
| (2) User | LONG | UserFavorite | User | UserModule |
| (3) Video | LONG | UserFavorite | Video | VideoModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /userfavorite/video/{id} | findAllUserFavoriteOfVideo(id) | DeviceModule | GET | Video UserFavorite |
| (2) /userfavorite | findAllUserFavorite() | DeviceModule | GET | UserFavorite |
| (3) /userfavorite/{id} | updateUserFavoriteById(userfavorite) | DeviceModule | PUT | UserFavorite |
| (4) /userfavorite | insertUserFavorite(userfavorite) | DeviceModule | POST | UserFavorite |
| (5) /userfavorite/{id} | deleteUserFavoriteById(id) | DeviceModule | DELETE | UserFavorite |
| (6) /userfavorite/user/{id} | findAllUserFavoriteOfUser(id) | DeviceModule | GET | User UserFavorite |
| (7) /userfavorite/{id} | findUserFavoriteById(id) | DeviceModule | GET | UserFavorite |
Example:
final UserFavorite userfavorite = (UserFavorite) invokeModule(DEVICE_MODULE + "/userfavorite/" + id, UserFavorite.class);| Contact | Donate | Imprint |