001package com.nimbusds.openid.connect.provider.spi.clientauth;
002
003
004/**
005 * Client authentication identifier, intended for audit and logging purposes.
006 */
007public interface ClientAuthenticationID {
008        
009        
010        /**
011         * Returns the client authentication identifier value.
012         *
013         * @return The identifier value.
014         */
015        String getValue();
016}