com.nimbusds.openid.connect.provider.spi.clientauth.PrivateKeyJWTContext 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.clientauth;
import com.nimbusds.jose.JWSHeader;
/**
* {@code private_key_jwt} client authentication context.
*/
public interface PrivateKeyJWTContext extends ClientAuthenticationContext {
/**
* Returns the {@code private_key_jwt} header.
*
* @return The header.
*/
JWSHeader getJWSHeader();
}