com.nimbusds.openid.connect.provider.spi.InvocationContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of c2id-server-sdk Show documentation
Show all versions of c2id-server-sdk Show documentation
SDK for Connect2id Server extensions, such as OpenID Connect claims
sources and OAuth 2.0 grant handlers
package com.nimbusds.openid.connect.provider.spi;
import com.nimbusds.oauth2.sdk.id.Issuer;
/**
* Common Service Provider Interface (SPI) invocation context.
*/
public interface InvocationContext {
/**
* Returns the OpenID Provider / Authorisation Server issuer URL.
*
* @return The OpenID Provider / Authorisation Server issuer.
*/
Issuer getIssuer();
}