Overview
Summary
Contact
Donate
Imprint
Prompt for the
AisMessageView
Please create a React-JS view called "AisMessageView" for the fields of the AisMessage entity. The AisMessageView must contain the following fields: - name: AisStation type: AisStation - name: MessageType type: STRING - name: NmeaSentence type: STRING - name: RawCourseOverGround type: STRING - name: RawDestination type: STRING - name: RawDraught type: STRING - name: RawEta type: DATE - name: RawHeading type: STRING - name: RawLatitude type: STRING - name: RawLongitude type: STRING - name: RawNavigationalStatus type: STRING - name: RawSpeedOverGround type: STRING - name: ReceivedUtc type: DATE - name: SourceType type: STRING - name: Vessel type: Vessel The data source for the [Vessel] select control should be loaded from the relative URL: "/VesselService/vessel" (HTTP-GET) The data source for the [AisStation] select control should be loaded from the relative URL: "/GeographicalAreaService/aisstation" (HTTP-GET) An existing AisMessage entity should be loaded from the relative URL: "/GeographicalAreaService/aismessage/{id}" (HTTP-GET) If a new AisMessage entity has been created, the new entity should be posted to the relative URL: "/GeographicalAreaService/aismessage" (HTTP-POST) If an existing AisMessage entity has been updated, the modified entity should be sent to the relative URL: "/GeographicalAreaService/aismessage/{id}" (HTTP-PUT) If an existing AisMessage entity has to be deleted, the following relative URL should be called: "/GeographicalAreaService/aismessage/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint