001package com.nimbusds.oauth2.sdk.auth.verifier;
002
003
004/**
005 * Hints intended for the client authentication verifier.
006 */
007public enum Hint {
008
009        /**
010         * The client has a registered remote JWK set (jwks_uri).
011         */
012        CLIENT_HAS_REMOTE_JWK_SET
013}