public interface RedirectScaRestAPI
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<GlobalScaResponseTO> |
authoriseForConsent(ScaLoginOprTO loginOpr) |
org.springframework.http.ResponseEntity<GlobalScaResponseTO> |
authorize(String authorisationId,
String authCode) |
org.springframework.http.ResponseEntity<GlobalScaResponseTO> |
getSCA(String authorisationId) |
org.springframework.http.ResponseEntity<GlobalScaResponseTO> |
selectMethod(String authorisationId,
String scaMethodId) |
static final String BASE_PATH
@PostMapping(value="/login") org.springframework.http.ResponseEntity<GlobalScaResponseTO> authoriseForConsent(@RequestBody ScaLoginOprTO loginOpr)
@GetMapping(value="/authorisations/{authorisationId}")
org.springframework.http.ResponseEntity<GlobalScaResponseTO> getSCA(@PathVariable(value="authorisationId")
String authorisationId)
@PutMapping(value="/authorisations/{authorisationId}/scaMethods/{scaMethodId}")
org.springframework.http.ResponseEntity<GlobalScaResponseTO> selectMethod(@PathVariable(value="authorisationId")
String authorisationId,
@PathVariable(value="scaMethodId")
String scaMethodId)
@PutMapping(value="/authorisations/{authorisationId}/authCode")
org.springframework.http.ResponseEntity<GlobalScaResponseTO> authorize(@PathVariable(value="authorisationId")
String authorisationId,
@RequestParam(name="authCode")
String authCode)
Copyright © 2021. All rights reserved.