Uses of Record Class
com.endurancetrio.app.common.response.EnduranceTrioResponse
Packages that use EnduranceTrioResponse
-
Uses of EnduranceTrioResponse in com.endurancetrio.app.common.handler
Methods in com.endurancetrio.app.common.handler that return types with arguments of type EnduranceTrioResponseModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<@NonNull EnduranceTrioResponse<String>> EnduranceTrioExceptionHandlerAuth.authException(org.springframework.security.core.AuthenticationException exception) Handles 401 Unauthorized errors (Authentication failures).org.springframework.http.ResponseEntity<@NonNull EnduranceTrioResponse<String>> EnduranceTrioExceptionHandlerAuth.handleAuthorizationException(org.springframework.security.access.AccessDeniedException exception) Handles 403 Forbidden errors (Authorization failures).org.springframework.http.ResponseEntity<@NonNull EnduranceTrioResponse<String>> EnduranceTrioExceptionHandlerAPI.unhandledException(Exception exception) Catch-all handler for any unexpected system exceptions. -
Uses of EnduranceTrioResponse in com.endurancetrio.app.tracker.api
Methods in com.endurancetrio.app.tracker.api that return types with arguments of type EnduranceTrioResponseModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<@NonNull EnduranceTrioResponse<RouteDTO>> Creates a new route configuration.org.springframework.http.ResponseEntity<@NonNull EnduranceTrioResponse<RouteDTO>> org.springframework.http.ResponseEntity<@NonNull EnduranceTrioResponse<List<RouteDTO>>> RouteAPI.findAll()Retrieves all route configurations.org.springframework.http.ResponseEntity<@NonNull EnduranceTrioResponse<List<RouteDTO>>> RouteRestController.findAll()org.springframework.http.ResponseEntity<EnduranceTrioResponse<RouteDTO>> Finds a route configuration by its unique identifier.org.springframework.http.ResponseEntity<EnduranceTrioResponse<RouteDTO>> org.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<EnduranceTrioResponse<RouteMetricsDTO>> RouteAPI.getRouteMetrics(@NonNull Long id) Retrieves the GeoJSON CollectionFeature definition for a specific route.org.springframework.http.ResponseEntity<EnduranceTrioResponse<RouteMetricsDTO>> RouteRestController.getRouteMetrics(@NonNull Long id) 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) org.springframework.http.ResponseEntity<@NonNull EnduranceTrioResponse<RouteDTO>> Updates an existing route configuration.org.springframework.http.ResponseEntity<@NonNull EnduranceTrioResponse<RouteDTO>>