com.nimbusds.openid.connect.provider.spi.clientauth.ClientAuthenticationID 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;
/**
* Client authentication identifier, intended for audit and logging purposes.
*/
public interface ClientAuthenticationID {
/**
* Returns the client authentication identifier value.
*
* @return The identifier value.
*/
String getValue();
}