Polish
This commit is contained in:
parent
367963f29f
commit
601f7c0a69
|
|
@ -17,11 +17,11 @@
|
|||
package org.springframework.boot.autoconfigure.cassandra;
|
||||
|
||||
import com.datastax.driver.core.Cluster;
|
||||
import com.datastax.driver.core.Cluster.Builder;
|
||||
|
||||
/**
|
||||
* Callback interface that can be implemented by beans wishing to customize the
|
||||
* {@link com.datastax.driver.core.Cluster} via
|
||||
* {@link com.datastax.driver.core.Cluster.Builder} retaining its default
|
||||
* {@link Cluster} via a {@link Builder Cluster.Builder} whilst retaining default
|
||||
* auto-configuration.
|
||||
*
|
||||
* @author Eddú Meléndez
|
||||
|
|
@ -30,9 +30,9 @@ import com.datastax.driver.core.Cluster;
|
|||
public interface ClusterBuilderCustomizer {
|
||||
|
||||
/**
|
||||
* Customize the {@link com.datastax.driver.core.Cluster.Builder}.
|
||||
* Customize the {@link Builder}.
|
||||
* @param clusterBuilder the builder to customize
|
||||
*/
|
||||
void customize(Cluster.Builder clusterBuilder);
|
||||
void customize(Builder clusterBuilder);
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,12 +17,12 @@
|
|||
package org.springframework.boot.autoconfigure.elasticsearch.jest;
|
||||
|
||||
import io.searchbox.client.config.HttpClientConfig;
|
||||
import io.searchbox.client.config.HttpClientConfig.Builder;
|
||||
|
||||
/**
|
||||
* Callback interface that can be implemented by beans wishing to further customize the
|
||||
* {@link io.searchbox.client.config.HttpClientConfig} via
|
||||
* {@link io.searchbox.client.config.HttpClientConfig.Builder} retaining its default
|
||||
* auto-configuration.
|
||||
* {@link HttpClientConfig} via a {@link Builder HttpClientConfig.Builder} whilst
|
||||
* retaining default auto-configuration.
|
||||
*
|
||||
* @author Stephane Nicoll
|
||||
* @since 1.5.0
|
||||
|
|
@ -30,9 +30,9 @@ import io.searchbox.client.config.HttpClientConfig;
|
|||
public interface HttpClientConfigBuilderCustomizer {
|
||||
|
||||
/**
|
||||
* Customize the {@link io.searchbox.client.config.HttpClientConfig.Builder}.
|
||||
* Customize the {@link Builder}.
|
||||
* @param builder the builder to customize
|
||||
*/
|
||||
void customize(HttpClientConfig.Builder builder);
|
||||
void customize(Builder builder);
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue