@UserResource @RestController @RequestMapping(path="api/v1/bankaccesses/{accessId}/accounts") public class BankAccountController extends Object
| Constructor and Description |
|---|
BankAccountController() |
| Modifier and Type | Method and Description |
|---|---|
org.springframework.hateoas.Resource<BankAccountTO> |
getBankAccount(String accessId,
String accountId) |
org.springframework.hateoas.Resources<org.springframework.hateoas.Resource<BankAccountTO>> |
getBankAccounts(String accessId) |
org.springframework.http.ResponseEntity |
syncBookings(String accessId,
String accountId) |
@GetMapping public org.springframework.hateoas.Resources<org.springframework.hateoas.Resource<BankAccountTO>> getBankAccounts(@PathVariable String accessId)
@GetMapping(value="/{accountId}")
public org.springframework.hateoas.Resource<BankAccountTO> getBankAccount(@PathVariable
String accessId,
@PathVariable(value="accountId")
String accountId)
Copyright © 2019. All rights reserved.