Interface AuthenticationFetcher<T>

Type Parameters:
T - request
All Superinterfaces:
io.micronaut.core.order.Ordered
All Known Implementing Classes:
BasicAuthAuthenticationFetcher, SessionAuthenticationFetcher, TokenAuthenticationFetcher, X509AuthenticationFetcher

public interface AuthenticationFetcher<T> extends io.micronaut.core.order.Ordered
Describes a bean which attempts to read an Authentication from an HTTP Request being executed.
Since:
1.0
Author:
Sergio del Amo
  • Field Summary

    Fields inherited from interface io.micronaut.core.order.Ordered

    HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
  • Method Summary

    Modifier and Type
    Method
    Description
    org.reactivestreams.Publisher<Authentication>
    Attempts to read an Authentication from an HTTP Request being executed.

    Methods inherited from interface io.micronaut.core.order.Ordered

    getOrder
  • Method Details

    • fetchAuthentication

      org.reactivestreams.Publisher<Authentication> fetchAuthentication(T request)
      Attempts to read an Authentication from an HTTP Request being executed.
      Parameters:
      request - an HTTP Request being executed.
      Returns:
      Authentication if found