Overview

Summary

ContactDonateImprint


Appendix E-30: AIS STATION (UI prompt)


AisStationGeographicalAreaModuleMarineTraffic

Properties (11)

PropertyTypeEntityReferenceModule
(1) ActiveFromUtcDATEAisStation
(2) ActiveToUtcDATEAisStation
(3) CountryLONGAisStationCountryUserAccountModule
(4) ElevationMetersSTRINGAisStation
(5) IsActiveBOOLAisStation
(6) LatitudeSTRINGAisStation
(7) LongitudeSTRINGAisStation
(8) NameSTRINGAisStation
(9) OwnerUserLONGAisStation
(10) StationCodeSTRINGAisStation
(11) StationTypeSTRINGAisStation


Module Interfaces (8)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /aisstation/{id}deleteAisStationById(id)GeographicalAreaModuleDELETEAisStation
(2) /aisstationfindAllAisStation()GeographicalAreaModuleGETAisStation
(3) /aismessage/aisstation/{id}findAllAisMessageOfAisStation(id)GeographicalAreaModuleGETAisStation AisMessage
(4) /aisstationinsertAisStation(aisstation)GeographicalAreaModulePOSTAisStation
(5) /aisstation/country/{id}findAllAisStationOfCountry(id)GeographicalAreaModuleGETCountry AisStation
(6) /aisstation/{id}updateAisStationById(aisstation)GeographicalAreaModulePUTAisStation
(7) /aisstation/{id}findAisStationById(id)GeographicalAreaModuleGETAisStation
(8) /positionreport/aisstation/{id}findAllPositionReportOfAisStation(id)VesselModuleGETAisStation PositionReport





Example:

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


Overview

Summary

ContactDonateImprint