Skip navigation links
A B C D G H I N R S T W 

A

AuthenticationController - Class in com.auth0
Base Auth0 Authenticator class.
AuthenticationController.Builder - Class in com.auth0
 
AuthorizeUrl - Class in com.auth0
Class to create and customize an Auth0 Authorize URL.

B

build() - Method in class com.auth0.AuthenticationController.Builder
Create a new AuthenticationController instance that will handle both Code Grant and Implicit Grant flows using either Code Exchange or Token Signature verification.
build() - Method in class com.auth0.AuthorizeUrl
Creates a string representation of the URL with the configured parameters.
buildAuthorizeUrl(HttpServletRequest, String) - Method in class com.auth0.AuthenticationController
Deprecated.
This method stores data in the HttpSession, and is incompatible with clients that are using the "id_token" or "token" responseType with browsers that enforce SameSite cookie restrictions. This method will be removed in version 2.0.0. Use AuthenticationController.buildAuthorizeUrl(HttpServletRequest, HttpServletResponse, String) instead.
buildAuthorizeUrl(HttpServletRequest, HttpServletResponse, String) - Method in class com.auth0.AuthenticationController
Pre builds an Auth0 Authorize Url with the given redirect URI using a random state and a random nonce if applicable.

C

com.auth0 - package com.auth0
 

D

doNotSendTelemetry() - Method in class com.auth0.AuthenticationController
Disable sending the Telemetry header on every request to the Auth0 API

G

get(HttpServletRequest, String) - Static method in class com.auth0.SessionUtils
Get the attribute with the given name from the request session.
getAccessToken() - Method in class com.auth0.Tokens
Getter for the Access Token.
getCode() - Method in exception com.auth0.IdentityVerificationException
Getter for the code of the error.
getDescription() - Method in exception com.auth0.InvalidRequestException
Deprecated.
use Throwable.getMessage()
getExpiresIn() - Method in class com.auth0.Tokens
Getter for the Expiration time of the Token.
getIdToken() - Method in class com.auth0.Tokens
Getter for the Id Token.
getRefreshToken() - Method in class com.auth0.Tokens
Getter for the Refresh Token.
getSession(HttpServletRequest) - Static method in class com.auth0.SessionUtils
Extracts the HttpSession from the given request.
getType() - Method in class com.auth0.Tokens
Getter for the token Type .

H

handle(HttpServletRequest, HttpServletResponse) - Method in class com.auth0.AuthenticationController
Process a request to obtain a set of Tokens that represent successful authentication or authorization.
handle(HttpServletRequest) - Method in class com.auth0.AuthenticationController
Deprecated.
This method uses the HttpSession for auth-based data, and is incompatible with clients that are using the "id_token" or "token" responseType with browsers that enforce SameSite cookie restrictions. This method will be removed in version 2.0.0. Use AuthenticationController.handle(HttpServletRequest, HttpServletResponse) instead.

I

IdentityVerificationException - Exception in com.auth0
 
InvalidRequestException - Exception in com.auth0
Represents an error occurred while executing a request against the Auth0 Authentication API
isAPIError() - Method in exception com.auth0.IdentityVerificationException
 
isJWTError() - Method in exception com.auth0.IdentityVerificationException
 

N

newBuilder(String, String, String) - Static method in class com.auth0.AuthenticationController
Create a new AuthenticationController.Builder instance to configure the AuthenticationController response type and algorithm used on the verification.

R

remove(HttpServletRequest, String) - Static method in class com.auth0.SessionUtils
Same as SessionUtils.get(HttpServletRequest, String) but it also removes the value from the request session.

S

SessionUtils - Class in com.auth0
Helper class to handle easy session key-value storage.
SessionUtils() - Constructor for class com.auth0.SessionUtils
 
set(HttpServletRequest, String, Object) - Static method in class com.auth0.SessionUtils
Set's the attribute value to the request session.
setLoggingEnabled(boolean) - Method in class com.auth0.AuthenticationController
Whether to enable or not the HTTP Logger for every Request and Response.

T

Tokens - Class in com.auth0
Wrapper for the the user's credentials returned by Auth0.
Tokens(String, String, String, String, Long) - Constructor for class com.auth0.Tokens
 

W

withAudience(String) - Method in class com.auth0.AuthorizeUrl
Sets the audience value.
withAuthenticationMaxAge(Integer) - Method in class com.auth0.AuthenticationController.Builder
Sets the allowable elapsed time in seconds since the last time user was authenticated.
withClockSkew(Integer) - Method in class com.auth0.AuthenticationController.Builder
Sets the clock-skew or leeway value to use in the ID Token verification.
withConnection(String) - Method in class com.auth0.AuthorizeUrl
Sets the connection value.
withJwkProvider(JwkProvider) - Method in class com.auth0.AuthenticationController.Builder
Sets the Jwk Provider that will return the Public Key required to verify the token in case of Implicit Grant flows.
withLegacySameSiteCookie(boolean) - Method in class com.auth0.AuthenticationController.Builder
Sets whether fallback cookies will be set for clients that do not support SameSite=None cookie attribute.
withNonce(String) - Method in class com.auth0.AuthorizeUrl
Sets the nonce value.
withParameter(String, String) - Method in class com.auth0.AuthorizeUrl
Sets an additional parameter.
withResponseType(String) - Method in class com.auth0.AuthenticationController.Builder
Change the response type to request in the Authorization step.
withScope(String) - Method in class com.auth0.AuthorizeUrl
Sets the scope value.
withSecureCookie(boolean) - Method in class com.auth0.AuthorizeUrl
Sets whether cookies used during the authentication flow have the Secure attribute set or not.
withState(String) - Method in class com.auth0.AuthorizeUrl
Sets the state value.
A B C D G H I N R S T W 
Skip navigation links