Overview

Summary

ContactDonateImprint


Appendix E-40: POST TOPIC ASSIGNMENT (UI prompt)


PostTopicAssignmentPostTopicModuleLinkedIn

Properties (2)

PropertyTypeEntityReferenceModule
(1) PostLONGPostTopicAssignmentPostPostModule
(2) PostTopicLONGPostTopicAssignmentPostTopicPostTopicModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /posttopicassignment/{id}findPostTopicAssignmentById(id)PostTopicModuleGETPostTopicAssignment
(2) /posttopicassignment/post/{id}findAllPostTopicAssignmentOfPost(id)PostTopicModuleGETPost PostTopicAssignment
(3) /posttopicassignmentinsertPostTopicAssignment(posttopicassignment)PostTopicModulePOSTPostTopicAssignment
(4) /posttopicassignment/{id}updatePostTopicAssignmentById(posttopicassignment)PostTopicModulePUTPostTopicAssignment
(5) /posttopicassignment/{id}deletePostTopicAssignmentById(id)PostTopicModuleDELETEPostTopicAssignment
(6) /posttopicassignment/posttopic/{id}findAllPostTopicAssignmentOfPostTopic(id)PostTopicModuleGETPostTopic PostTopicAssignment
(7) /posttopicassignmentfindAllPostTopicAssignment()PostTopicModuleGETPostTopicAssignment





Example:

final PostTopicAssignment posttopicassignment = (PostTopicAssignment) invokeModule(POST_TOPIC_MODULE + "/posttopicassignment/" + id, PostTopicAssignment.class);
if (posttopicassignment != null) {
    final PostTopic posttopic1 = (PostTopic) invokeModule(POST_TOPIC_MODULE + "/posttopic/" + posttopicassignment.getPostTopic().getId(), PostTopic.class);
    if (posttopic1 != null) {
    }
    final Post post2 = (Post) invokeModule(POST_MODULE + "/post/" + posttopicassignment.getPost().getId(), Post.class);
    if (post2 != null) {
        final UserAccount authoruser3 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + post2.getAuthorUser().getId(), UserAccount.class);
        if (authoruser3 != null) {
        }
        final Company company4 = (Company) invokeModule(COMPANY_MODULE + "/company/" + post2.getCompany().getId(), Company.class);
        if (company4 != null) {
        }
    }
}
return posttopicassignment;


Overview

Summary

ContactDonateImprint