com.nimbusds.openid.connect.sdk.AuthenticationResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oauth2-oidc-sdk Show documentation
Show all versions of oauth2-oidc-sdk Show documentation
OAuth 2.0 SDK with OpenID Connection extensions for developing client
and server applications.
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();
}