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

com.nimbusds.openid.connect.provider.spi.claims.ClaimsSupport Maven / Gradle / Ivy

Go to download

Toolkit for developing Connect2id Server extensions, such as custom OpenID Connect claims sources and grant handlers.

There is a newer version: 5.10
Show newest version
package com.nimbusds.openid.connect.provider.spi.claims;


import java.util.Set;


/**
 * Interface for querying OpenID Connect claims support. Implementations must
 * be thread-safe.
 */
public interface ClaimsSupport {


	/**
	 * Returns the names of the supported OpenID Connect claims.
	 *
	 * 

Example: * *

	 * name
	 * email
	 * email_verified
	 * 
* * @return The supported claim names. Should not include the reserved * {@code sub} (subject) claim name. */ Set supportedClaims(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy