001package com.nimbusds.openid.connect.provider.spi.reg;
002
003
004import com.nimbusds.openid.connect.provider.spi.InvocationContext;
005
006
007/**
008 * OAuth 2.0 client / OpenID relying party metadata validator context.
009 */
010public interface ValidatorContext extends InvocationContext {
011        
012        
013        /**
014         * Returns the type of authorisation credential used at the OAuth 2.0
015         * client registration endpoint.
016         *
017         * @return The authorisation credential type. Not {@code null}.
018         */
019        AuthorizationCredentialType getAuthorizationCredentialType();
020}