@RestController @RequestMapping(path="/consent/confirmation/ais") public class ConsentConfirmationController extends Object
| Constructor and Description |
|---|
ConsentConfirmationController() |
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity |
confirmTan(Confirmation confirmation) |
org.springframework.http.ResponseEntity |
generateAndSendTan(String psuId) |
org.springframework.http.ResponseEntity<Void> |
updateAisConsentStatus(String consentId,
AspspConsentStatus status) |
@PostMapping(path="/{psu-id}")
public org.springframework.http.ResponseEntity generateAndSendTan(@PathVariable(value="psu-id")
String psuId)
@PutMapping
public org.springframework.http.ResponseEntity confirmTan(@RequestBody
Confirmation confirmation)
@PutMapping(path="/{consent-id}/{status}")
public org.springframework.http.ResponseEntity<Void> updateAisConsentStatus(@PathVariable(value="consent-id")
String consentId,
@PathVariable(value="status")
AspspConsentStatus status)
Copyright © 2018. All rights reserved.