Uses of Record Class
com.endurancetrio.business.tracker.dto.DeviceTelemetryDTO
Packages that use DeviceTelemetryDTO
Package
Description
-
Uses of DeviceTelemetryDTO in com.endurancetrio.app.tracker.api
Methods in com.endurancetrio.app.tracker.api that return types with arguments of type DeviceTelemetryDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<@NonNull EnduranceTrioResponse<List<DeviceTelemetryDTO>>> DeviceTelemetryAPI.getMostRecentRecordForEachDevice()Gets the most recent telemetry data record for each device present in the database.org.springframework.http.ResponseEntity<@NonNull EnduranceTrioResponse<List<DeviceTelemetryDTO>>> DeviceTelemetryRestController.getMostRecentRecordForEachDevice()org.springframework.http.ResponseEntity<@NonNull EnduranceTrioResponse<DeviceTelemetryDTO>> DeviceTelemetryAPI.save(DeviceTelemetryDTO deviceTelemetryDTO) Saves the provided telemetry data, using the authenticated user as the owner accountorg.springframework.http.ResponseEntity<@NonNull EnduranceTrioResponse<DeviceTelemetryDTO>> DeviceTelemetryRestController.save(@Valid DeviceTelemetryDTO deviceTelemetryDTO) Methods in com.endurancetrio.app.tracker.api with parameters of type DeviceTelemetryDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<@NonNull EnduranceTrioResponse<DeviceTelemetryDTO>> DeviceTelemetryAPI.save(DeviceTelemetryDTO deviceTelemetryDTO) Saves the provided telemetry data, using the authenticated user as the owner accountorg.springframework.http.ResponseEntity<@NonNull EnduranceTrioResponse<DeviceTelemetryDTO>> DeviceTelemetryRestController.save(@Valid DeviceTelemetryDTO deviceTelemetryDTO) -
Uses of DeviceTelemetryDTO in com.endurancetrio.business.tracker.mapper
Methods in com.endurancetrio.business.tracker.mapper that return DeviceTelemetryDTOModifier and TypeMethodDescriptionDeviceTelemetryMapper.map(DeviceTelemetry entity) Converts aDeviceTelemetryentity to aDeviceTelemetryDTO.Methods in com.endurancetrio.business.tracker.mapper with parameters of type DeviceTelemetryDTOModifier and TypeMethodDescriptionDeviceTelemetryMapper.map(DeviceTelemetryDTO dto, TrackerAccountDTO account) Converts aDeviceTelemetryDTOto aDeviceTelemetryentity. -
Uses of DeviceTelemetryDTO in com.endurancetrio.business.tracker.service
Methods in com.endurancetrio.business.tracker.service that return DeviceTelemetryDTOModifier and TypeMethodDescriptionDeviceTelemetryService.save(String owner, DeviceTelemetryDTO deviceTelemetryDTO) Saves the provided telemetry data for the specified owner.DeviceTelemetryServiceMain.save(String owner, DeviceTelemetryDTO deviceTelemetryDTO) Methods in com.endurancetrio.business.tracker.service that return types with arguments of type DeviceTelemetryDTOModifier and TypeMethodDescriptionDeviceTelemetryService.findMostRecentRecordForEachDevice()Finds the most recent telemetry data record for each device present in the database.DeviceTelemetryServiceMain.findMostRecentRecordForEachDevice()Methods in com.endurancetrio.business.tracker.service with parameters of type DeviceTelemetryDTOModifier and TypeMethodDescriptionDeviceTelemetryService.save(String owner, DeviceTelemetryDTO deviceTelemetryDTO) Saves the provided telemetry data for the specified owner.DeviceTelemetryServiceMain.save(String owner, DeviceTelemetryDTO deviceTelemetryDTO)