Overview

Summary

ServicesContactDonateAboutImprint


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) /communityspace/owneruseraccount/{id}findAllCommunitySpaceOfOwnerUserAccount(id)CommunitySpaceModuleGETUserAccount CommunitySpace
(2) /communityspaceinsertCommunitySpace(communityspace)CommunitySpaceModulePOSTCommunitySpace
(3) /communityspace/{id}updateCommunitySpaceById(communityspace)CommunitySpaceModulePUTCommunitySpace
(4) /communityspacefindAllCommunitySpace()CommunitySpaceModuleGETCommunitySpace
(5) /communitychat/communityspace/{id}findAllCommunityChatOfCommunitySpace(id)CommunitySpaceModuleGETCommunitySpace CommunityChat
(6) /communityspace/{id}findCommunitySpaceById(id)CommunitySpaceModuleGETCommunitySpace
(7) /communityspace/{id}deleteCommunitySpaceById(id)CommunitySpaceModuleDELETECommunitySpace





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

ServicesContactDonateAboutImprint