Class AbstractTokenLoginCallbackHandler

java.lang.Object
io.confluent.kafka.clients.plugins.auth.token.AbstractTokenLoginCallbackHandler
All Implemented Interfaces:
CallbackHandler, org.apache.kafka.common.security.auth.AuthenticateCallbackHandler
Direct Known Subclasses:
TokenBearerLoginCallbackHandler, TokenCertificateLoginCallbackHandler, TokenUserLoginCallbackHandler

public abstract class AbstractTokenLoginCallbackHandler extends Object implements org.apache.kafka.common.security.auth.AuthenticateCallbackHandler
An abstract CallbackHandler for the OAuthLoginModule. There are three cases which must be covered with Token based authentication. 1. Kafka client-side User/Password credential authentication 2. Kafka client-side Token credential authentication 3. Kafka client impersonation. All three circumstances can be handled through the use of two callback handlers. TokenUserLoginCallbackHandler for User/Password credential authentication. TokenBearerLoginCallbackHandler for Token credential authentication. Any application with an valid Authentication Token may impersonate another user making TokenBearerLoginCallbackHandler suitable for scenario 3 as well. TokenCertificateLoginCallbackHandler suitable for scenarios where we exchange, client certificates for a MDS issued token This abstract class handles the common functionality between them leaving the specifics up to the individual implementations.

Implementations should be explicitly set via the sasl.login.callback.handler.class configuration property

  • Constructor Details

    • AbstractTokenLoginCallbackHandler

      public AbstractTokenLoginCallbackHandler()
  • Method Details