Overview

Summary

ContactDonateImprint


Appendix E-20: COMMUNITY SPACE (UI prompt)


CommunitySpaceCommunitySpaceModuleWhatsApp

Properties (4)

PropertyTypeEntityReferenceModule
(1) CreatedAtDATECommunitySpace
(2) DescriptionSTRINGCommunitySpace
(3) NameSTRINGCommunitySpace
(4) OwnerUserAccountLONGCommunitySpaceUserAccountUserAccountModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /communitychat/communityspace/{id}findAllCommunityChatOfCommunitySpace(id)CommunitySpaceModuleGETCommunitySpace CommunityChat
(2) /communityspace/{id}updateCommunitySpaceById(communityspace)CommunitySpaceModulePUTCommunitySpace
(3) /communityspace/{id}deleteCommunitySpaceById(id)CommunitySpaceModuleDELETECommunitySpace
(4) /communityspace/owneruseraccount/{id}findAllCommunitySpaceOfOwnerUserAccount(id)CommunitySpaceModuleGETUserAccount CommunitySpace
(5) /communityspace/{id}findCommunitySpaceById(id)CommunitySpaceModuleGETCommunitySpace
(6) /communityspaceinsertCommunitySpace(communityspace)CommunitySpaceModulePOSTCommunitySpace
(7) /communityspacefindAllCommunitySpace()CommunitySpaceModuleGETCommunitySpace





Example:

final CommunitySpace communityspace = (CommunitySpace) invokeModule(COMMUNITY_SPACE_MODULE + "/communityspace/" + id, CommunitySpace.class);
if (communityspace != null) {
    final UserAccount owneruseraccount1 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + communityspace.getOwnerUserAccount().getId(), UserAccount.class);
    if (owneruseraccount1 != null) {
    }
}
return communityspace;


Overview

Summary

ContactDonateImprint