Class AuthenticationHandler

java.lang.Object
com.microsoft.graph.httpcore.AuthenticationHandler
All Implemented Interfaces:
okhttp3.Interceptor

public class AuthenticationHandler extends Object implements okhttp3.Interceptor
Interceptor responsible for injecting the token in the request headers
  • Nested Class Summary

    Nested classes/interfaces inherited from interface okhttp3.Interceptor

    okhttp3.Interceptor.Chain, okhttp3.Interceptor.Companion
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected static final String
    The authorization request header name
    protected static final String
    The bearer value for the authorization request header, contains a space
    The current middleware type

    Fields inherited from interface okhttp3.Interceptor

    Companion
  • Constructor Summary

    Constructors
    Constructor
    Description
    Initialize a the handler with a authentication provider
  • Method Summary

    Modifier and Type
    Method
    Description
    okhttp3.Response
    intercept(okhttp3.Interceptor.Chain chain)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • BEARER

      protected static final String BEARER
      The bearer value for the authorization request header, contains a space
      See Also:
    • AUTHORIZATION_HEADER

      protected static final String AUTHORIZATION_HEADER
      The authorization request header name
      See Also:
    • MIDDLEWARE_TYPE

      public final MiddlewareType MIDDLEWARE_TYPE
      The current middleware type
  • Constructor Details

    • AuthenticationHandler

      public AuthenticationHandler(@Nonnull IAuthenticationProvider authProvider)
      Initialize a the handler with a authentication provider
      Parameters:
      authProvider - the authentication provider to use
  • Method Details

    • intercept

      @Nonnull public okhttp3.Response intercept(@Nonnull okhttp3.Interceptor.Chain chain) throws IOException
      Specified by:
      intercept in interface okhttp3.Interceptor
      Throws:
      IOException