Overview

Summary

ContactDonateImprint


8. USER ACCOUNT MODULE (UI prompt)



Module Entities (20)

EntityAliasModuleGlobal Schema
(1) AdAccountAdAccountCampaignModuleTwitterX
(2) ApiAccessTokenApiAccessTokenTrendLocationModuleTwitterX
(3) ApiAppApiAppUserAccountModuleTwitterX
(4) CommunityCommunityUserAccountModuleTwitterX
(5) CommunityMembershipCommunityMembershipListModuleTwitterX
(6) DeviceDeviceUserAccountModuleTwitterX
(7) DirectMessageDirectMessageDirectMessageConversationModuleTwitterX
(8) DirectMessageConversationDirectMessageConversationDirectMessageConversationModuleTwitterX
(9) FollowFollowDirectMessageConversationModuleTwitterX
(10) ListListListModuleTwitterX
(11) ListMembershipListMembershipListModuleTwitterX
(12) ReportReportSpaceModuleTwitterX
(13) RetweetRetweetTweetModuleTwitterX
(14) SessionSessionUserAccountModuleTwitterX
(15) SpaceSpaceSpaceModuleTwitterX
(16) SpaceParticipantSpaceParticipantSpaceModuleTwitterX
(17) TweetTweetTweetModuleTwitterX
(18) UserAccountUserAccountUserAccountModuleTwitterX
(19) UserBlockUserBlockHashtagModuleTwitterX
(20) UserMuteUserMuteCampaignModuleTwitterX

Module Interfaces (30)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /apiappinsertApiApp(apiapp)UserAccountModulePOSTApiApp
(2) /community/{id}findCommunityById(id)UserAccountModuleGETCommunity
(3) /device/{id}deleteDeviceById(id)UserAccountModuleDELETEDevice
(4) /device/user/{id}findAllDeviceOfUser(id)UserAccountModuleGETUserAccount Device
(5) /apiapp/{id}findApiAppById(id)UserAccountModuleGETApiApp
(6) /communityinsertCommunity(community)UserAccountModulePOSTCommunity
(7) /community/{id}deleteCommunityById(id)UserAccountModuleDELETECommunity
(8) /apiapp/owneruser/{id}findAllApiAppOfOwnerUser(id)UserAccountModuleGETUserAccount ApiApp
(9) /session/{id}updateSessionById(session)UserAccountModulePUTSession
(10) /community/creatoruser/{id}findAllCommunityOfCreatorUser(id)UserAccountModuleGETUserAccount Community
(11) /session/{id}findSessionById(id)UserAccountModuleGETSession
(12) /devicefindAllDevice()UserAccountModuleGETDevice
(13) /useraccountinsertUserAccount(useraccount)UserAccountModulePOSTUserAccount
(14) /apiapp/{id}updateApiAppById(apiapp)UserAccountModulePUTApiApp
(15) /useraccount/{id}deleteUserAccountById(id)UserAccountModuleDELETEUserAccount
(16) /apiappfindAllApiApp()UserAccountModuleGETApiApp
(17) /session/user/{id}findAllSessionOfUser(id)UserAccountModuleGETUserAccount Session
(18) /communityfindAllCommunity()UserAccountModuleGETCommunity
(19) /useraccount/{id}updateUserAccountById(useraccount)UserAccountModulePUTUserAccount
(20) /deviceinsertDevice(device)UserAccountModulePOSTDevice
(21) /apiapp/{id}deleteApiAppById(id)UserAccountModuleDELETEApiApp
(22) /device/{id}findDeviceById(id)UserAccountModuleGETDevice
(23) /session/{id}deleteSessionById(id)UserAccountModuleDELETESession
(24) /sessionfindAllSession()UserAccountModuleGETSession
(25) /device/{id}updateDeviceById(device)UserAccountModulePUTDevice
(26) /sessioninsertSession(session)UserAccountModulePOSTSession
(27) /useraccount/{id}findUserAccountById(id)UserAccountModuleGETUserAccount
(28) /useraccountfindAllUserAccount()UserAccountModuleGETUserAccount
(29) /community/{id}updateCommunityById(community)UserAccountModulePUTCommunity
(30) /session/device/{id}findAllSessionOfDevice(id)UserAccountModuleGETDevice Session






8.1 API APP


ApiAppUserAccountModuleTwitterX

Properties (6)

PropertyTypeEntityReferenceModule
(1) ApiKeySTRINGApiApp
(2) CallbackUrlSTRINGApiApp
(3) CreatedAtSTRINGApiApp
(4) NameSTRINGApiApp
(5) OwnerUserLONGApiAppUserAccountUserAccountModule
(6) WebsiteUrlSTRINGApiApp





Example:

final ApiApp apiapp = (ApiApp) invokeModule(USER_ACCOUNT_MODULE + "/apiapp/" + id, ApiApp.class);
if (apiapp != null) {
    final UserAccount owneruser1 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + apiapp.getOwnerUser().getId(), UserAccount.class);
    if (owneruser1 != null) {
    }
}
return apiapp;


8.2 COMMUNITY


CommunityUserAccountModuleTwitterX

Properties (6)

PropertyTypeEntityReferenceModule
(1) CreatedAtSTRINGCommunity
(2) CreatorUserLONGCommunityUserAccountUserAccountModule
(3) DescriptionSTRINGCommunity
(4) IsPrivateBOOLCommunity
(5) NameSTRINGCommunity
(6) RulesSTRINGCommunity





Example:

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


8.3 DEVICE


DeviceUserAccountModuleTwitterX

Properties (6)

PropertyTypeEntityReferenceModule
(1) AppVersionSTRINGDevice
(2) CreatedAtSTRINGDevice
(3) DeviceTypeSTRINGDevice
(4) LastActiveAtSTRINGDevice
(5) OsSTRINGDevice
(6) UserLONGDeviceUserAccountUserAccountModule





Example:

final Device device = (Device) invokeModule(USER_ACCOUNT_MODULE + "/device/" + id, Device.class);
if (device != null) {
    final UserAccount user1 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + device.getUser().getId(), UserAccount.class);
    if (user1 != null) {
    }
}
return device;


8.4 SESSION


SessionUserAccountModuleTwitterX

Properties (7)

PropertyTypeEntityReferenceModule
(1) DeviceLONGSessionDeviceUserAccountModule
(2) EndedAtSTRINGSession
(3) IpAddressSTRINGSession
(4) IsActiveBOOLSession
(5) StartedAtSTRINGSession
(6) UserLONGSessionUserAccountUserAccountModule
(7) UserAgentSTRINGSession





Example:

final Session session = (Session) invokeModule(USER_ACCOUNT_MODULE + "/session/" + id, Session.class);
if (session != null) {
    final Device device1 = (Device) invokeModule(USER_ACCOUNT_MODULE + "/device/" + session.getDevice().getId(), Device.class);
    if (device1 != null) {
        final UserAccount user2 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + device1.getUser().getId(), UserAccount.class);
        if (user2 != null) {
        }
    }
    final UserAccount user3 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + session.getUser().getId(), UserAccount.class);
    if (user3 != null) {
    }
}
return session;


8.5 USER ACCOUNT


UserAccountUserAccountModuleTwitterX

Properties (15)

PropertyTypeEntityReferenceModule
(1) BioSTRINGUserAccount
(2) CreatedAtSTRINGUserAccount
(3) DisplayNameSTRINGUserAccount
(4) EmailSTRINGUserAccount
(5) FollowersCountLONGUserAccount
(6) FollowingCountLONGUserAccount
(7) IsProtectedBOOLUserAccount
(8) IsVerifiedBOOLUserAccount
(9) LanguageSTRINGUserAccount
(10) LocationSTRINGUserAccount
(11) PhoneNumberSTRINGUserAccount
(12) StatusCountLONGUserAccount
(13) TimezoneSTRINGUserAccount
(14) UrlSTRINGUserAccount
(15) UsernameSTRINGUserAccount





Example:

final UserAccount useraccount = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + id, UserAccount.class);
if (useraccount != null) {
}
return useraccount;


Overview

Summary

ContactDonateImprint