Skip navigation links
A B C 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
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
 

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.
getCode() - Method in exception com.auth0.InvalidRequestException
Getter for the code of the error.
getDescription() - Method in exception com.auth0.InvalidRequestException
Getter for the description of the error.
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) - Method in class com.auth0.AuthenticationController
Processes a request validating the received parameters and performs a Code Exchange or a Token's Signature Verification, depending on the chosen Response Type, to finally obtain a set of Tokens.

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.
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.
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.
withState(String) - Method in class com.auth0.AuthorizeUrl
Sets the state value.
A B C G H I N R S T W 
Skip navigation links