| Contact | Donate | Imprint |
| CourseTopic | LearningTopicModule |
| Property | Type | Entity | Reference | Module |
| (1) Course | LONG | CourseTopic | Course | CompanyModule |
| (2) LearningTopic | LONG | CourseTopic | LearningTopic | LearningTopicModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /coursetopic/{id} | findCourseTopicById(id) | LearningTopicModule | GET | CourseTopic |
| (2) /coursetopic/course/{id} | findAllCourseTopicOfCourse(id) | LearningTopicModule | GET | Course CourseTopic |
| (3) /coursetopic/{id} | deleteCourseTopicById(id) | LearningTopicModule | DELETE | CourseTopic |
| (4) /coursetopic/learningtopic/{id} | findAllCourseTopicOfLearningTopic(id) | LearningTopicModule | GET | LearningTopic CourseTopic |
| (5) /coursetopic | insertCourseTopic(coursetopic) | LearningTopicModule | POST | CourseTopic |
| (6) /coursetopic/{id} | updateCourseTopicById(coursetopic) | LearningTopicModule | PUT | CourseTopic |
| (7) /coursetopic | findAllCourseTopic() | LearningTopicModule | GET | CourseTopic |
Example:
final CourseTopic coursetopic = (CourseTopic) invokeModule(LEARNING_TOPIC_MODULE + "/coursetopic/" + id, CourseTopic.class);| Contact | Donate | Imprint |