Class RedirectHandler

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

public class RedirectHandler extends Object implements okhttp3.Interceptor
Middleware that determines whether a redirect information should be followed or not, and follows it if necessary.
  • 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
    The current middleware type

    Fields inherited from interface okhttp3.Interceptor

    Companion
  • Constructor Summary

    Constructors
    Constructor
    Description
    Initialize using default redirect options, default IShouldRedirect and max redirect value
    Initialize using custom redirect options.
  • 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

    • MIDDLEWARE_TYPE

      public final MiddlewareType MIDDLEWARE_TYPE
      The current middleware type
  • Constructor Details

    • RedirectHandler

      public RedirectHandler()
      Initialize using default redirect options, default IShouldRedirect and max redirect value
    • RedirectHandler

      public RedirectHandler(@Nullable RedirectOptions redirectOptions)
      Initialize using custom redirect options.
      Parameters:
      redirectOptions - pass instance of redirect options to be used
  • Method Details

    • intercept

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