Overview

Summary

ContactDonateImprint


Appendix E-18: SPACE (UI prompt)


SpaceSpaceModuleTwitterX

Properties (9)

PropertyTypeEntityReferenceModule
(1) CreatedAtSTRINGSpace
(2) CreatorUserLONGSpaceUserAccountUserAccountModule
(3) DescriptionSTRINGSpace
(4) EndedAtSTRINGSpace
(5) IsRecordedBOOLSpace
(6) LanguageSTRINGSpace
(7) ScheduledStartSTRINGSpace
(8) StartedAtSTRINGSpace
(9) TitleSTRINGSpace


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /space/{id}updateSpaceById(space)SpaceModulePUTSpace
(2) /spaceinsertSpace(space)SpaceModulePOSTSpace
(3) /spaceparticipant/space/{id}findAllSpaceParticipantOfSpace(id)SpaceModuleGETSpace SpaceParticipant
(4) /space/creatoruser/{id}findAllSpaceOfCreatorUser(id)SpaceModuleGETUserAccount Space
(5) /space/{id}deleteSpaceById(id)SpaceModuleDELETESpace
(6) /spacefindAllSpace()SpaceModuleGETSpace
(7) /space/{id}findSpaceById(id)SpaceModuleGETSpace





Example:

final Space space = (Space) invokeModule(SPACE_MODULE + "/space/" + id, Space.class);
if (space != null) {
    final UserAccount creatoruser1 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + space.getCreatorUser().getId(), UserAccount.class);
    if (creatoruser1 != null) {
    }
}
return space;


Overview

Summary

ContactDonateImprint