Interface RequestEnhancer

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface RequestEnhancer
Function to enhance a http request triggered by the ServiceCall abstraction. One use case is to add authentication and authority information.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    enhance(org.apache.http.client.methods.HttpUriRequest request)
     
  • Method Details

    • enhance

      void enhance(org.apache.http.client.methods.HttpUriRequest request) throws Exception
      Throws:
      Exception