Overview

Summary

ContactDonateImprint


5. USER ACCOUNT MODULE (UI prompt)



Module Entities (13)

EntityAliasModuleGlobal Schema
(1) AdBlockDetectionEventAdBlockDetectionEventAircraftModuleFlightRadar
(2) AdImpressionAdImpressionAdvertisementModuleFlightRadar
(3) AlertAlertFlightModuleFlightRadar
(4) FilterPresetFilterPresetWeatherLayerModuleFlightRadar
(5) MapViewFilterPresetMapViewFilterPresetWeatherLayerModuleFlightRadar
(6) MapViewSessionMapViewSessionUserAccountModuleFlightRadar
(7) MapViewWeatherLayerMapViewWeatherLayerUserAccountModuleFlightRadar
(8) ReceiverReceiverReceiverModuleFlightRadar
(9) SubscriptionPlanSubscriptionPlanAdvertisementModuleFlightRadar
(10) UserAccountUserAccountUserAccountModuleFlightRadar
(11) UserSettingUserSettingUserAccountModuleFlightRadar
(12) UserSubscriptionUserSubscriptionUserAccountModuleFlightRadar
(13) WeatherLayerWeatherLayerWeatherLayerModuleFlightRadar

Module Interfaces (31)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /usersetting/{id}deleteUserSettingById(id)UserAccountModuleDELETEUserSetting
(2) /mapviewsession/useraccount/{id}findAllMapViewSessionOfUserAccount(id)UserAccountModuleGETUserAccount MapViewSession
(3) /usersubscriptioninsertUserSubscription(usersubscription)UserAccountModulePOSTUserSubscription
(4) /mapviewweatherlayer/{id}updateMapViewWeatherLayerById(mapviewweatherlayer)UserAccountModulePUTMapViewWeatherLayer
(5) /useraccountfindAllUserAccount()UserAccountModuleGETUserAccount
(6) /usersetting/useraccount/{id}findAllUserSettingOfUserAccount(id)UserAccountModuleGETUserAccount UserSetting
(7) /usersubscription/{id}updateUserSubscriptionById(usersubscription)UserAccountModulePUTUserSubscription
(8) /useraccount/{id}updateUserAccountById(useraccount)UserAccountModulePUTUserAccount
(9) /mapviewsession/{id}deleteMapViewSessionById(id)UserAccountModuleDELETEMapViewSession
(10) /usersetting/{id}updateUserSettingById(usersetting)UserAccountModulePUTUserSetting
(11) /usersetting/{id}findUserSettingById(id)UserAccountModuleGETUserSetting
(12) /usersubscription/useraccount/{id}findAllUserSubscriptionOfUserAccount(id)UserAccountModuleGETUserAccount UserSubscription
(13) /usersettingfindAllUserSetting()UserAccountModuleGETUserSetting
(14) /usersettinginsertUserSetting(usersetting)UserAccountModulePOSTUserSetting
(15) /mapviewweatherlayerfindAllMapViewWeatherLayer()UserAccountModuleGETMapViewWeatherLayer
(16) /usersubscription/subscriptionplan/{id}findAllUserSubscriptionOfSubscriptionPlan(id)UserAccountModuleGETSubscriptionPlan UserSubscription
(17) /mapviewsessionfindAllMapViewSession()UserAccountModuleGETMapViewSession
(18) /mapviewweatherlayer/mapviewsession/{id}findAllMapViewWeatherLayerOfMapViewSession(id)UserAccountModuleGETMapViewSession MapViewWeatherLayer
(19) /mapviewweatherlayer/weatherlayer/{id}findAllMapViewWeatherLayerOfWeatherLayer(id)UserAccountModuleGETWeatherLayer MapViewWeatherLayer
(20) /mapviewweatherlayer/{id}findMapViewWeatherLayerById(id)UserAccountModuleGETMapViewWeatherLayer
(21) /mapviewweatherlayerinsertMapViewWeatherLayer(mapviewweatherlayer)UserAccountModulePOSTMapViewWeatherLayer
(22) /usersubscriptionfindAllUserSubscription()UserAccountModuleGETUserSubscription
(23) /useraccount/{id}deleteUserAccountById(id)UserAccountModuleDELETEUserAccount
(24) /mapviewweatherlayer/{id}deleteMapViewWeatherLayerById(id)UserAccountModuleDELETEMapViewWeatherLayer
(25) /usersubscription/{id}findUserSubscriptionById(id)UserAccountModuleGETUserSubscription
(26) /useraccountinsertUserAccount(useraccount)UserAccountModulePOSTUserAccount
(27) /mapviewsession/{id}updateMapViewSessionById(mapviewsession)UserAccountModulePUTMapViewSession
(28) /useraccount/{id}findUserAccountById(id)UserAccountModuleGETUserAccount
(29) /mapviewsession/{id}findMapViewSessionById(id)UserAccountModuleGETMapViewSession
(30) /mapviewsessioninsertMapViewSession(mapviewsession)UserAccountModulePOSTMapViewSession
(31) /usersubscription/{id}deleteUserSubscriptionById(id)UserAccountModuleDELETEUserSubscription






5.1 MAP VIEW SESSION


MapViewSessionUserAccountModuleFlightRadar

Properties (8)

PropertyTypeEntityReferenceModule
(1) CenterLatitudeDOUBLEMapViewSession
(2) CenterLongitudeDOUBLEMapViewSession
(3) ClientDeviceSTRINGMapViewSession
(4) ClientIpSTRINGMapViewSession
(5) EndedAtUtcDATEMapViewSession
(6) StartedAtUtcDATEMapViewSession
(7) UserAccountINTMapViewSessionUserAccountUserAccountModule
(8) ZoomLevelINTMapViewSession





Example:

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


5.2 MAP VIEW WEATHER LAYER


MapViewWeatherLayerUserAccountModuleFlightRadar

Properties (3)

PropertyTypeEntityReferenceModule
(1) MapViewSessionINTMapViewWeatherLayerMapViewSessionUserAccountModule
(2) VisibleBOOLMapViewWeatherLayer
(3) WeatherLayerINTMapViewWeatherLayerWeatherLayerWeatherLayerModule





Example:

final MapViewWeatherLayer mapviewweatherlayer = (MapViewWeatherLayer) invokeModule(USER_ACCOUNT_MODULE + "/mapviewweatherlayer/" + id, MapViewWeatherLayer.class);
if (mapviewweatherlayer != null) {
    final MapViewSession mapviewsession1 = (MapViewSession) invokeModule(USER_ACCOUNT_MODULE + "/mapviewsession/" + mapviewweatherlayer.getMapViewSession().getId(), MapViewSession.class);
    if (mapviewsession1 != null) {
        final UserAccount useraccount2 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + mapviewsession1.getUserAccount().getId(), UserAccount.class);
        if (useraccount2 != null) {
        }
    }
    final WeatherLayer weatherlayer3 = (WeatherLayer) invokeModule(WEATHER_LAYER_MODULE + "/weatherlayer/" + mapviewweatherlayer.getWeatherLayer().getId(), WeatherLayer.class);
    if (weatherlayer3 != null) {
    }
}
return mapviewweatherlayer;


5.3 USER ACCOUNT


UserAccountUserAccountModuleFlightRadar

Properties (8)

PropertyTypeEntityReferenceModule
(1) CountrySTRINGUserAccount
(2) CreatedAtUtcDATEUserAccount
(3) DisplayNameSTRINGUserAccount
(4) EmailSTRINGUserAccount
(5) IsAdminBOOLUserAccount
(6) LastLoginAtUtcDATEUserAccount
(7) PasswordHashSTRINGUserAccount
(8) SubscriptionPlanINTUserAccount





Example:

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


5.4 USER SETTING


UserSettingUserAccountModuleFlightRadar

Properties (3)

PropertyTypeEntityReferenceModule
(1) UserAccountINTUserSettingUserAccountUserAccountModule
(2) UserKeySTRINGUserSetting
(3) UserValueSTRINGUserSetting





Example:

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


5.5 USER SUBSCRIPTION


UserSubscriptionUserAccountModuleFlightRadar

Properties (6)

PropertyTypeEntityReferenceModule
(1) AutoRenewBOOLUserSubscription
(2) EndDateUtcDATEUserSubscription
(3) StartDateUtcDATEUserSubscription
(4) StatusSTRINGUserSubscription
(5) SubscriptionPlanINTUserSubscriptionSubscriptionPlanAdvertisementModule
(6) UserAccountINTUserSubscriptionUserAccountUserAccountModule





Example:

final UserSubscription usersubscription = (UserSubscription) invokeModule(USER_ACCOUNT_MODULE + "/usersubscription/" + id, UserSubscription.class);
if (usersubscription != null) {
    final SubscriptionPlan subscriptionplan1 = (SubscriptionPlan) invokeModule(ADVERTISEMENT_MODULE + "/subscriptionplan/" + usersubscription.getSubscriptionPlan().getId(), SubscriptionPlan.class);
    if (subscriptionplan1 != null) {
    }
    final UserAccount useraccount2 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + usersubscription.getUserAccount().getId(), UserAccount.class);
    if (useraccount2 != null) {
    }
}
return usersubscription;


Overview

Summary

ContactDonateImprint