| Contact | Donate | Imprint |
| CommentLike | CommentModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) Comment | LONG | CommentLike | Comment | CommentModule |
| (2) CreatedAt | DATE | CommentLike | ||
| (3) Type | STRING | CommentLike | ||
| (4) User | LONG | CommentLike | User | UserModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /commentlike/comment/{id} | findAllCommentLikeOfComment(id) | CommentModule | GET | Comment CommentLike |
| (2) /commentlike/{id} | deleteCommentLikeById(id) | CommentModule | DELETE | CommentLike |
| (3) /commentlike | insertCommentLike(commentlike) | CommentModule | POST | CommentLike |
| (4) /commentlike/user/{id} | findAllCommentLikeOfUser(id) | CommentModule | GET | User CommentLike |
| (5) /commentlike | findAllCommentLike() | CommentModule | GET | CommentLike |
| (6) /commentlike/{id} | findCommentLikeById(id) | CommentModule | GET | CommentLike |
| (7) /commentlike/{id} | updateCommentLikeById(commentlike) | CommentModule | PUT | CommentLike |
Example:
final CommentLike commentlike = (CommentLike) invokeModule(COMMENT_MODULE + "/commentlike/" + id, CommentLike.class);| Contact | Donate | Imprint |