Overview

Summary

ContactDonateImprint


6. WEATHER LAYER MODULE (UI prompt)



Module Entities (7)

EntityAliasModuleGlobal Schema
(1) CountryCountryWeatherLayerModuleFlightRadar
(2) FilterPresetFilterPresetWeatherLayerModuleFlightRadar
(3) MapViewFilterPresetMapViewFilterPresetWeatherLayerModuleFlightRadar
(4) MapViewSessionMapViewSessionUserAccountModuleFlightRadar
(5) MapViewWeatherLayerMapViewWeatherLayerUserAccountModuleFlightRadar
(6) UserAccountUserAccountUserAccountModuleFlightRadar
(7) WeatherLayerWeatherLayerWeatherLayerModuleFlightRadar

Module Interfaces (23)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /country/{id}findCountryById(id)WeatherLayerModuleGETCountry
(2) /weatherlayerfindAllWeatherLayer()WeatherLayerModuleGETWeatherLayer
(3) /mapviewfilterpresetinsertMapViewFilterPreset(mapviewfilterpreset)WeatherLayerModulePOSTMapViewFilterPreset
(4) /countryfindAllCountry()WeatherLayerModuleGETCountry
(5) /mapviewfilterpreset/{id}findMapViewFilterPresetById(id)WeatherLayerModuleGETMapViewFilterPreset
(6) /country/{id}updateCountryById(country)WeatherLayerModulePUTCountry
(7) /weatherlayer/{id}findWeatherLayerById(id)WeatherLayerModuleGETWeatherLayer
(8) /country/{id}deleteCountryById(id)WeatherLayerModuleDELETECountry
(9) /mapviewfilterpresetfindAllMapViewFilterPreset()WeatherLayerModuleGETMapViewFilterPreset
(10) /mapviewfilterpreset/filterpreset/{id}findAllMapViewFilterPresetOfFilterPreset(id)WeatherLayerModuleGETFilterPreset MapViewFilterPreset
(11) /weatherlayer/{id}updateWeatherLayerById(weatherlayer)WeatherLayerModulePUTWeatherLayer
(12) /filterpreset/useraccount/{id}findAllFilterPresetOfUserAccount(id)WeatherLayerModuleGETUserAccount FilterPreset
(13) /mapviewfilterpreset/mapviewsession/{id}findAllMapViewFilterPresetOfMapViewSession(id)WeatherLayerModuleGETMapViewSession MapViewFilterPreset
(14) /filterpresetinsertFilterPreset(filterpreset)WeatherLayerModulePOSTFilterPreset
(15) /filterpresetfindAllFilterPreset()WeatherLayerModuleGETFilterPreset
(16) /filterpreset/{id}updateFilterPresetById(filterpreset)WeatherLayerModulePUTFilterPreset
(17) /mapviewfilterpreset/{id}deleteMapViewFilterPresetById(id)WeatherLayerModuleDELETEMapViewFilterPreset
(18) /mapviewfilterpreset/{id}updateMapViewFilterPresetById(mapviewfilterpreset)WeatherLayerModulePUTMapViewFilterPreset
(19) /filterpreset/{id}findFilterPresetById(id)WeatherLayerModuleGETFilterPreset
(20) /countryinsertCountry(country)WeatherLayerModulePOSTCountry
(21) /weatherlayerinsertWeatherLayer(weatherlayer)WeatherLayerModulePOSTWeatherLayer
(22) /filterpreset/{id}deleteFilterPresetById(id)WeatherLayerModuleDELETEFilterPreset
(23) /weatherlayer/{id}deleteWeatherLayerById(id)WeatherLayerModuleDELETEWeatherLayer






6.1 COUNTRY


CountryWeatherLayerModuleFlightRadar

Properties (3)

PropertyTypeEntityReferenceModule
(1) IsoCode2STRINGCountry
(2) IsoCode3STRINGCountry
(3) NameSTRINGCountry





Example:

final Country country = (Country) invokeModule(WEATHER_LAYER_MODULE + "/country/" + id, Country.class);
if (country != null) {
}
return country;


6.2 FILTER PRESET


FilterPresetWeatherLayerModuleFlightRadar

Properties (5)

PropertyTypeEntityReferenceModule
(1) CreatedAtUtcDATEFilterPreset
(2) CriteriaJsonSTRINGFilterPreset
(3) NameSTRINGFilterPreset
(4) SharedBOOLFilterPreset
(5) UserAccountINTFilterPresetUserAccountUserAccountModule





Example:

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


6.3 MAP VIEW FILTER PRESET


MapViewFilterPresetWeatherLayerModuleFlightRadar

Properties (2)

PropertyTypeEntityReferenceModule
(1) FilterPresetINTMapViewFilterPresetFilterPresetWeatherLayerModule
(2) MapViewSessionINTMapViewFilterPresetMapViewSessionUserAccountModule





Example:

final MapViewFilterPreset mapviewfilterpreset = (MapViewFilterPreset) invokeModule(WEATHER_LAYER_MODULE + "/mapviewfilterpreset/" + id, MapViewFilterPreset.class);
if (mapviewfilterpreset != null) {
    final MapViewSession mapviewsession1 = (MapViewSession) invokeModule(USER_ACCOUNT_MODULE + "/mapviewsession/" + mapviewfilterpreset.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 FilterPreset filterpreset3 = (FilterPreset) invokeModule(WEATHER_LAYER_MODULE + "/filterpreset/" + mapviewfilterpreset.getFilterPreset().getId(), FilterPreset.class);
    if (filterpreset3 != null) {
        final UserAccount useraccount4 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + filterpreset3.getUserAccount().getId(), UserAccount.class);
        if (useraccount4 != null) {
        }
    }
}
return mapviewfilterpreset;


6.4 WEATHER LAYER


WeatherLayerWeatherLayerModuleFlightRadar

Properties (4)

PropertyTypeEntityReferenceModule
(1) DescriptionSTRINGWeatherLayer
(2) EnabledForPlansSTRINGWeatherLayer
(3) LayerTypeSTRINGWeatherLayer
(4) NameSTRINGWeatherLayer





Example:

final WeatherLayer weatherlayer = (WeatherLayer) invokeModule(WEATHER_LAYER_MODULE + "/weatherlayer/" + id, WeatherLayer.class);
if (weatherlayer != null) {
}
return weatherlayer;


Overview

Summary

ContactDonateImprint