Interface AccountService
@FeignClient(name="account-service",
configuration=FeignClientConfiguration.class)
public interface AccountService
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<Account>
readByAccountNumber
(String accountNumber) Retrieves an account by account number.org.springframework.http.ResponseEntity<Response>
updateAccount
(String accountNumber, Account account) Updates an account with the given account number.
-
Method Details
-
readByAccountNumber
@GetMapping("/accounts") org.springframework.http.ResponseEntity<Account> readByAccountNumber(@RequestParam String accountNumber) Retrieves an account by account number.- Parameters:
accountNumber
- The account number to search for.- Returns:
- The account matching the account number.
-
updateAccount
@PutMapping("/accounts") org.springframework.http.ResponseEntity<Response> updateAccount(@RequestParam String accountNumber, @RequestBody Account account) Updates an account with the given account number.- Parameters:
accountNumber
- The account number of the account to be updated.account
- The updated account details.- Returns:
- The response entity containing the response.
-