@UserResource @RestController @RequestMapping(path="api/v1/bankaccesses") public class BankAccessController extends Object
| Constructor and Description |
|---|
BankAccessController() |
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<de.adorsys.multibanking.domain.Consent> |
createBankAccess(BankAccessTO bankAccess) |
org.springframework.http.HttpEntity<Void> |
deleteBankAccess(String accessId) |
org.springframework.hateoas.Resource<BankAccessTO> |
getBankAccess(String accessId) |
org.springframework.hateoas.Resources<org.springframework.hateoas.Resource<BankAccessTO>> |
getBankAccesses() |
org.springframework.http.HttpEntity<Void> |
updateBankAccess(String accessId,
BankAccessTO bankAccess) |
@GetMapping public org.springframework.hateoas.Resources<org.springframework.hateoas.Resource<BankAccessTO>> getBankAccesses()
@PostMapping
public org.springframework.http.ResponseEntity<de.adorsys.multibanking.domain.Consent> createBankAccess(@RequestBody
BankAccessTO bankAccess)
@GetMapping(value="/{accessId}")
public org.springframework.hateoas.Resource<BankAccessTO> getBankAccess(@PathVariable
String accessId)
@PutMapping(value="/{accessId}")
public org.springframework.http.HttpEntity<Void> updateBankAccess(@PathVariable
String accessId,
@RequestBody
BankAccessTO bankAccess)
Copyright © 2019. All rights reserved.