Package io.jans.fido2.ws.rs.controller
Class AssertionController
java.lang.Object
io.jans.fido2.ws.rs.controller.AssertionController
serves request for /assertion endpoint exposed by FIDO2 sever
- Version:
- May 08, 2020
- Author:
- Yuriy Movchan
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionjakarta.ws.rs.core.Responseauthenticate(@NotNull AssertionOptions assertionOptions) jakarta.ws.rs.core.Responseverify(@NotNull AssertionResult assertionResult)
-
Constructor Details
-
AssertionController
public AssertionController()
-
-
Method Details
-
authenticate
@POST @Consumes("application/json") @Produces("application/json") @Path("/options") public jakarta.ws.rs.core.Response authenticate(@NotNull @NotNull AssertionOptions assertionOptions) -
verify
@POST @Consumes("application/json") @Produces("application/json") @Path("/result") public jakarta.ws.rs.core.Response verify(@NotNull @NotNull AssertionResult assertionResult)
-