
com.nimbusds.openid.connect.provider.spi.grants.GrantHandler 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
Toolkit for developing Connect2id Server extensions, such as
custom OpenID Connect claims sources and grant handlers.
package com.nimbusds.openid.connect.provider.spi.grants;
import com.nimbusds.oauth2.sdk.GrantType;
import com.nimbusds.openid.connect.provider.spi.Lifecycle;
/**
* OAuth 2.0 grant handler.
*/
public interface GrantHandler extends Lifecycle {
/**
* Returns the handled grant type.
*
* @return The grant type;
*/
GrantType getGrantType();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy