Class RecoveryController
java.lang.Object
io.getlime.security.powerauth.rest.api.spring.controller.v3.RecoveryController
@RestController
@RequestMapping("/pa/v3/recovery")
public class RecoveryController
extends Object
Controller implementing recovery related end-points from the PowerAuth
Standard API.
PowerAuth protocol versions:
- 3.0
- Author:
- Roman Strobl, roman.strobl@wultra.com
-
Constructor Summary
Constructors Constructor Description RecoveryController(RecoveryService recoveryService)Service constructor. -
Method Summary
Modifier and Type Method Description io.getlime.security.powerauth.rest.api.model.response.v3.EciesEncryptedResponseconfirmRecoveryCode(io.getlime.security.powerauth.rest.api.model.request.v3.EciesEncryptedRequest request, PowerAuthApiAuthentication authentication)Confirm recovery code.
-
Constructor Details
-
RecoveryController
Service constructor.- Parameters:
recoveryService- Recovery service.
-
-
Method Details
-
confirmRecoveryCode
@RequestMapping(value="confirm", method=POST) public io.getlime.security.powerauth.rest.api.model.response.v3.EciesEncryptedResponse confirmRecoveryCode(@RequestBody io.getlime.security.powerauth.rest.api.model.request.v3.EciesEncryptedRequest request, PowerAuthApiAuthentication authentication) throws PowerAuthAuthenticationExceptionConfirm recovery code.- Parameters:
request- ECIES encrypted request.authentication- PowerAuth API authentication object.- Returns:
- ECIES encrypted response.
- Throws:
PowerAuthAuthenticationException- In case confirm recovery fails.
-