Uses of Interface
com.okta.authn.sdk.client.AuthenticationClientBuilder
-
Packages that use AuthenticationClientBuilder Package Description com.okta.authn.sdk.client com.okta.authn.sdk.impl.client -
-
Uses of AuthenticationClientBuilder in com.okta.authn.sdk.client
Methods in com.okta.authn.sdk.client that return AuthenticationClientBuilder Modifier and Type Method Description static AuthenticationClientBuilder
AuthenticationClients. builder()
Returns a newAuthenticationClientBuilder
instance, used to constructAuthenticationClient
instances.AuthenticationClientBuilder
AuthenticationClientBuilder. setConnectionTimeout(int timeout)
Sets both the timeout until a connection is established and the socket timeout (i.e.AuthenticationClientBuilder
AuthenticationClientBuilder. setOrgUrl(java.lang.String baseUrl)
Sets the base URL of the Okta REST API to use.AuthenticationClientBuilder
AuthenticationClientBuilder. setProxy(com.okta.commons.http.config.Proxy proxy)
Sets the HTTP proxy to be used when communicating with the Okta API server.AuthenticationClientBuilder
AuthenticationClientBuilder. setRetryMaxAttempts(int maxAttempts)
Sets the maximum number of attempts to retrying before giving up.AuthenticationClientBuilder
AuthenticationClientBuilder. setRetryMaxElapsed(int maxElapsed)
Sets the maximum number of milliseconds to wait when retrying before giving up. -
Uses of AuthenticationClientBuilder in com.okta.authn.sdk.impl.client
Classes in com.okta.authn.sdk.impl.client that implement AuthenticationClientBuilder Modifier and Type Class Description class
DefaultAuthenticationClientBuilder
The defaultAuthenticationClientBuilder
implementation.Methods in com.okta.authn.sdk.impl.client that return AuthenticationClientBuilder Modifier and Type Method Description AuthenticationClientBuilder
DefaultAuthenticationClientBuilder. setBaseUrlResolver(com.okta.commons.http.config.BaseUrlResolver baseUrlResolver)
AuthenticationClientBuilder
DefaultAuthenticationClientBuilder. setConnectionTimeout(int timeout)
AuthenticationClientBuilder
DefaultAuthenticationClientBuilder. setOrgUrl(java.lang.String baseUrl)
AuthenticationClientBuilder
DefaultAuthenticationClientBuilder. setProxy(com.okta.commons.http.config.Proxy proxy)
AuthenticationClientBuilder
DefaultAuthenticationClientBuilder. setRetryMaxAttempts(int maxAttempts)
AuthenticationClientBuilder
DefaultAuthenticationClientBuilder. setRetryMaxElapsed(int maxElapsed)
-