Overview

Summary

ContactDonateImprint


Appendix E-18: USER ACCOUNT (UI prompt)


UserAccountUserAccountModuleMarineTraffic

Properties (10)

PropertyTypeEntityReferenceModule
(1) CountryLONGUserAccountCountryUserAccountModule
(2) CreatedUtcDATEUserAccount
(3) DisplayNameSTRINGUserAccount
(4) EmailSTRINGUserAccount
(5) IsEmailVerifiedBOOLUserAccount
(6) LastLoginUtcDATEUserAccount
(7) PasswordHashSTRINGUserAccount
(8) PreferredLanguageSTRINGUserAccount
(9) TimeZoneSTRINGUserAccount
(10) UserRoleSTRINGUserAccount


Module Interfaces (16)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /apiclient/useraccount/{id}findAllApiClientOfUserAccount(id)ApiClientModuleGETUserAccount ApiClient
(2) /notification/useraccount/{id}findAllNotificationOfUserAccount(id)FleetModuleGETUserAccount Notification
(3) /fleet/owneruser/{id}findAllFleetOfOwnerUser(id)FleetModuleGETUserAccount Fleet
(4) /userdevice/useraccount/{id}findAllUserDeviceOfUserAccount(id)PhotoModuleGETUserAccount UserDevice
(5) /photorating/useraccount/{id}findAllPhotoRatingOfUserAccount(id)PhotoModuleGETUserAccount PhotoRating
(6) /photo/useraccount/{id}findAllPhotoOfUserAccount(id)PhotoModuleGETUserAccount Photo
(7) /alertrule/useraccount/{id}findAllAlertRuleOfUserAccount(id)PortModuleGETUserAccount AlertRule
(8) /usersubscription/useraccount/{id}findAllUserSubscriptionOfUserAccount(id)SubscriptionPlanModuleGETUserAccount UserSubscription
(9) /useraccount/country/{id}findAllUserAccountOfCountry(id)UserAccountModuleGETCountry UserAccount
(10) /useraccount/{id}updateUserAccountById(useraccount)UserAccountModulePUTUserAccount
(11) /useraccountinsertUserAccount(useraccount)UserAccountModulePOSTUserAccount
(12) /vesselcomment/useraccount/{id}findAllVesselCommentOfUserAccount(id)UserAccountModuleGETUserAccount VesselComment
(13) /useraccount/{id}findUserAccountById(id)UserAccountModuleGETUserAccount
(14) /useraccountfindAllUserAccount()UserAccountModuleGETUserAccount
(15) /useraccount/{id}deleteUserAccountById(id)UserAccountModuleDELETEUserAccount
(16) /savedfilter/useraccount/{id}findAllSavedFilterOfUserAccount(id)UserAccountModuleGETUserAccount SavedFilter





Example:

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


Overview

Summary

ContactDonateImprint