All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nimbusds.openid.connect.sdk.AuthenticationResponse Maven / Gradle / Ivy

package com.nimbusds.openid.connect.sdk;


import java.net.URI;

import com.nimbusds.oauth2.sdk.Response;
import com.nimbusds.oauth2.sdk.id.State;


/**
 * OpenID Connect authentication response.
 *
 * 

Related specifications: * *

    *
  • OpenID Connect Core 1.0, sections 3.1.2.5. and 3.1.2.6. *
*/ public interface AuthenticationResponse extends Response { /** * Gets the base redirection URI. * * @return The base redirection URI (without the appended error * response parameters). */ public URI getRedirectionURI(); /** * Gets the optional state. * * @return The state, {@code null} if not requested. */ public State getState(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy