Example usage for org.springframework.boot.autoconfigure.elasticsearch.jest HttpClientConfigBuilderCustomizer customize

List of usage examples for org.springframework.boot.autoconfigure.elasticsearch.jest HttpClientConfigBuilderCustomizer customize

Introduction

In this page you can find the example usage for org.springframework.boot.autoconfigure.elasticsearch.jest HttpClientConfigBuilderCustomizer customize.

Prototype

void customize(Builder builder);

Source Link

Document

Customize the Builder .

Usage

From source file:org.springframework.boot.autoconfigure.elasticsearch.jest.JestAutoConfiguration.java

private void customize(HttpClientConfig.Builder builder) {
    if (this.builderCustomizers != null) {
        for (HttpClientConfigBuilderCustomizer customizer : this.builderCustomizers) {
            customizer.customize(builder);
        }/*  www  .ja v  a 2  s . c  om*/
    }
}