Uses of Class
com.okta.idx.sdk.api.response.AuthenticationResponse
Package
Description
This package contains helper classes for controllers.
-
Uses of AuthenticationResponse in com.okta.idx.sdk.api.client
Modifier and TypeMethodDescriptionIDXAuthenticationWrapper.authenticate
(AuthenticationOptions authenticationOptions, ProceedContext proceedContext) Authenticate user with the supplied Authentication options (username and password) and returns the Authentication response object that contains: - IDX Client context - Token (access_token/id_token/refresh_token) object - Authentication statusIDXAuthenticationWrapper.begin()
Begin flow without any recovery or activation token or request context.IDXAuthenticationWrapper.begin
(RequestContext requestContext) Begin flow withRequestContext
reference.IDXAuthenticationWrapper.beginPasswordRecovery
(String token, RequestContext requestContext) Begin password recovery flow with a recovery token.IDXAuthenticationWrapper.beginUserActivation
(String token, RequestContext requestContext) Begin password recovery flow with an activation token.IDXAuthenticationWrapper.cancel
(ProceedContext proceedContext) Cancel transaction.IDXAuthenticationWrapper.enrollAuthenticator
(ProceedContext proceedContext, String authenticatorId) IDXAuthenticationWrapper.fetchSignUpFormValues
(ProceedContext proceedContext) Populate UI form values for signing up a new user.IDXAuthenticationWrapper.fetchTokenWithInteractionCode
(ProceedContext proceedContext, String interactionCode) Exchange interaction code for token.IDXAuthenticationWrapper.introspect
(IDXClientContext clientContext) Introspect to get the current state of the authentication.IDXAuthenticationWrapper.poll
(ProceedContext proceedContext) Handle Polling.IDXAuthenticationWrapper.recoverPassword
(String username, ProceedContext proceedContext) Recover Password with the supplied username.IDXAuthenticationWrapper.register
(ProceedContext proceedContext, UserProfile userProfile, Credentials credentials) Register new user with the supplied user profile reference.IDXAuthenticationWrapper.resend
(ProceedContext proceedContext) Resend code.IDXAuthenticationWrapper.selectAuthenticator
(ProceedContext proceedContext, Authenticator authenticator) Select authenticator of the supplied type.IDXAuthenticationWrapper.selectFactor
(ProceedContext proceedContext, Authenticator.Factor factor) Select authenticator of the supplied type.IDXAuthenticationWrapper.skipAuthenticatorEnrollment
(ProceedContext proceedContext) Skip optional authenticator enrollment.IDXAuthenticationWrapper.submitPhoneAuthenticator
(ProceedContext proceedContext, String phone, Authenticator.Factor factor) Submit phone authenticator enrollment with the provided phone number.IDXAuthenticationWrapper.verifyAuthenticator
(ProceedContext proceedContext, VerifyAuthenticatorAnswer verifyAuthenticatorAnswer) Verify Authenticator with the supplied authenticator options.IDXAuthenticationWrapper.verifyAuthenticator
(ProceedContext proceedContext, VerifyAuthenticatorOptions verifyAuthenticatorOptions) Verify Authenticator with the supplied authenticator options.IDXAuthenticationWrapper.verifyAuthenticator
(ProceedContext proceedContext, VerifyChannelDataOptions verifyChannelDataOptions) IDXAuthenticationWrapper.verifyWebAuthn
(ProceedContext proceedContext, WebAuthnRequest webauthnRequest) Verify Webauthn Authenticator.Modifier and TypeMethodDescriptionIDXAuthenticationWrapper.getPollInfo
(AuthenticationResponse authenticationResponse) Helper to get polling information from authentication response. -
Uses of AuthenticationResponse in com.okta.spring.example.helpers
Modifier and TypeMethodDescriptionorg.springframework.web.servlet.ModelAndView
ResponseHandler.handleKnownTransitions
(AuthenticationResponse response, javax.servlet.http.HttpSession session) Return view based on the authentication status in response.org.springframework.web.servlet.ModelAndView
ResponseHandler.handleTerminalTransitions
(AuthenticationResponse response, javax.servlet.http.HttpSession session) Return terminal views based on the authentication status in response.boolean
ResponseHandler.needsToShowErrors
(AuthenticationResponse response) Check if response contains presentable errors.org.springframework.web.servlet.ModelAndView
ResponseHandler.oktaVerifyChallenge
(AuthenticationResponse response) Return the view for Okta Verify challenge.org.springframework.web.servlet.ModelAndView
ResponseHandler.registerVerifyForm
(Authenticator.Factor factor, AuthenticationResponse authenticationResponse) Return the view for register verify form.org.springframework.web.servlet.ModelAndView
ResponseHandler.registerVerifyForm
(Authenticator authenticator, AuthenticationResponse authenticationResponse) Return the view for verify form.org.springframework.web.servlet.ModelAndView
ResponseHandler.selectAuthenticatorForm
(AuthenticationResponse response, String title, javax.servlet.http.HttpSession session) Return the view for select authenticator form.org.springframework.web.servlet.ModelAndView
ResponseHandler.verifyForm
(AuthenticationResponse response) Return the view for verify form.org.springframework.web.servlet.ModelAndView
ResponseHandler.verifyWebauthn
(AuthenticationResponse enrollResponse) Return the view for verify form.