Interface ParamResolver<T>

Type Parameters:
T - the type that this ParamResolver can resolve from a request
All Known Implementing Classes:
BeanParamResolver, CookieParamResolver

public interface ParamResolver<T>
Interface for resolving custom parameter types from an incoming request. You can use this to implement authentication for example.
  • Method Summary

    Modifier and Type
    Method
    Description
    reactor.core.publisher.Mono<T>
     
  • Method Details

    • resolve

      reactor.core.publisher.Mono<T> resolve(JaxRsRequest request)