Uses of Class
com.okta.idx.sdk.api.client.ProceedContext
Packages that use ProceedContext
Package
Description
This package contains helper classes for controllers.
-
Uses of ProceedContext in com.okta.idx.sdk.api.client
Methods in com.okta.idx.sdk.api.client with parameters of type ProceedContextModifier 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.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.boolean
IDXAuthenticationWrapper.isSkipAuthenticatorPresent
(ProceedContext proceedContext) Helper to check if we have optional authenticators to skip in current remediation step.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. -
Uses of ProceedContext in com.okta.idx.sdk.api.response
Methods in com.okta.idx.sdk.api.response that return ProceedContextMethods in com.okta.idx.sdk.api.response with parameters of type ProceedContextModifier and TypeMethodDescriptionvoid
AuthenticationResponse.setProceedContext
(ProceedContext proceedContext) -
Uses of ProceedContext in com.okta.spring.example.helpers
Methods in com.okta.spring.example.helpers that return ProceedContextModifier and TypeMethodDescriptionstatic ProceedContext
Util.getProceedContextForPoll
(javax.servlet.http.HttpSession session) Fetches the proceedContext from session for poll operation.static ProceedContext
Util.getProceedContextFromSession
(javax.servlet.http.HttpSession session) Fetches the proceedContext from session.Methods in com.okta.spring.example.helpers with parameters of type ProceedContextModifier and TypeMethodDescriptionstatic void
Util.setProceedContextForPoll
(javax.servlet.http.HttpSession session, ProceedContext proceedContext) Set the proceedContext in session for poll operation.static void
Util.updateSession
(javax.servlet.http.HttpSession session, ProceedContext proceedContext) Updates the proceed context in session.