Overview

Summary

ContactDonateImprint


Appendix E-24: VESSEL IDENTIFIER HISTORY (UI prompt)


VesselIdentifierHistoryFleetModuleMarineTraffic

Properties (7)

PropertyTypeEntityReferenceModule
(1) PreviousCallSignSTRINGVesselIdentifierHistory
(2) PreviousFlagCountryLONGVesselIdentifierHistoryCountryUserAccountModule
(3) PreviousMmsiSTRINGVesselIdentifierHistory
(4) PreviousNameSTRINGVesselIdentifierHistory
(5) ValidFromUtcDATEVesselIdentifierHistory
(6) ValidToUtcDATEVesselIdentifierHistory
(7) VesselLONGVesselIdentifierHistoryVesselVesselModule


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /vesselidentifierhistory/{id}deleteVesselIdentifierHistoryById(id)FleetModuleDELETEVesselIdentifierHistory
(2) /vesselidentifierhistoryinsertVesselIdentifierHistory(vesselidentifierhistory)FleetModulePOSTVesselIdentifierHistory
(3) /vesselidentifierhistory/previousflagcountry/{id}findAllVesselIdentifierHistoryOfPreviousFlagCountry(id)FleetModuleGETCountry VesselIdentifierHistory
(4) /vesselidentifierhistory/{id}findVesselIdentifierHistoryById(id)FleetModuleGETVesselIdentifierHistory
(5) /vesselidentifierhistoryfindAllVesselIdentifierHistory()FleetModuleGETVesselIdentifierHistory
(6) /vesselidentifierhistory/vessel/{id}findAllVesselIdentifierHistoryOfVessel(id)FleetModuleGETVessel VesselIdentifierHistory
(7) /vesselidentifierhistory/{id}updateVesselIdentifierHistoryById(vesselidentifierhistory)FleetModulePUTVesselIdentifierHistory





Example:

final VesselIdentifierHistory vesselidentifierhistory = (VesselIdentifierHistory) invokeModule(FLEET_MODULE + "/vesselidentifierhistory/" + id, VesselIdentifierHistory.class);
if (vesselidentifierhistory != null) {
    final Country previousflagcountry1 = (Country) invokeModule(USER_ACCOUNT_MODULE + "/country/" + vesselidentifierhistory.getPreviousFlagCountry().getId(), Country.class);
    if (previousflagcountry1 != null) {
    }
    final Vessel vessel2 = (Vessel) invokeModule(VESSEL_MODULE + "/vessel/" + vesselidentifierhistory.getVessel().getId(), Vessel.class);
    if (vessel2 != null) {
        final VesselType vesseltype3 = (VesselType) invokeModule(VESSEL_MODULE + "/vesseltype/" + vessel2.getVesselType().getId(), VesselType.class);
        if (vesseltype3 != null) {
        }
        final Country flagcountry4 = (Country) invokeModule(USER_ACCOUNT_MODULE + "/country/" + vessel2.getFlagCountry().getId(), Country.class);
        if (flagcountry4 != null) {
        }
        final VesselStatus vesselstatus5 = (VesselStatus) invokeModule(GEOGRAPHICAL_AREA_MODULE + "/vesselstatus/" + vessel2.getVesselStatus().getId(), VesselStatus.class);
        if (vesselstatus5 != null) {
        }
    }
}
return vesselidentifierhistory;


Overview

Summary

ContactDonateImprint