| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Connection | Connection | LearningTopicModule | |
| (2) Course | Course | CompanyModule | |
| (3) CourseTopic | CourseTopic | LearningTopicModule | |
| (4) LearningTopic | LearningTopic | LearningTopicModule | |
| (5) UserAccount | UserAccount | UserAccountModule |
| Connection | LearningTopicModule |
| Property | Type | Entity | Reference | Module |
| (1) AddresseeUser | LONG | Connection | UserAccount | UserAccountModule |
| (2) RequestedAt | DATE | Connection | ||
| (3) RequesterUser | LONG | Connection | UserAccount | UserAccountModule |
| (4) RespondedAt | DATE | Connection | ||
| (5) Status | STRING | Connection |
Example:
final Connection connection = (Connection) invokeModule(LEARNING_TOPIC_MODULE + "/connection/" + id, Connection.class);| CourseTopic | LearningTopicModule |
| Property | Type | Entity | Reference | Module |
| (1) Course | LONG | CourseTopic | Course | CompanyModule |
| (2) LearningTopic | LONG | CourseTopic | LearningTopic | LearningTopicModule |
Example:
final CourseTopic coursetopic = (CourseTopic) invokeModule(LEARNING_TOPIC_MODULE + "/coursetopic/" + id, CourseTopic.class);| LearningTopic | LearningTopicModule |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | LearningTopic | ||
| (2) Name | STRING | LearningTopic | ||
| (3) ParentTopic | LONG | LearningTopic |
Example:
final LearningTopic learningtopic = (LearningTopic) invokeModule(LEARNING_TOPIC_MODULE + "/learningtopic/" + id, LearningTopic.class);| Contact | Donate | Imprint |