Overview

Summary

ContactDonateImprint


Appendix E-15: MAP VIEW WEATHER LAYER (UI prompt)


MapViewWeatherLayerUserAccountModuleFlightRadar

Properties (3)

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


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /mapviewweatherlayer/{id}deleteMapViewWeatherLayerById(id)UserAccountModuleDELETEMapViewWeatherLayer
(2) /mapviewweatherlayer/{id}updateMapViewWeatherLayerById(mapviewweatherlayer)UserAccountModulePUTMapViewWeatherLayer
(3) /mapviewweatherlayer/mapviewsession/{id}findAllMapViewWeatherLayerOfMapViewSession(id)UserAccountModuleGETMapViewSession MapViewWeatherLayer
(4) /mapviewweatherlayer/weatherlayer/{id}findAllMapViewWeatherLayerOfWeatherLayer(id)UserAccountModuleGETWeatherLayer MapViewWeatherLayer
(5) /mapviewweatherlayer/{id}findMapViewWeatherLayerById(id)UserAccountModuleGETMapViewWeatherLayer
(6) /mapviewweatherlayerinsertMapViewWeatherLayer(mapviewweatherlayer)UserAccountModulePOSTMapViewWeatherLayer
(7) /mapviewweatherlayerfindAllMapViewWeatherLayer()UserAccountModuleGETMapViewWeatherLayer





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;


Overview

Summary

ContactDonateImprint