Package de.adorsys.multibanking.web
Class BankAccountController
- java.lang.Object
-
- de.adorsys.multibanking.web.BankAccountController
-
@UserResource @RestController @RequestMapping(path="api/v1/bankaccesses/{accessId}/accounts") public class BankAccountController extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description BankAccountController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.hateoas.Resource<BankAccountTO>getBankAccount(java.lang.String accessId, java.lang.String accountId)org.springframework.hateoas.Resources<org.springframework.hateoas.Resource<BankAccountTO>>getBankAccounts(java.lang.String accessId)org.springframework.http.ResponseEntitysyncBookings(java.lang.String accessId, java.lang.String accountId)
-
-
-
Method Detail
-
getBankAccounts
@GetMapping public org.springframework.hateoas.Resources<org.springframework.hateoas.Resource<BankAccountTO>> getBankAccounts(@PathVariable java.lang.String accessId)
-
getBankAccount
@GetMapping("/{accountId}") public org.springframework.hateoas.Resource<BankAccountTO> getBankAccount(@PathVariable java.lang.String accessId, @PathVariable("accountId") java.lang.String accountId)
-
syncBookings
@PutMapping("/{accountId}/sync") public org.springframework.http.ResponseEntity syncBookings(@PathVariable java.lang.String accessId, @PathVariable java.lang.String accountId)
-
-