Interface RedirectScaRestAPI
-
public interface RedirectScaRestAPI
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<GlobalScaResponseTO>getSCA(String authorisationId)org.springframework.http.ResponseEntity<GlobalScaResponseTO>selectMethod(String authorisationId, String scaMethodId)org.springframework.http.ResponseEntity<GlobalScaResponseTO>startSca(StartScaOprTO loginOpr)org.springframework.http.ResponseEntity<GlobalScaResponseTO>validateScaCode(String authorisationId, String authCode)
-
-
-
Field Detail
-
BASE_PATH
static final String BASE_PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
startSca
@PostMapping("/start") org.springframework.http.ResponseEntity<GlobalScaResponseTO> startSca(@RequestBody StartScaOprTO loginOpr)
-
getSCA
@GetMapping("/authorisations/{authorisationId}") org.springframework.http.ResponseEntity<GlobalScaResponseTO> getSCA(@PathVariable("authorisationId") String authorisationId)
-
selectMethod
@PutMapping("/authorisations/{authorisationId}/scaMethods/{scaMethodId}") org.springframework.http.ResponseEntity<GlobalScaResponseTO> selectMethod(@PathVariable("authorisationId") String authorisationId, @PathVariable("scaMethodId") String scaMethodId)
-
validateScaCode
@PutMapping("/authorisations/{authorisationId}/authCode") org.springframework.http.ResponseEntity<GlobalScaResponseTO> validateScaCode(@PathVariable("authorisationId") String authorisationId, @RequestParam(name="authCode") String authCode)
-
-