Interface PatientFeignClient
@FeignClient("patients")
public interface PatientFeignClient
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity
<SuccessResponse<PatientDto>> getPatientById
(Long id, String correlationId) void
updateEarlyOnsetMailSent
(Long id, boolean mailSent, String correlationId)
-
Method Details
-
getPatientById
@GetMapping("/patients/{id}") org.springframework.http.ResponseEntity<SuccessResponse<PatientDto>> getPatientById(@PathVariable Long id, @RequestHeader("medilabo-solutions-correlation-id") String correlationId) -
updateEarlyOnsetMailSent
-